﻿:root {
      --bg: #f4f8ff;
      --surface: #ffffff;
      --surface-soft: #edf3ff;
      --text: #071632;
      --text-soft: #4e5f84;
      --deep: #06112a;
      --brand: #1965ff;
      --brand-dark: #0e49c2;
      --line: #dbe4f8;
      --success: #25d366;
      --success-dark: #169a45;
      --radius: 16px;
      --radius-sm: 12px;
      --shadow: 0 16px 40px rgba(8, 28, 77, 0.12);
      --shadow-soft: 0 8px 24px rgba(8, 28, 77, 0.08);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Manrope", "Segoe UI", "Helvetica Neue", sans-serif;
      color: var(--text);
      background: radial-gradient(circle at 0% -10%, #dbe9ff 0%, transparent 45%), radial-gradient(circle at 100% 5%, #d8f3ff 0%, transparent 42%), var(--bg);
      line-height: 1.6;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
    }

    body::before {
      width: 280px;
      height: 280px;
      left: -100px;
      bottom: -120px;
      background: rgba(25, 101, 255, 0.15);
      filter: blur(2px);
    }

    body::after {
      width: 320px;
      height: 320px;
      right: -120px;
      top: 20%;
      background: rgba(37, 211, 102, 0.12);
      filter: blur(3px);
    }

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

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--deep);
      color: #fff;
      padding: 8px 12px;
      border-radius: 0 0 8px 8px;
      z-index: 9999;
    }

    .skip-link:focus {
      left: 12px;
    }

    .container {
      width: min(1120px, 92vw);
      margin: 0 auto;
    }

    section {
      scroll-margin-top: 92px;
    }

    .section-pad {
      padding: 74px 0;
    }

    .section-title {
      margin: 0 0 10px;
      font-family: "Sora", "Manrope", sans-serif;
      font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.35rem);
      line-height: 1.2;
      letter-spacing: -0.03em;
    }

    .section-lead {
      margin: 0;
      color: var(--text-soft);
      max-width: 740px;
      font-size: 1.02rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: none;
      border-radius: 999px;
      padding: 12px 20px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .whatsapp-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .whatsapp-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: currentColor;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 10px 24px rgba(25, 101, 255, 0.3);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
    }

    .btn-ghost {
      background: #fff;
      color: var(--deep);
      border: 1px solid var(--line);
    }

    .btn-whatsapp {
      background: var(--success);
      color: #fff;
      box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
    }

    .btn-whatsapp:hover {
      background: var(--success-dark);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 99;
      backdrop-filter: blur(10px);
      background: rgba(244, 248, 255, 0.8);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .site-header.scrolled {
      border-color: var(--line);
      box-shadow: var(--shadow-soft);
      background: rgba(244, 248, 255, 0.94);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 74px;
      gap: 14px;
    }

    .logo {
      font-family: "Sora", "Manrope", sans-serif;
      font-size: 1.28rem;
      font-weight: 700;
      color: var(--deep);
      letter-spacing: -0.02em;
    }

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

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 20px;
      margin: 0;
      padding: 0;
      color: #24385f;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .nav-menu a {
      position: relative;
      padding: 4px 0;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 2px;
      background: var(--brand);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.18s ease;
    }

    .nav-menu a:hover::after,
    .nav-menu a:focus-visible::after {
      transform: scaleX(1);
    }

    .menu-toggle {
      display: none;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--deep);
      border-radius: 10px;
      padding: 8px 10px;
      font-weight: 700;
      cursor: pointer;
    }

    .hero {
      padding: 54px 0 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: stretch;
    }

    .hero-content {
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      border-radius: 22px;
      border: 1px solid #dce8ff;
      box-shadow: var(--shadow);
      padding: clamp(24px, 4vw, 42px);
    }

    .eyebrow {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      background: #e7f0ff;
      color: #174cb3;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .hero h1 {
      margin: 0;
      font-family: "Sora", "Manrope", sans-serif;
      font-size: clamp(1.9rem, 1.2rem + 2.1vw, 3rem);
      line-height: 1.18;
      letter-spacing: -0.035em;
    }

    .hero p {
      color: var(--text-soft);
      margin: 16px 0 0;
      font-size: 1.03rem;
      max-width: 64ch;
    }

    .trust-points {
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .trust-points li {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 10px 12px;
      font-size: 0.92rem;
      font-weight: 700;
      color: #17315e;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-card {
      border-radius: 22px;
      background: linear-gradient(175deg, #07142e 0%, #09204c 70%, #0b2a6a 100%);
      color: #fff;
      padding: clamp(24px, 3.4vw, 34px);
      box-shadow: var(--shadow);
      border: 1px solid rgba(158, 196, 255, 0.25);
      display: flex;
      flex-direction: column;
      gap: 14px;
      justify-content: space-between;
    }

    .hero-card h2 {
      margin: 0;
      font-family: "Sora", "Manrope", sans-serif;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
    }

    .hero-card ul {
      margin: 2px 0 0;
      padding-left: 18px;
    }

    .hero-card li {
      margin-bottom: 8px;
      color: #dce8ff;
    }

    .hero-card .mini-note {
      font-size: 0.89rem;
      color: #b9d0ff;
    }

    .trust-bar {
      padding: 8px 0 26px;
    }

    .trust-badges {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 10px;
    }

    .trust-badges li {
      text-align: center;
      background: #fff;
      border: 1px solid var(--line);
      color: #223b67;
      border-radius: 999px;
      padding: 9px 12px;
      font-weight: 700;
      font-size: 0.84rem;
    }

    .problem-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .problem-copy {
      padding: 28px;
    }

    .problem-list {
      margin: 0;
      padding: 28px;
      list-style: none;
      display: grid;
      gap: 10px;
      background: linear-gradient(180deg, #fafdff, #f2f7ff);
    }

    .problem-list li {
      padding: 11px 12px;
      border: 1px solid #d9e7ff;
      background: #fff;
      border-radius: 10px;
      color: #1f3968;
      font-weight: 600;
    }

    .services-grid {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .service-card {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .icon-placeholder {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #eaf1ff;
      border: 1px solid #c9dbff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #1b56c9;
      font-weight: 800;
      font-size: 0.85rem;
    }

    .service-card h3 {
      margin: 2px 0 0;
      font-family: "Sora", "Manrope", sans-serif;
      font-size: 1.06rem;
      line-height: 1.35;
    }

    .service-card p {
      margin: 0;
      color: var(--text-soft);
      font-size: 0.95rem;
    }

    .service-benefits {
      margin: 0;
      padding-left: 18px;
      color: #26436e;
      font-size: 0.91rem;
    }

    .service-benefits li {
      margin: 4px 0;
    }

    .service-card .btn {
      width: fit-content;
      margin-top: auto;
    }

    .packages-intro {
      margin-top: 10px;
      color: var(--text-soft);
    }

    .scope-note {
      margin: 14px 0 0;
      display: inline-block;
      background: #fff6e9;
      border: 1px solid #ffdfb1;
      color: #8b5c08;
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 0.88rem;
      font-weight: 700;
    }

    .package-groups {
      display: grid;
      gap: 18px;
      margin-top: 28px;
    }

    .package-group {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      padding: 18px;
    }

    .package-group h3 {
      margin: 0 0 12px;
      font-family: "Sora", "Manrope", sans-serif;
      font-size: 1.15rem;
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .package-card {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 16px;
      background: linear-gradient(180deg, #ffffff, #f7faff);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .package-card h4 {
      margin: 0;
      font-size: 1.02rem;
      line-height: 1.3;
    }

    .price {
      margin: 0;
      font-family: "Sora", "Manrope", sans-serif;
      color: var(--brand-dark);
      font-size: 1.12rem;
    }

    .package-points {
      margin: 0;
      padding-left: 18px;
      color: #2f4f82;
      font-size: 0.9rem;
    }

    .why-grid {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .why-point {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 14px;
      font-weight: 700;
      color: #243f6e;
    }

    .process-grid {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .process-step {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }

    .process-step span {
      display: inline-flex;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: #e4edff;
      color: #1649ab;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .process-step h3 {
      margin: 0;
      font-size: 1rem;
    }

    .lead-wrap {
      margin-top: 26px;
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 16px;
      align-items: start;
    }

    .lead-form {
      padding: 22px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .field.full {
      grid-column: span 2;
    }

    label {
      font-weight: 700;
      color: #183260;
      font-size: 0.92rem;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid #cddcf8;
      border-radius: 10px;
      padding: 11px 12px;
      font-size: 0.95rem;
      font-family: inherit;
      color: var(--text);
      background: #fff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(25, 101, 255, 0.16);
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    .required {
      color: #cf1e3a;
    }

    .package-detail {
      padding: 20px;
      min-height: 250px;
      position: sticky;
      top: 94px;
    }

    .package-detail h3 {
      margin-top: 0;
      margin-bottom: 8px;
    }

    .package-detail .muted {
      color: var(--text-soft);
      font-size: 0.94rem;
      margin: 0;
    }

    .package-detail-box {
      margin-top: 14px;
      border: 1px dashed #bcd1fc;
      border-radius: 12px;
      padding: 14px;
      background: #f7faff;
      display: none;
    }

    .package-detail-box.visible {
      display: block;
      animation: fadeInUp 0.3s ease;
    }

    .package-feature-list {
      margin: 10px 0 0;
      padding-left: 18px;
      font-size: 0.9rem;
      color: #274678;
    }

    .fine-print {
      margin-top: 12px;
      font-size: 0.84rem;
      color: #6d7d9e;
      font-weight: 600;
    }

    .faq-list {
      margin-top: 24px;
      display: grid;
      gap: 10px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      padding: 12px 14px;
    }

    .faq-item summary {
      cursor: pointer;
      font-weight: 700;
      color: #1e3762;
    }

    .faq-item p {
      color: var(--text-soft);
      margin: 10px 0 4px;
    }

    .final-cta {
      background: linear-gradient(120deg, #071634, #0f3d8f);
      color: #fff;
      border-radius: 24px;
      border: 1px solid #2f5fb5;
      padding: clamp(24px, 4vw, 42px);
      text-align: center;
    }

    .final-cta h2 {
      margin: 0;
      font-family: "Sora", "Manrope", sans-serif;
      font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.2rem);
      letter-spacing: -0.02em;
    }

    .final-cta p {
      margin: 10px auto 20px;
      max-width: 640px;
      color: #cde0ff;
    }

    footer {
      margin-top: 70px;
      background: #050f24;
      color: #dbe7ff;
      padding: 38px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 14px;
      align-items: start;
    }

    .footer-brand {
      margin: 0 0 8px;
      font-family: "Sora", "Manrope", sans-serif;
      color: #fff;
    }

    .footer-copy {
      margin: 6px 0;
      color: #a9bfeb;
      max-width: 680px;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .floating-wa {
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 96;
      border-radius: 999px;
      padding: 12px 16px;
      font-size: 0.92rem;
      font-weight: 800;
      background: var(--success);
      color: #fff;
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    }

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Simple + elegant visual override */
    :root {
      --bg: #f7f8fb;
      --surface: #ffffff;
      --surface-soft: #f3f4f6;
      --text: #111827;
      --text-soft: #4b5563;
      --deep: #0f172a;
      --brand: #1d4ed8;
      --brand-dark: #1e40af;
      --line: #e5e7eb;
      --radius: 14px;
      --radius-sm: 10px;
      --shadow: none;
      --shadow-soft: none;
    }

    body {
      background: var(--bg);
    }

    body::before,
    body::after {
      display: none;
    }

    .section-pad {
      padding: 64px 0;
    }

    .site-header {
      backdrop-filter: none;
      background: rgba(255, 255, 255, 0.96);
    }

    .site-header.scrolled {
      background: #ffffff;
    }

    .btn {
      border-radius: 10px;
      padding: 11px 18px;
    }

    .btn:hover {
      transform: none;
    }

    .btn-primary,
    .btn-whatsapp {
      box-shadow: none;
    }

    .hero {
      padding: 42px 0 30px;
    }

    .hero-content {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: clamp(22px, 3.8vw, 36px);
    }

    .eyebrow {
      text-transform: none;
      background: #eff6ff;
      color: #1e3a8a;
    }

    .hero-card {
      background: #ffffff;
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: 16px;
    }

    .hero-card li,
    .hero-card .mini-note {
      color: var(--text-soft);
    }

    .trust-badges li {
      border-radius: 10px;
      padding: 10px 12px;
    }

    .card,
    .service-card,
    .package-group,
    .package-card,
    .process-step {
      box-shadow: none;
    }

    .problem-list {
      background: #ffffff;
    }

    .problem-list li {
      border-color: var(--line);
      color: #1f2937;
    }

    .icon-placeholder {
      background: #eff6ff;
      border-color: #dbeafe;
      color: #1d4ed8;
    }

    .scope-note {
      background: #fffbeb;
      border-color: #fde68a;
      color: #92400e;
      border-radius: 10px;
    }

    .package-card {
      background: #ffffff;
    }

    .why-point {
      border-radius: 10px;
      color: #1f2937;
    }

    .process-step span {
      background: #eff6ff;
      color: #1d4ed8;
    }

    input,
    select,
    textarea {
      border-color: #d1d5db;
      border-radius: 8px;
    }

    .package-detail-box {
      background: #ffffff;
      border-style: solid;
      border-color: var(--line);
    }

    .faq-item {
      border-radius: 10px;
    }

    .final-cta {
      background: #ffffff;
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: 16px;
    }

    .final-cta p {
      color: var(--text-soft);
    }

    .floating-wa {
      border-radius: 10px;
      box-shadow: none;
      padding: 11px 14px;
    }

    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    /* Form-only dark modern layout */
    body {
      color: #e9ecff;
      background:
        radial-gradient(circle at 12% 0%, rgba(96, 40, 214, 0.4), transparent 42%),
        radial-gradient(circle at 95% 5%, rgba(49, 140, 255, 0.36), transparent 42%),
        radial-gradient(circle at 50% 100%, rgba(66, 63, 221, 0.22), transparent 55%),
        #060816;
    }

    header,
    footer,
    .floating-wa,
    main > section:not(#contact) {
      display: none !important;
    }

    main {
      min-height: 100vh;
      display: grid;
      align-items: start;
      padding: clamp(20px, 4vw, 42px) 0 28px;
    }

    #contact {
      display: block !important;
      padding: 0;
    }

    #contact .container {
      width: min(780px, 94vw);
    }

    #contact .form-logo-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 14px;
    }

    #contact .form-logo-chip {
      background: transparent;
      border: none;

      padding: 0;
      line-height: 0;
   
    }

    #contact .form-logo {
      display: block;
      width: 112px;
      max-width: 100%;
      height: auto;
  
    }

    #contact .section-title {
      text-align: center;
      color: #f8f9ff;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
      font-weight: 600;
    }

    #contact .section-lead {
      text-align: center;
      color: #b6bcdf;
      margin: 0 auto;
      max-width: 660px;
    }

    .lead-wrap {
      grid-template-columns: 1fr;
      margin-top: 18px;
    }

    .package-detail {
      display: none;
    }

    .lead-form {
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      border: 1px solid rgba(113, 119, 255, 0.45);
      background: linear-gradient(165deg, rgba(12, 17, 40, 0.94), rgba(6, 10, 28, 0.98));
      box-shadow: 0 24px 60px rgba(7, 5, 24, 0.75);
      backdrop-filter: blur(6px);
      padding: clamp(18px, 2.8vw, 26px);
    }

    .lead-form::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #6429e3, #3f4ee8, #2f8fff);
      pointer-events: none;
    }

    .lead-form label {
      color: #dbe0ff;
    }

    .lead-form .required {
      color: #fb7185;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      background: #0b1027;
      border: 1px solid #2d3b73;
      border-radius: 10px;
      color: #f8f9ff;
      min-height: 46px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .lead-form select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a7b1df' d='M1.41.59 6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
    }

    .lead-form select option {
      background: #0b1027;
      color: #f8f9ff;
    }

    .lead-form input::placeholder,
    .lead-form textarea::placeholder {
      color: #7f8abc;
    }

    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
      background: #0d1431;
      border-color: #5d63ff;
      box-shadow: 0 0 0 3px rgba(93, 99, 255, 0.22);
    }

    #contact .btn {
      width: 100%;
      border-radius: 10px;
    }

    .form-submit {
      margin-top: 16px;
    }

    #contact .btn-whatsapp {
      background: linear-gradient(180deg, #22c55e, #16a34a);
      box-shadow: 0 12px 28px rgba(22, 163, 74, 0.32), 0 0 0 1px rgba(118, 243, 164, 0.28) inset;
    }

    #contact .btn-whatsapp:hover {
      background: linear-gradient(180deg, #16a34a, #15803d);
    }

    @media (max-width: 780px) {
      #contact .section-title {
        font-size: 1.45rem;
      }

      #contact .section-lead {
        font-size: 0.95rem;
      }

      #contact .form-logo {
        width: 96px;
      }

      .lead-form {
        padding: 16px;
      }
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .problem-wrap,
      .lead-wrap,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .package-grid,
      .why-grid,
      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .package-detail {
        position: static;
      }

      .trust-badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 780px) {
      .menu-toggle {
        display: inline-flex;
      }

      .site-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #f4f8ff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        display: none;
      }

      .site-nav.open {
        display: block;
      }

      .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 10px 4vw 14px;
      }

      .nav-menu li a {
        display: block;
        padding: 10px 4px;
      }

      .header-cta {
        display: none;
      }

      .trust-points {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .package-grid,
      .why-grid,
      .process-grid,
      .field-grid,
      .trust-badges {
        grid-template-columns: 1fr;
      }

      .field.full {
        grid-column: span 1;
      }
    }
