 :root {
     --primary: #0A4D3C;
     --primary-light: #0F6B52;
     --primary-dark: #083829;
     --accent: #FF6B35;
     --accent-light: #FF8F6D;
     --bg-main: #FFFBF5;
     --bg-secondary: #F5F0E8;
     --text-primary: #1A1A1A;
     --text-secondary: #4A4A4A;
     --text-light: #6B6B6B;
     --border: #E0D5C7;
     --white: #FFFFFF;
     --success: #2ECC71;
     --gradient: linear-gradient(135deg, #0A4D3C 0%, #0F6B52 50%, #FF6B35 100%);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Outfit', sans-serif;
     color: var(--text-primary);
     /* background: var(--bg-main); */
     overflow-x: hidden;
     line-height: 1.6;
 }

 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 /* Animated Background Pattern */
 .bg-pattern {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     opacity: 0.03;
     pointer-events: none;
 }

 .bg-pattern::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background-image:
         repeating-linear-gradient(45deg, var(--primary) 0px, transparent 1px, transparent 40px),
         repeating-linear-gradient(-45deg, var(--accent) 0px, transparent 1px, transparent 40px);
     animation: patternMove 60s linear infinite;
 }

 @keyframes patternMove {
     0% {
         transform: translate(0, 0);
     }

     100% {
         transform: translate(80px, 80px);
     }
 }

 /* Header */
 header {
     position: relative;
     top: 0;
     /* background: rgba(255, 251, 245, 0.95); */
     backdrop-filter: blur(10px);
     /* border-bottom: 1px solid var(--border); */
     z-index: 100;

 }

 @keyframes slideDown {
     from {
         transform: translateY(-100%);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.5rem 0;
 }

 .logo img {
     width: 40px;
     height: 40px;
     
 }



 .nav-links {
     display: flex;
     gap: 2.5rem;
     list-style: none;
     align-items: center;
 }



 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--accent);
     transition: width 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--primary);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

  .nav-links a {
     color: var(--text-primary);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
 }

 .btn {
     padding: 0.75rem 1.75rem;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     display: inline-block;
     cursor: pointer;
     border: none;
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     color: white;
 }

 .btn-primary {
     background: var(--primary);
     color: var(--white) !important;
     box-shadow: 0 4px 15px rgba(10, 77, 60, 0.2);
 }

 .btn-primary:hover {
     background: var(--primary-light);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(10, 77, 60, 0.3);
 }

 .btn-outline {
     background: transparent;
     color: var(--primary);
     border: 2px solid var(--primary);
 }

 .btn-outline:hover {
     background: var(--primary);
     color: var(--white);
     transform: translateY(-2px);
 }

 .btn-accent {
     background: var(--accent);
     color: var(--white);
     box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
 }

 .btn-accent:hover {
     background: var(--accent-light);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
 }

 /* Hero Section */
 .hero {
     padding: 6rem 0 8rem;
     position: relative;
     overflow: hidden;
 }

 .hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;

 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-text h1 {
     font-family: 'DM Serif Display', serif;
     font-size: 4rem;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     color: var(--primary-dark);

 }

 .hero-text h1 .highlight {
     background: var(--gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     display: inline-block;
     font-size: 45px;
 }

 .hero-text p {
     font-size: 1.25rem;
     color: var(--text-secondary);
     margin-bottom: 2.5rem;
     line-height: 1.8;

 }

 .hero-buttons {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;

 }

 .hero-visual {
     position: relative;
     z-index: 1;

 }

 .hero-card {
     background: #083829;
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: 0 20px 60px rgba(10, 77, 60, 0.12);
     border: 1px solid var(--border);
     position: relative;
     overflow: hidden;
     color: white;
 }

 .hero-card::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
     animation: pulse 4s ease-in-out infinite;
 }

 .hero-card img {
     width: 100%;
     border-radius: 12px;
     display: block;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.8;
     }
 }

 .math-demo {
     font-size: 1.5rem;
     color: var(--text-primary);
     margin-bottom: 1rem;
     font-weight: 500;
 }

 .math-solution {
     background: var(--bg-secondary);
     border-radius: 12px;
     padding: 1.5rem;
     margin-top: 1rem;
     border-left: 4px solid var(--accent);
     animation: slideIn 1s ease-out 0.8s both;
 }

 @keyframes slideIn {
     from {
         opacity: 0;
         transform: translateX(-20px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .math-solution p {
     color: var(--text-secondary);
     margin-bottom: 0.5rem;
 }

 .stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin-top: 4rem;

 }

 .stat-item {
     text-align: center;
     padding: 1.5rem;
     background: var(--white);
     border-radius: 12px;
     border: 1px solid var(--border);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .stat-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(10, 77, 60, 0.1);
 }

 .stat-number {
     font-family: 'DM Serif Display', serif;
     font-size: 2.5rem;
     color: var(--primary);
     display: block;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     color: var(--text-light);
     font-size: 0.95rem;
 }

 /* Features Section */
 .features {
     padding: 6rem 0;
     background: var(--white);
     position: relative;
 }

 .section-header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section-tag {
     display: inline-block;
     padding: 0.5rem 1.25rem;
     background: var(--bg-secondary);
     color: var(--primary);
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.9rem;
     margin-bottom: 1rem;
     letter-spacing: 0.5px;
 }

 .section-header h2 {
     font-family: 'DM Serif Display', serif;
     font-size: 3rem;
     color: var(--primary-dark);
     margin-bottom: 1rem;
 }

 .section-header p {
     font-size: 1.15rem;
     color: var(--text-secondary);
     max-width: 600px;
     margin: 0 auto;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .feature-card {
     padding: 2.5rem;
     background: var(--bg-main);
     border-radius: 16px;
     border: 1px solid var(--border);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--gradient);
     transform: scaleX(0);
     transition: transform 0.4s ease;
     transform-origin: left;
 }

 .feature-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(10, 77, 60, 0.15);
     border-color: var(--primary-light);
 }

 .feature-card:hover::before {
     transform: scaleX(1);
 }

 .feature-icon {
     width: 60px;
     height: 60px;
     /* background: var(--gradient); */
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.75rem;
     margin-bottom: 1.5rem;
     color: var(--white);
 }

 .feature-card .feature-icon img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .feature-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--primary-dark);
 }

 .feature-card p {
     color: var(--text-secondary);
     line-height: 1.7;
 }

 /* API Integration Section */
 .api-integration {
     padding: 6rem 0;
     background: var(--bg-main);
 }

 .api-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .api-text h3 {
     font-size: 1rem;
     color: var(--accent);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 1rem;
 }

 .api-text h2 {
     font-family: 'DM Serif Display', serif;
     font-size: 2.5rem;
     color: var(--primary-dark);
     margin-bottom: 1.5rem;
 }

 .api-text p {
     color: var(--text-secondary);
     font-size: 1.1rem;
     margin-bottom: 2rem;
     line-height: 1.8;
 }

 .integration-types {
     display: flex;
     gap: 1rem;
     margin-bottom: 2rem;
 }

 .integration-type {
     padding: 0.75rem 1.5rem;
     background: var(--white);
     border: 2px solid var(--border);
     border-radius: 8px;
     font-weight: 600;
     color: var(--text-primary);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .integration-type.active,
 .integration-type:hover {
     background: var(--primary);
     color: var(--white);
     border-color: var(--primary);
 }

 .code-block {
     background: var(--primary-dark);
     border-radius: 12px;
     padding: 2rem;
     color: #E8E8E8;
     font-family: 'Monaco', 'Courier New', monospace;
     font-size: 0.9rem;
     line-height: 1.6;
     overflow-x: auto;
     box-shadow: 0 10px 40px rgba(10, 77, 60, 0.2);
     position: relative;
 }

 .code-block::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     /* height: 35px; */
     background: rgba(255, 255, 255, 0.05);
     /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
     border-radius: 12px 12px 0 0;
 }

 .code-header {
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
     padding-bottom: 1rem;
     /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
     z-index: 2;
 }

 .code-dots {
     display: flex;
     gap: 6px;
 }

 .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
 }

 .dot.red {
     background: #FF5F56;
 }

 .dot.yellow {
     background: #FFBD2E;
 }

 .dot.green {
     background: #27C93F;
 }

 .code-lang {
     color: var(--accent-light);
     font-size: 0.85rem;
     font-weight: 600;
 }

 .code-content {
     position: relative;
     z-index: 2;
 }

 .code-line {
     display: block;
     padding: 0.25rem 0;
 }

 .keyword {
     color: #FF79C6;
 }

 .string {
     color: #50FA7B;
 }

 .function {
     color: #8BE9FD;
 }

 .property {
     color: #FFB86C;
 }

 .comment {
     color: #6272A4;
     font-style: italic;
 }

 /* Screenshots Section */
 .screenshots {
     padding: 6rem 0;
     background: var(--white);
 }

 .screenshots-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .screenshot-card {
     background: var(--bg-main);
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid var(--border);
     transition: all 0.4s ease;
 }

 .screenshot-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(10, 77, 60, 0.15);
 }

 .screenshot-image {
     width: 100%;
     height: 250px;
     /* background: linear-gradient(135deg, var(--primary-light), var(--accent)); */
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 3rem;
     position: relative;
     overflow: hidden;
 }

 .screenshot-image::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     opacity: 0.3;
 }

 .screenshot-image img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .screenshot-content {
     padding: 2rem;
 }

 .screenshot-content h3 {
     font-size: 1.35rem;
     color: var(--primary-dark);
     margin-bottom: 0.75rem;
 }

 .screenshot-content p {
     color: var(--text-secondary);
     line-height: 1.6;
 }

 /* Pricing Section */
 .pricing {
     padding: 6rem 0;
     background: var(--bg-main);
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .pricing-card {
     background: var(--white);
     border-radius: 20px;
     padding: 3rem 2.5rem;
     border: 2px solid var(--border);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .pricing-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: var(--gradient);
     transform: scaleX(0);
     transition: transform 0.4s ease;
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(10, 77, 60, 0.15);
     border-color: var(--primary);
 }

 .pricing-card:hover::before {
     transform: scaleX(1);
 }

 .pricing-card.featured {
     border-color: var(--primary);
     transform: scale(1.05);
     box-shadow: 0 20px 60px rgba(10, 77, 60, 0.2);
 }

 .pricing-card.featured::before {
     transform: scaleX(1);
 }

 .pricing-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: var(--accent);
     color: var(--white);
     padding: 0.5rem 1rem;
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 600;
 }

 .pricing-header h3 {
     font-size: 1.75rem;
     color: var(--primary-dark);
     margin-bottom: 0.5rem;
 }

 .pricing-header p {
     color: var(--text-light);
     margin-bottom: 2rem;
 }

 .pricing-price {
     margin-bottom: 2rem;
 }

 .price {
     font-family: 'DM Serif Display', serif;
     font-size: 3.5rem;
     color: var(--primary);
     display: flex;
     align-items: flex-start;
 }

 .price .currency {
     font-size: 2rem;
     margin-top: 0.5rem;
 }

 .price .period {
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     color: var(--text-light);
     align-self: flex-end;
     margin-left: 0.5rem;
     margin-bottom: 0.75rem;
 }

 .pricing-features {
     list-style: none;
     margin-bottom: 2rem;
 }

 .pricing-features li {
     padding: 0.75rem 0;
     color: var(--text-secondary);
     display: flex;
     align-items: center;
     gap: 0.75rem;
     border-bottom: 1px solid var(--bg-secondary);
 }

 .pricing-features li:last-child {
     border-bottom: none;
 }

 .pricing-features li::before {
     content: '✓';
     color: var(--success);
     font-weight: bold;
     font-size: 1.25rem;
 }

 /* FAQ Section */
 .faq {
     padding: 6rem 0;
     background: var(--white);
 }

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     background: var(--bg-main);
     border-radius: 12px;
     margin-bottom: 1rem;
     border: 1px solid var(--border);
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     border-color: var(--primary-light);
     box-shadow: 0 5px 20px rgba(10, 77, 60, 0.08);
 }

 .faq-question {
     padding: 1.75rem 2rem;
     font-size: 1.15rem;
     font-weight: 600;
     color: var(--primary-dark);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     color: var(--primary);
 }

 .faq-icon {
     font-size: 1.5rem;
     color: var(--accent);
     transition: transform 0.3s ease;
 }

 .faq-item.active .faq-icon {
     transform: rotate(45deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.4s ease;
     padding: 0 2rem;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 0 2rem 1.75rem;
 }

 .faq-answer p {
     color: var(--text-secondary);
     line-height: 1.8;
 }

 /* CTA Section */
 .cta {
     padding: 6rem 0;
     background: var(--primary-dark);
     color: var(--white);
     position: relative;
     overflow: hidden;
 }

 .cta::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 60%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
     animation: pulse 6s ease-in-out infinite;
 }

 .cta-content {
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .cta-content h2 {
     font-family: 'DM Serif Display', serif;
     font-size: 3rem;
     margin-bottom: 1.5rem;
 }

 .cta-content p {
     font-size: 1.25rem;
     margin-bottom: 2.5rem;
     opacity: 0.9;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 /* Footer */
 footer {
     background: var(--primary-dark);
     color: var(--white);
     padding: 4rem 0 2rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-about h3 {
     font-family: 'DM Serif Display', serif;
     font-size: 1.5rem;
     margin-bottom: 1rem;
 }

 .footer-about p {
     opacity: 0.8;
     line-height: 1.7;
 }

 .footer-links h4 {
     font-size: 1.1rem;
     margin-bottom: 1rem;
     font-weight: 600;
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links ul li {
     margin-bottom: 0.75rem;
 }

 .footer-links ul li a {
     color: var(--white);
     text-decoration: none;
     opacity: 0.8;
     transition: all 0.3s ease;
 }

 .footer-links ul li a:hover {
     opacity: 1;
     color: var(--accent-light);
     padding-left: 5px;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     opacity: 0.7;
 }

 /* Mobile Menu Toggle */
 .menu-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 0.5rem;
     z-index: 101;
 }

 .menu-toggle span {
     width: 25px;
     height: 3px;
     background: var(--primary);
     border-radius: 3px;
     transition: all 0.3s ease;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {

     .hero-content,
     .api-content {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .hero-visual {
         order: -1;
     }

     .footer-content {
         grid-template-columns: 1fr 1fr;
         gap: 2rem;
     }
 }

 @media (max-width: 768px) {
     .container {
         padding: 0 1.5rem;
     }

     .menu-toggle {
         display: flex;
     }

     .nav-links {
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: var(--white);
         flex-direction: column;
         padding: 2rem;
         gap: 1rem;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         display: none;
         z-index: 1000;
     }

     .nav-links.active {
         display: flex;
     }

     .hero-text h1 {
         font-size: 2.5rem;
     }

     .hero-text p {
         font-size: 1.1rem;
     }

     .section-header h2 {
         font-size: 2.25rem;
     }

     .stats {
         grid-template-columns: 1fr;
     }

     .features-grid,
     .screenshots-grid,
     .pricing-grid {
         grid-template-columns: 1fr;
     }

     .pricing-card.featured {
         transform: scale(1);
     }

     .footer-content {
         grid-template-columns: 1fr;
     }

     .hero-buttons {
         flex-direction: column;
     }

     .btn {
         width: 100%;
         text-align: center;
     }
 }

 /* Smooth Scroll */
 html {
     scroll-behavior: smooth;
 }

 /* Loading Animation */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

/* ── API Pricing Table ───────────────────────────────────────────── */
.api-pricing {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.api-pricing-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 16px 60px rgba(10, 77, 60, 0.10);
  border: 1px solid var(--border);
}

.api-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-family: 'Outfit', sans-serif;
}

/* ── Header row ── */
.api-pricing-table thead tr {
  background: var(--bg-secondary);
}

.api-pricing-table th {
  padding: 0;
  vertical-align: top;
  text-align: center;
  border-bottom: 2px solid var(--border);
}

.api-pricing-table th.feature-col {
  text-align: left;
  width: 38%;
  padding: 2rem 2rem 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  vertical-align: middle;
}

/* ── Plan column header ── */
.plan-col {
  position: relative;
  width: 31%;
}

.featured-col {
  background: rgba(10, 77, 60, 0.04);
}

.plan-badge-wrap {
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
}

.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: -0.25rem;
}

.plan-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1.5rem 1.75rem;
  gap: 0.3rem;
}

.plan-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.plan-sub {
  font-size: 0.85rem;
  color: var(--text-light);
}

.plan-price-wrap {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--primary);
}

.plan-unit {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── Body rows ── */
.api-pricing-table tbody td {
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.api-pricing-table tbody td.feature-label {
  text-align: left;
  padding-left: 2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.row-alt td {
  background: var(--bg-main);
}

.row-alt td.featured-col {
  background: rgba(10, 77, 60, 0.055);
}

.check {
  color: var(--success);
  font-size: 1.2rem;
  font-weight: 700;
}

.dash {
  color: var(--border);
  font-size: 1.3rem;
  font-weight: 400;
}

/* ── CTA row ── */
.cta-row td {
  padding: 1.75rem 1.5rem;
  border-bottom: none;
  background: var(--bg-secondary) !important;
}

.cta-row td.featured-col {
  background: rgba(10, 77, 60, 0.07) !important;
}

.tbl-btn {
  display: inline-block;
  width: auto;
  min-width: 140px;
  font-size: 0.95rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .api-pricing-table th.feature-col,
  .api-pricing-table tbody td.feature-label {
    padding-left: 1rem;
  }
  .api-pricing-table tbody td {
    padding: 0.85rem 0.75rem;
    font-size: 0.88rem;
  }
  .plan-price {
    font-size: 1.5rem;
  }
}

.roi{

    margin-left: 50px;
}