:root { --navy: #0e1b2c; --navy-light: #16273f; --accent: #185FA5; --accent-dark: #0C447C; --ink: #1a2433; --gray: #5b6b7f; --line: #e3e9f1; --bg: #ffffff; --bg-soft: #f5f8fc; }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
  .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { color: var(--gray); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .15s; }
  .nav-links a:hover { color: var(--navy); }
  .dropdown { position: relative; }
  .dropdown-menu { display: none; position: absolute; top: 100%; left: -10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px; min-width: 300px; box-shadow: 0 12px 32px rgba(14,27,44,.12); }
  .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
  .dropdown-menu a { display: block; padding: 9px 12px; border-radius: 7px; white-space: nowrap; }
  .dropdown-menu a:hover { background: var(--bg-soft); color: var(--navy); }
  .btn { display: inline-block; padding: 11px 24px; border-radius: 8px; background: var(--accent); color: #fff !important; font-weight: 600; font-size: .92rem; text-decoration: none; transition: background .15s; }
  .btn:hover { background: var(--accent-dark); }
  .page-hero { background: var(--navy); text-align: center; padding: 90px 0 80px; }
  .page-hero .label { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #85B7EB; margin-bottom: 18px; padding: 6px 14px; border: 1px solid #33507a; border-radius: 100px; background: var(--navy-light); }
  .page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); color: #fff; font-weight: 800; letter-spacing: -.02em; line-height: 1.18; max-width: 820px; margin: 0 auto 18px; }
  .page-hero p { color: #a9b8cc; font-size: 1.1rem; max-width: 680px; margin: 0 auto 32px; }
  section { padding: 80px 0; }
  .section-label { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
  .section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 750; color: var(--navy); letter-spacing: -.015em; margin-bottom: 16px; }
  .prose p { color: var(--gray); font-size: 1.02rem; max-width: 780px; margin-bottom: 16px; }
  .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 40px; }
  .card { border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; background: #fff; }
  .card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; line-height: 1.3; }
  @media (min-width: 640px) { .card h3 { min-height: 2.6em; display: flex; align-items: flex-start; } }
  .card p { font-size: .93rem; color: var(--gray); }
  .alt { background: var(--bg-soft); }
  .deliv { list-style: none; margin-top: 32px; max-width: 780px; }
  .deliv li { padding: 14px 0 14px 38px; border-bottom: 1px solid var(--line); color: var(--gray); position: relative; font-size: 1rem; }
  .deliv li strong { color: var(--navy); }
  .deliv li::before { content: ""; position: absolute; left: 0; top: 19px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-soft); border: 1.5px solid var(--accent); }
  .deliv li::after { content: ""; position: absolute; left: 6px; top: 24px; width: 8px; height: 5px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
  .cta-band { background: var(--navy); text-align: center; }
  .cta-band h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 750; margin-bottom: 12px; }
  .cta-band p { color: #a9b8cc; max-width: 560px; margin: 0 auto 28px; }

  .page-hero h1.hero-wide { max-width: none; }
