:root {
      --navy: #003366;
      --navy-2: #0a4b8c;
      --cyan: #00b7d8;
      --cyan-2: #7be6f7;
      --bg: #ffffff;
      --bg-soft: #f4f8fc;
      --bg-dark: #071a2f;
      --text: #0f172a;
      --muted: #475569;
      --border: #d9e3ef;
      --success: #0f766e;
      --shadow: 0 16px 40px rgba(2, 32, 71, 0.10);
      --radius: 22px;
      --container: 1180px;
    }

    * { 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(--text);
      background: var(--bg);
      line-height: 1.55;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }

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

    .section {
      padding: 88px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(0, 183, 216, 0.10);
      color: var(--navy);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 6px rgba(0, 183, 216, 0.14);
    }

    h1, h2, h3, h4, p { margin: 0; }

    h1 {
      font-size: clamp(2.2rem, 4.6vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .section-intro {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-intro p,
    .hero-copy p,
    .card p,
    .split-copy p,
    .contact-copy p,
    .footer-copy {
      color: var(--muted);
      font-size: 1.04rem;
    }

    .pill-row,
    .hero-points,
    .mini-list,
    .trust-row,
    .metrics,
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .pill {
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #fff;
      font-size: 14px;
      font-weight: 600;
      color: #24476b;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(217, 227, 239, 0.9);
    }

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

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--navy), var(--cyan));
      box-shadow: 0 12px 24px rgba(0, 60, 120, 0.22);
      font-weight: 800;
    }

    .brand span em {
      color: var(--cyan);
      font-style: normal;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #274766;
      font-weight: 600;
      font-size: 15px;
    }

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

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: none;
      border-radius: 999px;
      padding: 14px 20px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.22s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
      color: #fff;
      box-shadow: 0 12px 26px rgba(0, 51, 102, 0.24);
    }

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

    .btn-secondary {
      background: #fff;
      color: var(--navy);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      border-color: #a8c0dc;
      background: #f8fbfe;
    }

    .btn-cyan {
      background: var(--cyan);
      color: #fff;
      box-shadow: 0 12px 26px rgba(0, 183, 216, 0.28);
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 15% 20%, rgba(0, 183, 216, 0.16), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(0, 51, 102, 0.12), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
      padding: 72px 0 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 42px;
      align-items: center;
    }

    .hero-copy p {
      margin-top: 22px;
      max-width: 760px;
      font-size: 1.1rem;
    }

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

    .hero-points {
      margin-top: 22px;
    }

    .hero-points .pill {
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(8px);
    }

    .hero-panel {
      background: linear-gradient(160deg, #08284b 0%, #0d3f72 52%, #0d5b93 100%);
      color: #fff;
      border-radius: 32px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: auto -30px -30px auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(123,230,247,0.4) 0%, rgba(123,230,247,0) 70%);
    }

    .panel-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      color: #d9f7ff;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .panel-stack {
      display: grid;
      gap: 14px;
    }

    .stack-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 22px;
      padding: 18px;
    }

    .stack-card strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .stack-card p {
      color: rgba(255,255,255,0.82);
      font-size: 0.96rem;
    }

    .metrics {
      margin-top: 18px;
    }

    .metric {
      flex: 1 1 150px;
      min-width: 140px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.10);
    }

    .metric strong {
      display: block;
      font-size: 1.4rem;
      letter-spacing: -0.03em;
      margin-bottom: 4px;
    }

    .band {
      background: linear-gradient(135deg, var(--navy), #02284f);
      color: #fff;
      padding: 18px 0;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,183,216,0.16), transparent 30%, transparent 70%, rgba(0,183,216,0.12));
      pointer-events: none;
    }

    .band .container {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 14px 26px;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 700;
    }

    .band-chip {
      color: #d7f8ff;
      font-size: 0.98rem;
    }

    .cards-3,
    .cards-4,
    .benefits-grid,
    .audience-grid,
    .steps-grid {
      display: grid;
      gap: 20px;
    }

    .cards-3,
    .benefits-grid,
    .audience-grid,
    .steps-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cards-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    }

    .card:hover {
      transform: translateY(-2px);
      transition: 0.22s ease;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    .icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(0,183,216,0.16), rgba(0,51,102,0.12));
      color: var(--navy);
      font-weight: 800;
      margin-bottom: 18px;
    }

    .card h3, .card h4 {
      font-size: 1.16rem;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

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

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
      align-items: start;
    }

    .split-copy {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .mini-list {
      margin-top: 24px;
    }

    .mini-item {
      padding: 14px 16px;
      border-radius: 16px;
      background: #f8fbfe;
      border: 1px solid #dbe7f1;
      font-size: 0.98rem;
      color: #23486b;
      font-weight: 600;
    }

    .showcase {
      display: grid;
      gap: 18px;
    }

    .carousel-shell {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(180deg, #0d2540, #082033);
      min-height: 420px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .carousel-track {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 420px;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.45s ease;
      display: grid;
      grid-template-rows: 1fr auto;
      background: linear-gradient(135deg, rgba(0, 51, 102, 0.92), rgba(0, 183, 216, 0.35));
    }

    .slide.active { opacity: 1; }

    .slide-media {
      position: relative;
      overflow: hidden;
      min-height: 320px;
    }

    .slide-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(4, 15, 27, 0.08) 0%, rgba(4, 15, 27, 0.54) 100%);
    }

    .slide-caption {
      padding: 22px 24px 24px;
      color: #fff;
      background: linear-gradient(180deg, rgba(7, 26, 47, 0.10), rgba(7, 26, 47, 0.84));
    }

    .slide-caption strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 6px;
    }

    .slide-caption span {
      display: block;
      color: rgba(255,255,255,0.85);
      font-size: 0.96rem;
    }

    .carousel-controls {
      position: absolute;
      inset: auto 18px 18px auto;
      display: flex;
      gap: 10px;
      z-index: 4;
    }

    .carousel-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.24);
      background: rgba(255,255,255,0.12);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(8px);
    }

    .carousel-dots {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: #bfd1e4;
      cursor: pointer;
      padding: 0;
    }

    .carousel-dot.active { background: var(--cyan); }

    .trust {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      margin-top: 26px;
    }

    .trust-row {
      margin-top: 16px;
    }

    .trust-badge {
      padding: 12px 16px;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: #fff;
      font-weight: 700;
      color: #23486b;
    }

    .steps-grid .card {
      position: relative;
      padding-top: 62px;
    }

    .step-number {
      position: absolute;
      top: 22px;
      left: 24px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--navy);
      color: #fff;
      font-weight: 800;
      font-size: 14px;
    }

    .audience-card {
      background: linear-gradient(180deg, #fff, #f9fbff);
    }

    .highlight-box {
      margin-top: 20px;
      border: 1px solid #cceef5;
      background: linear-gradient(180deg, rgba(0,183,216,0.08), rgba(0,183,216,0.02));
      border-radius: 20px;
      padding: 20px;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-copy,
    .contact-card {
      border-radius: 30px;
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .contact-copy {
      background: linear-gradient(160deg, #071a2f, #0d3d69);
      color: #fff;
    }

    .contact-copy p,
    .contact-copy .pill {
      color: rgba(255,255,255,0.84);
    }

    .contact-copy .pill {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.12);
    }

    .contact-card {
      background: #fff;
      border: 1px solid var(--border);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      background: #fbfdff;
      border-radius: 16px;
      padding: 14px 16px;
      color: var(--text);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field:focus,
    textarea:focus {
      outline: none;
      border-color: #7cb9d8;
      box-shadow: 0 0 0 4px rgba(0, 183, 216, 0.10);
      background: #fff;
    }

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

    .form-note {
      font-size: 0.92rem;
      color: var(--muted);
      margin: 14px 0 18px;
    }

    .footer {
      padding: 28px 0 34px;
      border-top: 1px solid var(--border);
      background: #fff;
    }

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

    .footer-links a {
      color: #33577c;
      font-weight: 600;
    }

    .mobile-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--navy);
      font-size: 1.2rem;
    }

    .nav-mobile {
      display: none;
      padding-bottom: 16px;
      gap: 12px;
      flex-direction: column;
    }

    .nav-mobile a {
      padding: 12px 14px;
      border-radius: 14px;
      background: #f7fbff;
      border: 1px solid var(--border);
      color: #23486b;
      font-weight: 600;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .split,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .cards-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .nav-links,
      .nav-actions .btn-secondary {
        display: none;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-mobile.open {
        display: flex;
      }

      .cards-3,
      .benefits-grid,
      .audience-grid,
      .steps-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 720px) {
      .section { padding: 68px 0; }
      .hero-panel,
      .split-copy,
      .contact-copy,
      .contact-card,
      .card {
        padding: 24px;
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .cards-4 {
        grid-template-columns: 1fr;
      }
      .brand { font-size: 1.15rem; }
      .carousel-shell,
      .carousel-track,
      .slide-media {
        min-height: 340px;
      }
    }
