   :root {
      --navy: #07133d;
      --navy-2: #0d1f5e;
      --ink: #12182f;
      --muted: #657086;
      --line: #e7eaf1;
      --soft: #f6f8fc;
      --white: #ffffff;
      --gold: #c79a45;
      --gold-2: #efd8a7;
      --green: #1b8a6b;
      --shadow: 0 24px 70px rgba(7, 19, 61, 0.14);
      --radius: 26px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.55;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(231, 234, 241, 0.8);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 18px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      width: 178px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 14px;
      color: var(--muted);
      font-weight: 600;
    }

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

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 13px 20px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: -0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

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

    .btn-primary {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 16px 34px rgba(7, 19, 61, 0.22);
    }

    .btn-primary:hover {
      background: var(--navy-2);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--navy);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      box-shadow: 0 12px 28px rgba(7, 19, 61, 0.1);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 82px 0 74px;
      background:
        radial-gradient(circle at 84% 12%, rgba(199, 154, 69, 0.2), transparent 34%),
        radial-gradient(circle at 8% 20%, rgba(13, 31, 94, 0.16), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -35% -10%;
      height: 380px;
      background: linear-gradient(90deg, rgba(7, 19, 61, 0.08), rgba(199, 154, 69, 0.08));
      filter: blur(70px);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 12px;
      border: 1px solid rgba(199, 154, 69, 0.35);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.76);
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .eyebrow span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--gold);
      box-shadow: 0 0 0 5px rgba(199, 154, 69, 0.16);
    }

    h1, h2, h3 {
      margin: 0;
      letter-spacing: -0.055em;
      line-height: 1.02;
      color: var(--navy);
    }

    h1 {
      font-size: clamp(44px, 6vw, 78px);
      max-width: 790px;
    }

    .lead {
      margin: 24px 0 0;
      max-width: 650px;
      font-size: 19px;
      color: #4f5b72;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 38px;
      max-width: 690px;
    }

    .trust-item {
      padding: 15px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(231, 234, 241, 0.88);
    }

    .trust-item strong {
      display: block;
      color: var(--navy);
      font-size: 15px;
      margin-bottom: 2px;
    }

    .trust-item span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .hero-card {
      position: relative;
      padding: 24px;
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(231, 234, 241, 0.9);
      box-shadow: var(--shadow);
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 28px;
      border: 1px solid rgba(199, 154, 69, 0.28);
      pointer-events: none;
    }

    .package-preview {
      position: relative;
      z-index: 1;
      background: linear-gradient(180deg, var(--navy), #111f55);
      color: var(--white);
      border-radius: 28px;
      padding: 26px;
      overflow: hidden;
    }

    .package-preview::after {
      content: "TM";
      position: absolute;
      right: -10px;
      top: -28px;
      font-size: 160px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.08em;
      color: rgba(255, 255, 255, 0.055);
    }

    .package-preview h2 {
      color: var(--white);
      font-size: 32px;
      max-width: 360px;
    }

    .package-preview p {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.76);
    }

    .market-list {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .market {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.14);
      font-weight: 800;
    }

    .market small {
      color: var(--gold-2);
      font-weight: 800;
    }

    .mini-proof {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .mini-proof div {
      border-radius: 16px;
      background: var(--white);
      padding: 16px;
      border: 1px solid var(--line);
    }

    .mini-proof strong {
      display: block;
      color: var(--navy);
      font-size: 20px;
      letter-spacing: -0.04em;
    }

    .mini-proof span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      margin-top: 3px;
    }

    section {
      padding: 86px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      font-size: clamp(34px, 4vw, 54px);
      max-width: 720px;
    }

    .section-head p {
      max-width: 460px;
      color: var(--muted);
      margin: 0;
      font-size: 16px;
    }

    .services {
      background: var(--white);
    }

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

    .service-card {
      position: relative;
      min-height: 330px;
      padding: 28px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 14px 38px rgba(7, 19, 61, 0.06);
      overflow: hidden;
    }

    .service-card.featured {
      background: linear-gradient(180deg, #ffffff 0%, #f7f2e7 100%);
      border-color: rgba(199, 154, 69, 0.32);
    }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      background: #eef2ff;
      color: var(--navy);
      font-weight: 900;
      font-size: 18px;
    }

    .service-card.featured .icon {
      background: var(--navy);
      color: var(--white);
    }

    .service-card h3 {
      font-size: 26px;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--muted);
      margin: 0 0 22px;
    }

    .tick-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .tick-list li {
      color: #354057;
      font-size: 14px;
      font-weight: 650;
      display: flex;
      gap: 9px;
    }

    .tick-list li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .packages {
      background: var(--soft);
    }

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

    .price-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 14px 38px rgba(7, 19, 61, 0.05);
    }

    .price-card.highlight {
      border-color: rgba(199, 154, 69, 0.42);
      box-shadow: var(--shadow);
      transform: translateY(-8px);
    }

    .badge {
      display: inline-flex;
      padding: 7px 11px;
      border-radius: 999px;
      background: #f3ead6;
      color: #7a5b20;
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .price-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .price-card .market-name {
      color: var(--muted);
      font-size: 14px;
      margin: 0 0 18px;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin: 20px 0;
      color: var(--navy);
    }

    .price strong {
      font-size: 36px;
      letter-spacing: -0.06em;
    }

    .price span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .price-note {
      min-height: 44px;
      color: var(--muted);
      font-size: 13px;
      margin: 0 0 22px;
    }

    .process {
      background: var(--white);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding: 26px;
      border-radius: var(--radius);
      background: var(--soft);
      border: 1px solid var(--line);
    }

    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-flex;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      background: var(--navy);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 20px;
    }

    .step h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-band {
      padding: 0 0 90px;
      background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 32px;
      align-items: center;
      padding: 42px;
      border-radius: 34px;
      background: var(--navy);
      color: var(--white);
      overflow: hidden;
      position: relative;
    }

    .cta-box::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      border-radius: 999px;
      right: -120px;
      top: -120px;
      background: rgba(199, 154, 69, 0.22);
      filter: blur(8px);
    }

    .cta-box h2 {
      color: var(--white);
      font-size: clamp(34px, 4vw, 54px);
    }

    .cta-box p {
      color: rgba(255, 255, 255, 0.76);
      margin: 16px 0 0;
      max-width: 650px;
    }

    .contact-card {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 26px;
      padding: 24px;
    }

    .contact-card label {
      display: block;
      font-size: 12px;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.7);
      margin: 14px 0 7px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .contact-card input,
    .contact-card select,
    .contact-card textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border-radius: 16px;
      padding: 13px 14px;
      font: inherit;
      outline: none;
    }

    .contact-card input::placeholder,
    .contact-card textarea::placeholder {
      color: rgba(255, 255, 255, 0.46);
    }

    .contact-card select option {
      color: var(--ink);
    }

    .contact-card .btn {
      width: 100%;
      margin-top: 18px;
      background: var(--gold);
      color: #1c1608;
    }

    .site-footer {
      background: #050b24;
      color: rgba(255, 255, 255, 0.72);
      padding: 38px 0;
      font-size: 14px;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

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

.legal-page {
  background: var(--soft);
}

.legal-hero {
  padding: 76px 0 58px;
  background:
    radial-gradient(circle at 85% 10%, rgba(199, 154, 69, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.legal-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-content-section {
  padding: 64px 0 90px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(7, 19, 61, 0.05);
}

.legal-sidebar a {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-sidebar a:hover {
  background: var(--soft);
  color: var(--navy);
}

.legal-card {
  padding: 42px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-block {
  scroll-margin-top: 110px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}

.legal-block h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.legal-block p {
  color: #4f5b72;
  margin: 0 0 15px;
}

.legal-block ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #4f5b72;
}

.legal-block li {
  margin-bottom: 8px;
}

.legal-block a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-notice {
  margin-top: 34px;
  padding: 20px;
  border-radius: 18px;
  background: #fff7e6;
  border: 1px solid rgba(199, 154, 69, 0.35);
  color: #5c4214;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 54px 0 42px;
  }

  .legal-content-section {
    padding: 42px 0 64px;
  }

  .legal-card {
    padding: 26px;
    border-radius: 22px;
  }

  .legal-block h2 {
    font-size: 24px;
  }
}

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .service-grid,
      .package-grid,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 14px;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .nav-actions .btn-secondary {
        display: none;
      }

      .logo img {
        width: 148px;
      }

      .hero {
        padding-top: 52px;
      }

      .trust-row,
      .market-list,
      .mini-proof,
      .service-grid,
      .package-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      .service-card,
      .price-card,
      .step,
      .cta-box {
        border-radius: 22px;
      }

      section {
        padding: 62px 0;
      }
    }