   :root {
      --navy: #0F2143;
      --gold: #DBB352;
      --light: #f5f5f3;
      --text: #1b1b1b;
      --muted: #6c727f;
      --border: rgba(15, 33, 67, 0.08);
      --shadow: 0 20px 60px rgba(15, 33, 67, 0.08);
      --radius: 28px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f7f7f5;
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.5;
    }

    .background-glow {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      overflow: hidden;
    }

    .background-glow::before,
    .background-glow::after {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.12;
      animation: float 12s ease-in-out infinite alternate;
    }

    .background-glow::before {
      background: var(--gold);
      top: -180px;
      right: -120px;
    }

    .background-glow::after {
      background: var(--navy);
      bottom: -250px;
      left: -120px;
      animation-delay: 3s;
    }

    @keyframes float {
      from { transform: translateY(0px) translateX(0px); }
      to { transform: translateY(40px) translateX(30px); }
    }

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

    header {
      padding: 28px 0;
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(247, 247, 245, 0.82);
      border-bottom: 1px solid rgba(15, 33, 67, 0.05);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--navy);
      font-weight: 800;
      letter-spacing: -0.04em;
    }

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

    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--navy);
      font-size: 0.95rem;
      font-weight: 500;
      transition: opacity 0.3s ease;
    }

    .nav-links a:hover {
      opacity: 0.6;
    }

    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--navy);
      border-radius: 1px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 28px;
      border-radius: 999px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-weight: 600;
      font-size: 0.98rem;
    }

    .btn-primary {
      background: var(--navy);
      color: white;
      box-shadow: 0 16px 35px rgba(15, 33, 67, 0.18);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 50px rgba(15, 33, 67, 0.22);
    }

    .hero {
      padding: 90px 0 110px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 60px;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      background: rgba(15, 33, 67, 0.06);
      border: 1px solid rgba(15, 33, 67, 0.06);
      border-radius: 999px;
      color: var(--navy);
      font-weight: 600;
      margin-bottom: 28px;
      font-size: 0.92rem;
    }

    .hero h1 {
      font-size: clamp(3rem, 6vw, 5.6rem);
      line-height: 0.92;
      letter-spacing: -0.07em;
      color: var(--navy);
      margin-bottom: 26px;
      max-width: 780px;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero p {
      font-size: 1.2rem;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 38px;
    }

    .hero-card {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(15,33,67,0.06);
      border-radius: var(--radius);
      padding: 34px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(219,179,82,0.14), transparent 40%);
    }

    .hero-card img {
      max-width: 100%;
      width: auto;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 90px 0;
    }

    .section-header {
      margin-bottom: 60px;
      max-width: 720px;
    }

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 1;
      letter-spacing: -0.05em;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .section-description {
      font-size: 1.1rem;
      color: var(--muted);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: rgba(255,255,255,0.8);
      border-radius: 26px;
      padding: 34px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: transform 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card:hover {
      transform: translateY(-4px);
    }

    .feature-card::after {
      content: '';
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(219,179,82,0.08);
      right: -40px;
      top: -40px;
    }

    .feature-number {
      font-size: 0.9rem;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 18px;
    }

    .feature-card h3 {
      color: var(--navy);
      font-size: 1.5rem;
      margin-bottom: 20px;
      letter-spacing: -0.04em;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 1rem;
      margin-bottom: 20px;
      line-height: 1.75;
    }

    .feature-card hr {
      margin: 32px 0;
      border: none;
      border-top: 1px solid rgba(15,33,67,0.08);
    }

    .feature-card ul {
      margin: 16px 0 20px 24px;
      list-style-type: disc;
    }

    .feature-card li {
      color: var(--muted);
      font-size: 1rem;
      margin-bottom: 8px;
      line-height: 1.75;
    }

    .banner {
      padding: 70px;
      border-radius: 38px;
      background: linear-gradient(135deg, var(--navy), #17305f);
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(15,33,67,0.18);
    }

    .banner::before {
      content: '';
      position: absolute;
      width: 340px;
      height: 340px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 50%;
      right: -100px;
      top: -100px;
    }

    .banner h2 {
      font-size: clamp(2.2rem, 5vw, 4.6rem);
      line-height: 0.95;
      letter-spacing: -0.06em;
      margin-bottom: 24px;
      max-width: 800px;
    }

    .banner p {
      max-width: 700px;
      color: rgba(255,255,255,0.78);
      font-size: 1.1rem;
    }

    .bullet-list {
      margin-top: 34px;
      display: grid;
      gap: 18px;
    }

    .bullet-item {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 1rem;
    }

    .bullet-dot {
      width: 12px;
      height: 12px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .cta-section {
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 36px;
      align-items: stretch;
    }

    .cta-card,
    .form-card {
      background: rgba(255,255,255,0.82);
      border: 1px solid var(--border);
      border-radius: 34px;
      padding: 42px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .form-card.highlight-gold {
      border-color: var(--gold);
      box-shadow: 0 20px 60px rgba(219, 179, 82, 0.3);
      animation: gold-pulse 2s ease-in-out;
    }

    @keyframes gold-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
    }

    .cta-card h2 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 0.95;
      letter-spacing: -0.05em;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .cta-card p {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 520px;
      margin-bottom: 34px;
    }

    .form-grid {
      display: grid;
      gap: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 0.92rem;
      color: var(--navy);
      font-weight: 600;
    }

    .form-group input {
      width: 100%;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid rgba(15,33,67,0.08);
      background: rgba(255,255,255,0.8);
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .form-group input:focus {
      border-color: rgba(219,179,82,0.7);
      transform: translateY(-1px);
    }

    .form-disclaimer {
      margin-top: 18px;
      color: rgba(15,33,67,0.65);
      font-size: 0.94rem;
      line-height: 1.6;
    }

    footer {
      padding: 50px 0 70px;
    }

    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: rgba(15,33,67,0.6);
      font-size: 0.95rem;
    }

    .footer-content a {
      color: rgba(15,33,67,0.6);
      text-decoration: none;
      margin-left: 12px;
      transition: color 0.2s ease;
    }

    .footer-content a:hover {
      color: var(--navy);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 980px) {
      .hero-grid,
      .cta-section,
      .features {
        grid-template-columns: 1fr;
      }

      .hero-card {
        max-width: 420px;
        margin: 0 auto;
      }

      .hero-card img {
        max-width: 260px;
      }

      .banner {
        padding: 50px 34px;
      }

      .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(247, 247, 245, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
      }

      .nav-links.active {
        transform: translateX(0);
      }

      .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
      }

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

      .hero {
        padding-top: 60px;
      }
    }

    @media (max-width: 640px) {
      .hero h1,
      .section-title,
      .banner h2,
      .cta-card h2 {
        line-height: 1;
      }

      .hero-card,
      .feature-card,
      .cta-card,
      .form-card {
        padding: 26px;
      }

      .hero-card {
        max-width: 420px;
        margin: 0 auto;
      }

      .hero-card img {
        max-width: 260px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
      }

      .banner {
        border-radius: 28px;
      }

      .btn {
        width: 100%;
      }

      .footer-content {
        flex-direction: column;
        align-items: flex-start;
      }
    }