:root {
      --primary: #10B981;
      --primary-dark: #059669;
      --primary-deep: #064E3B;
      --accent: #F97316;
      --accent-hover: #EA580C;
      --dark-navy: #08161B;
      --dark-card: #0F232B;
      --dark-footer: #051014;
      --bg-light: #F8FAFC;
      --bg-white: #FFFFFF;
      --text-main: #0F172A;
      --text-muted: #64748B;
      --text-light: #94A3B8;
      --border: #E2E8F0;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 9999px;
    }

    html {
      scroll-behavior: smooth;
    }

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

    section[id] {
      scroll-margin-top: 90px;
    }

    body {
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-main);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* BADGES */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: var(--radius-full);
      margin-bottom: 16px;
    }

    .badge-orange {
      background-color: #FFF7ED;
      color: #EA580C;
      border: 1px solid #FFEDD5;
    }

    .badge-gray {
      background-color: #F1F5F9;
      color: #475569;
      border: 1px solid #E2E8F0;
    }

    .badge-green {
      background-color: #ECFDF5;
      color: #059669;
      border: 1px solid #A7F3D0;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: 700;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .btn-orange {
      background-color: var(--accent);
      color: #FFFFFF;
      box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    }

    .btn-orange:hover {
      background-color: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
    }

    .btn-dark {
      background-color: var(--dark-navy);
      color: #FFFFFF;
    }

    .btn-dark:hover {
      background-color: #1E293B;
    }

    .btn-outline {
      background-color: transparent;
      color: var(--text-main);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--text-main);
      background-color: #F8FAFC;
    }

    .btn-outline-dark {
      background-color: transparent;
      color: #FFFFFF;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
    }

    .btn-outline-dark:hover {
      background-color: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.4);
    }

    /* NAVBAR */
    .navbar {
      background-color: var(--bg-white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }

    .brand-logo svg {
      width: 32px;
      height: 32px;
    }

    .brand-logo .brand-highlight {
      color: var(--accent);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-link {
      font-size: 14px;
      font-weight: 600;
      color: #475569;
      transition: color 0.15s ease;
    }

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

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-login {
      font-size: 14px;
      font-weight: 600;
      color: #475569;
    }

    .nav-login:hover {
      color: var(--text-main);
    }

    /* MOBILE HAMBURGER BUTTON */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 42px;
      height: 42px;
      background-color: #F8FAFC;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      cursor: pointer;
      padding: 0;
      transition: all 0.2s ease;
    }

    .nav-toggle:hover {
      background-color: #F1F5F9;
      border-color: #CBD5E1;
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background-color: var(--text-main);
      border-radius: 2px;
      transition: all 0.25s ease;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* MOBILE DROPDOWN MENU */
    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--bg-white);
      border-bottom: 1.5px solid var(--border);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
      padding: 24px;
      flex-direction: column;
      gap: 20px;
      z-index: 150;
      animation: menuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .mobile-menu.open {
      display: flex;
    }

    @keyframes menuSlideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mobile-nav-link {
      display: block;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      background-color: #F8FAFC;
      transition: all 0.15s ease;
    }

    .mobile-nav-link:hover {
      background-color: #ECFDF5;
      color: var(--primary);
    }

    .mobile-menu-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }

    /* HERO SECTION */
    .hero-section {
      padding: 64px 0 80px;
      background-color: var(--bg-white);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 48px;
      align-items: center;
    }

    .hero-content h1 {
      font-size: clamp(38px, 4.5vw, 54px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -1.5px;
      color: var(--text-main);
      margin-bottom: 20px;
    }

    .hero-desc {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 540px;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #475569;
    }

    .hero-social-proof {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #ECFDF5;
      color: #065F46;
      border: 1px solid #A7F3D0;
      padding: 8px 16px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
    }

    /* WHATSAPP CARD MOCKUP */
    .whatsapp-preview-wrapper {
      background: linear-gradient(135deg, #F0FDF4 0%, #E6FFFA 100%);
      padding: 24px;
      border-radius: var(--radius-xl);
      border: 1px solid #D1FAE5;
      box-shadow: var(--shadow-xl);
      position: relative;
    }

    .whatsapp-card {
      background-color: #FFFFFF;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #E2E8F0;
    }

    .wa-header {
      background-color: #0D4E43;
      color: #FFFFFF;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .wa-user-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .wa-avatar {
      width: 36px;
      height: 36px;
      background-color: #10B981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
      color: white;
    }

    .wa-name {
      font-size: 14px;
      font-weight: 700;
    }

    .wa-status {
      font-size: 11px;
      color: #A7F3D0;
    }

    .wa-body {
      background-color: #EFEAE2;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background-image: radial-gradient(#d3c9bf 1px, transparent 1px);
      background-size: 16px 16px;
    }

    .wa-bubble {
      max-width: 90%;
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 13px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
      position: relative;
    }

    .wa-bubble-user {
      align-self: flex-end;
      background-color: #DCF8C6;
      border-top-right-radius: 2px;
    }

    .wa-voice-note {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }

    .wa-play-btn {
      width: 32px;
      height: 32px;
      background-color: #10B981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
    }

    .wa-waveform {
      flex: 1;
      height: 4px;
      background: #86EFAC;
      border-radius: 2px;
      position: relative;
    }

    .wa-waveform::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 45%;
      background: #15803D;
      border-radius: 2px;
    }

    .wa-duration {
      font-size: 11px;
      color: #4B5563;
      font-weight: 600;
    }

    .wa-quote-text {
      font-style: italic;
      color: #374151;
      font-size: 12px;
      border-left: 2px solid #10B981;
      padding-left: 8px;
    }

    .wa-bubble-bot {
      align-self: flex-start;
      background-color: #FFFFFF;
      border-top-left-radius: 2px;
    }

    .wa-pdf-attachment {
      margin-top: 10px;
      background-color: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 8px;
      padding: 10px;
    }

    .wa-pdf-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .wa-pdf-icon {
      color: #EF4444;
    }

    .wa-pdf-details {
      font-size: 12px;
      font-weight: 700;
      color: #0F172A;
    }

    .wa-pdf-size {
      font-size: 10px;
      color: #64748B;
      font-weight: 400;
    }

    .wa-pdf-table {
      width: 100%;
      border-top: 1px solid #E2E8F0;
      padding-top: 8px;
      font-size: 11px;
    }

    .wa-pdf-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 4px;
      color: #475569;
    }

    .wa-pdf-total {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
      padding-top: 6px;
      border-top: 1px dashed #CBD5E1;
      font-weight: 800;
      color: #0F172A;
      font-size: 12px;
    }

    /* METRICS STRIP (DARK) */
    .metrics-section {
      background-color: var(--dark-navy);
      color: #FFFFFF;
      padding: 36px 0;
    }

    .metrics-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .metrics-lead-text {
      font-size: 15px;
      font-weight: 600;
      color: #94A3B8;
      max-width: 240px;
      line-height: 1.4;
    }

    .metrics-items {
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .metric-box {
      text-align: left;
    }

    .metric-value {
      font-size: 32px;
      font-weight: 800;
      color: #FFFFFF;
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -0.5px;
    }

    .metric-label {
      font-size: 12px;
      color: #94A3B8;
      font-weight: 500;
    }

    /* SECTION HEADER COMMON */
    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 56px;
    }

    .section-header h2 {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -1px;
      color: var(--text-main);
    }

    /* COMPARISON SECTION */
    .comparison-section {
      padding: 96px 0;
      background-color: var(--bg-light);
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 1040px;
      margin: 0 auto;
    }

    .comp-card {
      border-radius: var(--radius-xl);
      padding: 40px 36px;
    }

    .comp-card-bad {
      background-color: #FEF2F2;
      border: 1.5px solid #FECACA;
    }

    .comp-card-good {
      background-color: #ECFDF5;
      border: 2px solid #6EE7B7;
      box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
    }

    .comp-title {
      font-size: 20px;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
    }

    .comp-title-bad {
      color: #991B1B;
    }

    .comp-title-good {
      color: #065F46;
    }

    .comp-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .comp-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      line-height: 1.45;
    }

    .comp-item-bad {
      color: #7F1D1D;
    }

    .comp-item-good {
      color: #064E3B;
      font-weight: 500;
    }

    .icon-cross {
      color: #EF4444;
      font-weight: 800;
      font-size: 16px;
    }

    .icon-check {
      color: #10B981;
      font-weight: 800;
      font-size: 16px;
    }

    /* 3 STEPS SECTION */
    .steps-section {
      padding: 96px 0;
      background-color: var(--bg-white);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .step-card {
      background-color: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      transition: all 0.25s ease;
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: #CBD5E1;
    }

    .step-num {
      font-size: 32px;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 16px;
      line-height: 1;
    }

    .step-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .step-desc {
      font-size: 14.5px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* INDUSTRY TEMPLATES */
    .templates-section {
      padding: 96px 0;
      background-color: var(--bg-light);
    }

    .templates-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .template-card {
      background-color: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-sm);
    }

    .tpl-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .tpl-icon-box {
      width: 48px;
      height: 48px;
      background-color: #ECFDF5;
      color: var(--primary);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tpl-name {
      font-size: 19px;
      font-weight: 800;
      color: var(--text-main);
    }

    .tpl-tagline {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .tpl-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .tpl-divider {
      height: 1px;
      background-color: var(--border);
      margin-bottom: 20px;
    }

    .tpl-subheading {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-main);
      margin-bottom: 14px;
    }

    .tpl-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 13px;
      color: #334155;
    }

    .tpl-list li {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tpl-list li::before {
      content: '✓';
      color: var(--primary);
      font-weight: 800;
    }

    /* TESTIMONIALS */
    .testimonials-section {
      padding: 96px 0;
      background-color: var(--bg-white);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial-card {
      background-color: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .test-quote {
      font-size: 15px;
      color: #334155;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 28px;
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .test-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: #CBD5E1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #475569;
      font-size: 16px;
    }

    .test-name {
      font-size: 15px;
      font-weight: 800;
      color: var(--text-main);
    }

    .test-role {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* PRICING */
    .pricing-section {
      padding: 96px 0;
      background-color: var(--bg-light);
    }

    .pricing-toggle-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-bottom: 56px;
    }

    .pricing-toggle {
      display: inline-flex;
      background-color: #E2E8F0;
      padding: 4px;
      border-radius: var(--radius-full);
      gap: 4px;
    }

    .toggle-btn {
      padding: 8px 20px;
      border-radius: var(--radius-full);
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      background: transparent;
      color: #64748B;
      transition: all 0.2s ease;
    }

    .toggle-btn.active {
      background-color: var(--bg-white);
      color: var(--text-main);
      box-shadow: var(--shadow-sm);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: stretch;
      max-width: 1240px;
      margin: 0 auto;
    }

    .price-card {
      background-color: var(--bg-white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 36px 24px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .price-card.featured {
      border: 2px solid var(--accent);
      box-shadow: 0 16px 36px rgba(249, 115, 22, 0.12);
    }

    .price-badge-top {
      position: absolute;
      top: -14px;
      right: 20px;
      background-color: #FFF7ED;
      color: var(--accent);
      border: 1px solid #FED7AA;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: var(--radius-full);
    }

    .price-plan-name {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .price-amount {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }

    .price-currency {
      font-size: 36px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -1px;
    }

    .price-period {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .price-plan-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 24px;
      min-height: 38px;
      line-height: 1.4;
    }

    .price-features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 30px;
      flex-grow: 1;
      font-size: 13px;
      color: #334155;
    }

    .price-features-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.35;
    }

    .price-features-list li::before {
      content: '✓';
      color: var(--primary);
      font-weight: 800;
      flex-shrink: 0;
    }

    .price-features-list li.feature-disabled {
      color: #94A3B8;
      text-decoration: line-through;
    }

    .price-features-list li.feature-disabled::before {
      content: '✕';
      color: #CBD5E1;
      font-weight: 700;
      text-decoration: none;
    }

    .price-guarantee {
      text-align: center;
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .pricing-footnotes {
      max-width: 1240px;
      margin: 40px auto 0;
      padding: 24px 28px;
      background-color: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .pricing-footnotes p {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .pricing-footnotes p:last-child {
      margin-bottom: 0;
    }

    .pricing-footnotes strong {
      color: var(--text-main);
    }

    /* FAQ */
    .faq-section {
      padding: 96px 0;
      background-color: var(--bg-white);
    }

    .faq-wrapper {
      max-width: 840px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background-color: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .faq-question {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 700;
      font-size: 15.5px;
      color: var(--text-main);
      cursor: pointer;
      user-select: none;
    }

    .faq-q-text {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .faq-icon-q {
      width: 24px;
      height: 24px;
      background-color: #FEE2E2;
      color: #DC2626;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      flex-shrink: 0;
    }

    .faq-chevron {
      font-size: 12px;
      color: #94A3B8;
      transition: transform 0.2s ease;
    }

    .faq-answer {
      padding: 0 24px 20px 60px;
      font-size: 14.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* FINAL CTA */
    .final-cta-section {
      padding: 96px 0;
      background-color: var(--bg-light);
    }

    .final-cta-card {
      background-color: #071E22;
      background-image: radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
      border-radius: var(--radius-xl);
      padding: 72px 48px;
      text-align: center;
      color: #FFFFFF;
    }

    .final-cta-card h2 {
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .final-cta-desc {
      font-size: 17px;
      color: #94A3B8;
      max-width: 620px;
      margin: 0 auto 36px;
    }

    .final-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* FOOTER */
    .footer-section {
      background-color: var(--dark-footer);
      color: #FFFFFF;
      padding: 80px 0 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
    }

    .footer-brand p {
      font-size: 13.5px;
      color: #94A3B8;
      line-height: 1.6;
      margin-top: 16px;
      max-width: 320px;
    }

    .footer-col-title {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #94A3B8;
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 13.5px;
      color: #CBD5E1;
    }

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

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      color: #64748B;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-socials {
      display: flex;
      gap: 16px;
      color: #94A3B8;
    }

    .footer-socials a:hover {
      color: #FFFFFF;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .steps-grid, .templates-grid, .testimonials-grid, .pricing-grid {
        grid-template-columns: 1fr;
      }
      .comparison-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .nav-login {
        display: none;
      }
      .nav-toggle {
        display: flex;
      }
      .nav-wrapper {
        height: 68px;
      }
      .brand-logo {
        font-size: 20px;
      }
      .nav-actions .btn {
        padding: 8px 14px;
        font-size: 13px;
      }
      .metrics-items {
        gap: 24px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
