/* Add at the top of styles.css */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  font-display: swap;
}

  :root {
    --blue-900: #042C53;
    --blue-800: #0C447C;
    --blue-700: #185FA5;
    --blue-600: #1E6BB8;
    --blue-500: #378ADD;
    --blue-300: #85B7EB;
    --blue-200: #B5D4F4;
    --blue-100: #D6E9FA;
    --blue-50: #EBF4FD;
    --teal-500: #1D9E75;
    --teal-400: #22B584;
    --teal-100: #9FE1CB;
    --teal-50: #E1F5EE;
    --white: #ffffff;
    --gray-900: #1A1A2E;
    --gray-700: #2D3748;
    --gray-600: #4A5568;
    --gray-400: #A0AEC0;
    --gray-100: #F7FAFC;
    --gray-50: #F9FAFB;
    --shadow-sm: 0 1px 3px rgba(4,44,83,0.08), 0 1px 2px rgba(4,44,83,0.06);
    --shadow-md: 0 4px 16px rgba(4,44,83,0.12), 0 2px 6px rgba(4,44,83,0.08);
    --shadow-lg: 0 10px 40px rgba(4,44,83,0.15), 0 4px 12px rgba(4,44,83,0.10);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }

  /* ===== STICKY NAV ===== */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--blue-100);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
 /* .nav-logo img { height: 100px; width: 150px; }*/
  .nav-logo span { font-size: 20px; font-weight: 800; color: var(--blue-800); letter-spacing: -0.5px; }
  .nav-cta {
    background: var(--blue-700);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .nav-cta:hover { background: var(--blue-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 45%, var(--blue-700) 100%);
    padding: 80px 5% 0;
    overflow: hidden;
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
  }
  .hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(55,138,221,0.25) 0%, transparent 70%);
    top: -200px; right: -100px;
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(29,158,117,0.15) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative; z-index: 2;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--teal-100);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .hero-badge span { width: 8px; height: 8px; background: var(--teal-400); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.3); } }
  .hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--teal-400);
  }
  .hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
  .btn-primary {
    background: var(--teal-500);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--teal-400); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,158,117,0.4); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
  .hero-stats {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .hero-stat .num { font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -1px; }
  .hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }

  /* ===== LEAD FORM CARD ===== */
  .form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .form-card-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--teal-500);
    color: var(--white);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .form-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
  }
  .form-sub { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: all 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(55,138,221,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-submit {
    width: 100%;
    padding: 15px;
    background: var(--blue-700);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 6px;
  }
  .form-submit:hover { background: var(--blue-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-note { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 10px; }
  .form-success {
    display: none; text-align: center; padding: 20px 0;
  }
  .form-success .check {
    width: 56px; height: 56px;
    background: var(--teal-50);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
  }
  .form-success h3 { font-size: 18px; font-weight: 800; color: var(--blue-900); margin-bottom: 6px; }
  .form-success p { font-size: 14px; color: var(--gray-600); }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    background: var(--blue-50);
    padding: 20px 5%;
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
    border-bottom: 1px solid var(--blue-100);
  }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--blue-800); }
  .trust-icon { font-size: 20px; }

  /* ===== SECTION BASE ===== */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    background: var(--blue-50);
    color: var(--blue-700);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--blue-900);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .section-desc { font-size: 17px; color: var(--gray-600); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
  .text-center { text-align: center; }
  .text-center .section-desc { margin: 0 auto 48px; }

  /* ===== PROBLEMS ===== */
  .problems { background: var(--gray-50); }
  .problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
  .problem-card {
    background: var(--white);
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    overflow: hidden;
  }
  .problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue-500);
  }
  .problem-icon {
    width: 44px; height: 44px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
  }
  .problem-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
  .problem-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

  /* ===== SERVICES ===== */
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .service-card {
    background: var(--white);
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.3s;
    cursor: default;
  }
  .service-card:hover {
    border-color: var(--blue-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .service-icon {
    width: 52px; height: 52px;
    background: var(--blue-800);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
  }
  .service-card h3 { font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 10px; }
  .service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
  .service-list { list-style: none; }
  .service-list li {
    font-size: 13px;
    color: var(--gray-600);
    padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--gray-100);
  }
  .service-list li:last-child { border-bottom: none; }
  .service-list li::before {
    content: '✓';
    color: var(--teal-500);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ===== WHY CHOOSE ===== */
  .why { background: var(--blue-900); }
  .why .section-title { color: var(--white); }
  .why .section-desc { color: rgba(255,255,255,0.65); }
  .why .section-tag { background: rgba(255,255,255,0.1); color: var(--teal-100); }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
  .why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.3s;
  }
  .why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
  .why-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(55,138,221,0.3);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
  }
  .why-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
  .why-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

  /* ===== PROCESS ===== */
  .process { background: var(--gray-50); }
  .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
  .process-step {
    padding: 32px 24px;
    text-align: center;
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px; top: 42px;
    font-size: 24px;
    color: var(--blue-300);
    z-index: 2;
  }
  .step-num {
    width: 52px; height: 52px;
    background: var(--blue-700);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(24,95,165,0.35);
  }
  .process-step h3 { font-size: 16px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
  .process-step p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Lora', serif;
    font-size: 72px;
    color: var(--blue-200);
    position: absolute;
    top: 12px; left: 24px;
    line-height: 1;
  }
  .testimonial-card blockquote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 28px;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--blue-100);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--blue-800);
    flex-shrink: 0;
  }
  .author-name { font-size: 14px; font-weight: 700; color: var(--blue-900); }
  .author-role { font-size: 12px; color: var(--gray-400); }
  .stars { color: #F59E0B; font-size: 13px; margin-bottom: 2px; }

  /* ===== PRICING ===== */
  .pricing { background: var(--gray-50); }
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .price-card {
    background: var(--white);
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
  }
  .price-card.featured {
    border: 2.5px solid var(--blue-500);
    position: relative;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
  }
  .price-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--blue-700);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .price-name { font-size: 14px; font-weight: 700; color: var(--blue-700); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
  .price-amount { font-size: 42px; font-weight: 800; color: var(--blue-900); letter-spacing: -2px; line-height: 1; }
  .price-period { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; margin-top: 4px; }
  .price-features { list-style: none; margin-bottom: 28px; text-align: left; }
  .price-features li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex; align-items: center; gap: 8px;
  }
  .price-features li:last-child { border-bottom: none; }
  .price-features li::before { content: '✓'; color: var(--teal-500); font-weight: 700; }
  .price-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--blue-700);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .price-btn.outline { background: transparent; color: var(--blue-700); }
  .price-btn.outline:hover { background: var(--blue-50); }
  .price-btn.filled { background: var(--blue-700); color: var(--white); }
  .price-btn.filled:hover { background: var(--blue-800); }

  /* ===== FAQ ===== */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1.5px solid var(--blue-100);
    overflow: hidden;
  }
  .faq-q {
    width: 100%;
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 16px; font-weight: 700;
    color: var(--blue-900);
    background: none; border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    gap: 16px;
  }
  .faq-icon {
    width: 28px; height: 28px;
    background: var(--blue-50);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--blue-700);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-700); color: var(--white); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

  /* ===== FLOATING CTA ===== */
  .float-ctas {
    position: fixed;
    bottom: 28px; right: 24px;
    display: flex; flex-direction: column;
    gap: 12px;
    z-index: 200;
  }
  .float-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    text-decoration: none;
  }
  .float-btn:hover { transform: scale(1.1); }
  .float-btn.call { background: var(--blue-700); color: var(--white); }
  .float-btn.whatsapp { background: #25D366; color: var(--white); }
  .float-label {
    position: absolute;
    right: 65px;
    background: var(--gray-900);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .float-btn:hover .float-label { opacity: 1; }
  .float-btn { position: relative; }

  /* ===== FINAL CTA ===== */
  .final-cta {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    padding: 80px 5%;
    text-align: center;
  }
  .final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); letter-spacing: -1.5px; margin-bottom: 14px; }
  .final-cta p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
  .final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--gray-900);
    padding: 40px 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; }
  /*.footer-logo img { height: 100px; width: 150px; }*/
  .footer-logo span { font-size: 18px; font-weight: 800; color: var(--white); }
  footer p { font-size: 13px; color: rgba(255,255,255,0.4); }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-links a:hover { color: var(--white); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .form-card { margin-top: 20px; }
    .process-step:not(:last-child)::after { display: none; }
    .price-card.featured { transform: scale(1); }
  }
  @media (max-width: 600px) {
    section { padding: 60px 5%; }
    nav { padding: 0 4%; }
    .hero { padding: 60px 4% 0; }
    .trust-bar { gap: 20px; }
    .hero-stats { gap: 20px; }
    footer { flex-direction: column; align-items: flex-start; }
  }

  /* ===== ANIMATIONS ===== */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
  .fade-in-delay-4 { transition-delay: 0.4s; }

  /* Toast */
  .toast {
    position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--blue-800); color: var(--white);
    padding: 12px 24px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    opacity: 0; transition: all 0.3s;
    z-index: 300;
    pointer-events: none;
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* ===== FORM VALIDATION ===== */
  .form-group .error-msg {
    display: none; font-size: 11px; color: #e53e3e;
    margin-top: 4px; font-weight: 600;
  }
  .form-group.has-error input,
  .form-group.has-error select {
    border-color: #fc8181; background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(252,129,129,0.15);
  }
  .form-group.has-error .error-msg { display: block; }
  .form-group.is-valid input,
  .form-group.is-valid select {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
  }
  .captcha-note {
    font-size: 11px; color: var(--gray-400); text-align: center;
    margin-top: 8px; line-height: 1.5;
  }
  .captcha-note a { color: var(--blue-600); }
  .recaptcha-badge-hidden .grecaptcha-badge { visibility: hidden !important; }

  /* ===== PORTFOLIO / BEFORE-AFTER ===== */
  .portfolio { background: var(--gray-50); }
  .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
  .portfolio-card {
    background: var(--white);
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
  }
  .portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
  .portfolio-mockup {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
    padding: 20px 20px 0;
    display: flex; justify-content: center;
    border-bottom: 1px solid var(--blue-100);
    min-height: 160px; align-items: flex-end;
  }
  .mock-browser {
    background: var(--white);
    border-radius: 8px 8px 0 0;
    border: 1px solid var(--blue-200);
    width: 100%;
    max-width: 280px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(4,44,83,0.12);
  }
  .mock-bar {
    background: var(--blue-50);
    padding: 7px 10px;
    display: flex; align-items: center; gap: 5px;
    border-bottom: 1px solid var(--blue-100);
  }
  .mock-dot { width: 7px; height: 7px; border-radius: 50%; }
  .mock-url {
    background: var(--white);
    border: 1px solid var(--blue-100);
    border-radius: 4px;
    flex: 1; padding: 2px 8px;
    font-size: 10px; color: var(--gray-600);
    font-family: monospace;
  }
  .mock-content { padding: 12px; }
  .mock-hero-bar { height: 52px; background: var(--blue-800); border-radius: 4px; margin-bottom: 8px; display: flex; align-items: center; padding: 0 10px; gap: 6px; }
  .mock-hero-text { flex: 1; }
  .mock-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.4); margin-bottom: 4px; }
  .mock-line.w80 { width: 80%; }
  .mock-line.w60 { width: 60%; }
  .mock-cta-sm { height: 14px; width: 60px; background: var(--teal-400); border-radius: 10px; }
  .mock-body { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 6px; }
  .mock-card-sm { height: 36px; background: var(--blue-50); border-radius: 4px; border: 1px solid var(--blue-100); }
  .portfolio-info { padding: 20px; }
  .portfolio-spec { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
  .spec-tag {
    font-size: 11px; font-weight: 700; padding: 3px 10px;
    border-radius: 50px; background: var(--blue-50); color: var(--blue-700);
  }
  .portfolio-info h3 { font-size: 16px; font-weight: 700; color: var(--blue-900); margin-bottom: 4px; }
  .portfolio-info p { font-size: 13px; color: var(--gray-600); }
  .portfolio-result {
    display: flex; align-items: center; gap: 6px;
    margin-top: 10px; padding-top: 10px;
    border-top: 1px solid var(--blue-50);
    font-size: 13px; font-weight: 700; color: var(--teal-500);
  }

  /* ===== COMPARISON TABLE ===== */
  .comparison { background: var(--white); }
  .compare-table {
    width: 100%;
    border-collapse: separate; border-spacing: 0;
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 14px;
  }
  .compare-table th {
    padding: 16px 20px;
    text-align: center;
    font-size: 15px; font-weight: 800;
    background: var(--blue-900); color: var(--white);
  }
  .compare-table th:first-child { text-align: left; background: var(--blue-800); }
  .compare-table th.highlight { background: var(--blue-700); color: var(--teal-100); }
  .compare-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--blue-50);
    vertical-align: middle;
  }
  .compare-table td:not(:first-child) { text-align: center; }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tr:nth-child(odd) td { background: var(--gray-50); }
  .compare-table tr:nth-child(even) td { background: var(--white); }
  .compare-table td.feature-name { font-weight: 600; color: var(--blue-900); }
  .c-yes { color: var(--teal-500); font-size: 18px; font-weight: 700; }
  .c-no { color: #CBD5E0; font-size: 18px; }
  .c-maybe { color: #F59E0B; font-size: 13px; font-weight: 600; }
  .compare-wrap { overflow-x: auto; border-radius: var(--radius-md); }

  /* ===== ROI CALCULATOR ===== */
  .roi-calc { background: linear-gradient(135deg, var(--blue-900), var(--blue-800)); }
  .roi-calc .section-tag { background: rgba(255,255,255,0.1); color: var(--teal-100); }
  .roi-calc .section-title { color: var(--white); }
  .roi-calc .section-desc { color: rgba(255,255,255,0.65); }
  .calc-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: start;
  }
  .calc-inputs { }
  .calc-label {
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 6px; display: block;
  }
  .calc-slider-wrap { margin-bottom: 24px; }
  .calc-slider-row { display: flex; align-items: center; gap: 12px; }
  .calc-val {
    font-size: 18px; font-weight: 800; color: var(--teal-400);
    min-width: 70px; text-align: right;
  }
  input[type=range].calc-range {
    flex: 1; accent-color: var(--teal-400);
    height: 4px; border: none; background: transparent;
    box-shadow: none; padding: 0;
  }
  .calc-results {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 28px;
  }
  .calc-results h3 { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
  .calc-result-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .calc-result-row:last-child { border-bottom: none; }
  .calc-result-label { font-size: 14px; color: rgba(255,255,255,0.6); }
  .calc-result-val { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
  .calc-result-val.highlight { color: var(--teal-400); font-size: 28px; }
  @media (max-width: 768px) {
    .calc-inner { grid-template-columns: 1fr; }
  }

  /* ===== CITY SEO ===== */
  .cities { background: var(--gray-50); }
  .city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
  .city-pill {
    background: var(--white);
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
    font-size: 14px; font-weight: 600; color: var(--blue-800);
    transition: all 0.2s;
    cursor: default;
  }
  .city-pill:hover { background: var(--blue-50); border-color: var(--blue-300); transform: translateY(-2px); }
  .city-pill span { display: block; font-size: 11px; color: var(--gray-400); font-weight: 400; margin-top: 2px; }