*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: hsl(220, 25%, 6%); --navy-mid: hsl(220, 22%, 10%); --navy-light: hsl(218, 20%, 16%);
      --teal: hsl(200, 80%, 60%); --teal-dark: hsl(200, 80%, 45%); --teal-light: hsl(200, 80%, 72%);
      --white: #ffffff; --off-white: #f4f6f9;
      --gray-100: #e8ecf2; --gray-200: #ccd4e0; --gray-400: #8494ad;
      --gray-600: #4a5568; --gray-800: #1a2234;
      --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --nav-height: 72px; --radius: 8px; --radius-lg: 16px;
      --shadow: 0 4px 20px hsla(220, 25%, 6%, 0.12);
      --transition: 0.25s ease;
    }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
    h1, h2 { font-family: 'DM Serif Display', serif; font-weight: 400; }
    @keyframes btn-glow { 0%, 100% { box-shadow: 0 0 8px hsla(200, 80%, 60%, 0.35); } 50% { box-shadow: 0 0 22px hsla(200, 80%, 60%, 0.65); } }
    .btn-glow { animation: btn-glow 3s ease-in-out infinite; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul, ol { list-style: none; }

    .container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
    .section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
    .section-subtitle { font-size: 18px; color: var(--gray-600); max-width: 620px; line-height: 1.7; }
    .section-header { margin-bottom: 48px; }

    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; font-family: var(--font); }
    .btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
    .btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px hsla(200, 80%, 60%, 0.35); }
    .btn-lg { padding: 16px 36px; font-size: 16px; }
    .btn-arrow::after { content: '→'; font-size: 16px; }

    #nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); background: var(--navy); box-shadow: 0 2px 24px hsla(220, 25%, 6%, 0.25); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .nav-logo { display: flex; flex-direction: row; align-items: center; gap: 10px; }
    .nav-logo-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .nav-logo-name { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
    .nav-logo-tagline { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); transition: color var(--transition); }
    .nav-links a:hover { color: var(--white); }
    .nav-cta { display: flex; align-items: center; gap: 16px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: transparent; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; border-radius: 2px; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: hsla(220, 25%, 6%, 0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 24px; flex-direction: column; gap: 20px; z-index: 999; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .mobile-nav a:last-child { border-bottom: none; }

    .page-hero { background: var(--navy); padding: calc(var(--nav-height) + 80px) 0 80px; position: relative; overflow: hidden; }
    .page-hero-bg { position: absolute; inset: 0; opacity: 0.15; }
    .page-hero-bg svg { width: 100%; height: 100%; }
    .page-hero-content { position: relative; z-index: 1; max-width: 720px; }
    .page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
    .page-hero-eyebrow-line { width: 32px; height: 2px; background: var(--teal); }
    .page-hero-eyebrow-text { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
    .page-hero h1 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
    .page-hero-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 36px; max-width: 580px; }

    .for-section { background: var(--off-white); }
    .for-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .for-item { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 12px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.25s ease, transform 0.25s ease; }
    .for-item:hover { border-color: rgba(100,200,255,0.3); transform: translateY(-2px); }
    .for-check { width: 22px; height: 22px; background: hsla(200, 80%, 60%, 0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--teal); font-size: 12px; font-weight: 800; }
    .for-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
    .for-text strong { color: var(--navy); font-weight: 600; display: block; margin-bottom: 2px; }

    .get-section { background: var(--navy); }
    .get-section .section-title { color: var(--white); }
    .get-section .section-label { color: var(--teal-light); }
    .get-section .section-subtitle { color: rgba(255,255,255,0.65); }
    .get-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .get-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 28px; transition: border-color var(--transition), background var(--transition); }
    .get-card:hover { border-color: hsla(200, 80%, 60%, 0.4); background: rgba(255,255,255,0.06); }
    .get-icon { font-size: 28px; margin-bottom: 16px; }
    .get-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .get-desc { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.75; }

    .cta-strip { background: var(--white); border-top: 1px solid var(--gray-100); }
    .cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 72px 0; }
    .cta-strip-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .cta-strip-text p { font-size: 16px; color: var(--gray-600); }

    #footer { background: var(--gray-800); padding: 48px 0 32px; }
    .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; margin-bottom: 40px; }
    .footer-logo-name { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
    .footer-tagline { font-size: 13px; font-weight: 500; color: var(--teal-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
    .footer-contact-line { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
    .footer-contact-line a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
    .footer-contact-line a:hover { color: var(--teal-light); }
    .footer-nav { display: flex; gap: 56px; }
    .footer-nav-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
    .footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
    .footer-nav-col ul li a:hover { color: var(--white); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom-text { font-size: 13px; color: rgba(255,255,255,0.35); }

    @media (max-width: 768px) {
      .section { padding: 72px 0; }
      .nav-links, .nav-cta .btn { display: none; }
      .hamburger { display: flex; }
      .for-list, .get-grid { grid-template-columns: 1fr; }
      .cta-strip-inner { flex-direction: column; text-align: center; }
      .footer-inner { flex-direction: column; gap: 40px; }
      .footer-nav { flex-wrap: wrap; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
