@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #102d3e;
  --muted: #577080;
  --navy: #073b5c;
  --blue: #087ca7;
  --aqua: #29c5c8;
  --pale: #e8f7f5;
  --line: #d9e8eb;
  --paper: #fbfdfc;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 20; padding: .7rem 1rem; background: var(--navy); color: white; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.site-header {
  height: 76px;
  padding: 0 clamp(1.25rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 253, 252, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: Manrope, sans-serif; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--navy); transform: rotate(-5deg); }
.brand-mark span { width: 13px; height: 18px; border: 3px solid var(--aqua); border-top: 0; border-radius: 0 0 8px 8px; position: relative; }
.brand-mark span::after { content: ""; position: absolute; width: 3px; height: 6px; left: 2px; bottom: -8px; background: var(--aqua); }
.header-nav { display: flex; align-items: center; gap: 1.2rem; }
.header-nav a { color: var(--navy); font-weight: 700; text-underline-offset: 4px; }
.header-button { padding: .55rem .9rem; color: white !important; background: var(--navy); border-radius: .55rem; text-decoration: none; }
.hero {
  min-height: 510px;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 8vw, 8.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
  position: relative;
}
.hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -190px; top: -250px; border: 90px solid rgba(41,197,200,.11); border-radius: 50%; }
.eyebrow { margin: 0 0 1rem; color: #7fe4df; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { margin-top: 0; font-family: Manrope, sans-serif; line-height: 1.12; letter-spacing: -.045em; }
h1 { max-width: 720px; margin-bottom: 1.4rem; font-size: clamp(2.9rem, 6vw, 5.7rem); }
.hero-summary { max-width: 650px; color: #d3e6eb; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.effective-date { display: flex; align-items: center; gap: .55rem; margin-top: 2rem; color: #b7d4dc; font-size: .9rem; }
.effective-date span { width: 8px; height: 8px; background: var(--aqua); border-radius: 50%; box-shadow: 0 0 0 5px rgba(41,197,200,.13); }
.hero-card { z-index: 1; padding: 2.2rem; color: var(--navy); background: var(--pale); border-radius: 1.5rem; box-shadow: 0 25px 80px rgba(0,0,0,.22); transform: rotate(1.5deg); }
.hero-card p { font-family: Manrope, sans-serif; font-size: 1.2rem; font-weight: 800; line-height: 1.35; }
.hero-card ul { padding: 0; list-style: none; color: #345866; font-size: .92rem; }
.hero-card li { padding: .72rem 0 .72rem 1.7rem; border-top: 1px solid #cce3df; position: relative; }
.hero-card li::before { content: "✓"; position: absolute; left: 0; color: #008a8e; font-weight: 800; }
.shield { width: 50px; height: 57px; display: grid; place-items: center; background: var(--navy); border-radius: 25px 25px 30px 30px; }
.shield span { width: 18px; height: 10px; border: 3px solid var(--aqua); border-top: 0; transform: rotate(-45deg); }
.policy-layout { max-width: 1180px; margin: 0 auto; padding: 6rem clamp(1.25rem, 5vw, 4rem); display: grid; grid-template-columns: 220px minmax(0, 720px); justify-content: space-between; gap: 5rem; }
.contents { align-self: start; position: sticky; top: 2rem; }
.contents p { margin: 0 0 1rem; font-family: Manrope, sans-serif; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contents ol { margin: 0; padding: 0; list-style: none; border-left: 1px solid var(--line); }
.contents a { display: block; padding: .34rem 0 .34rem 1.2rem; color: var(--muted); font-size: .88rem; text-decoration: none; }
.contents a:hover, .contents a:focus { color: var(--blue); }
.policy section { padding: 0 0 4.5rem; scroll-margin-top: 2rem; }
.section-number { margin: 0 0 .45rem; color: var(--blue); font-family: Manrope, sans-serif; font-size: .76rem; font-weight: 800; letter-spacing: .13em; }
h2 { margin-bottom: 1rem; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.policy section > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }
.policy strong { color: var(--ink); }
.note { margin-top: 1.5rem; padding: 1.1rem 1.3rem; color: #225461; background: var(--pale); border-left: 4px solid var(--aqua); border-radius: 0 .65rem .65rem 0; }
.contact-card { padding: 2.5rem !important; background: var(--navy); border-radius: 1.2rem; color: white; }
.contact-card .section-number { color: #7fe4df; }
.contact-card > p:last-child { color: #d3e6eb !important; }
footer { max-width: 1180px; margin: 0 auto; padding: 2rem clamp(1.25rem, 5vw, 4rem) 3rem; display: flex; justify-content: space-between; color: var(--muted); border-top: 1px solid var(--line); font-size: .88rem; }
footer a { font-weight: 700; text-underline-offset: 4px; }
.footer-links { display: flex; gap: 1.5rem; }

.simple-hero { min-height: 340px; padding-block: clamp(4rem, 8vw, 7rem); grid-template-columns: minmax(0, 760px); }
.simple-hero h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.request-layout { max-width: 1080px; margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.request-info h2, .request-form h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
.request-info > p { color: var(--muted); }
.steps { margin: 2rem 0 0; padding: 0; list-style: none; counter-reset: request-step; }
.steps li { position: relative; margin-bottom: 1.5rem; padding-left: 3.1rem; color: var(--muted); counter-increment: request-step; }
.steps li::before { content: counter(request-step); position: absolute; left: 0; top: -.1rem; width: 2rem; height: 2rem; display: grid; place-items: center; color: var(--navy); background: var(--pale); border-radius: 50%; font-family: Manrope, sans-serif; font-size: .8rem; font-weight: 800; }
.steps strong { display: block; margin-bottom: .1rem; color: var(--ink); }
.request-form { padding: clamp(1.5rem, 4vw, 2.5rem); background: white; border: 1px solid var(--line); border-radius: 1.25rem; box-shadow: 0 18px 50px rgba(7,59,92,.08); }
.request-form > p { margin-top: -.35rem; color: var(--muted); }
.field { margin-top: 1.3rem; }
.field label { display: block; margin-bottom: .4rem; font-size: .9rem; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: .85rem 1rem; color: var(--ink); background: var(--paper); border: 1px solid #bfd2d8; border-radius: .6rem; font: inherit; line-height: 1.4; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(41,197,200,.25); border-color: var(--blue); }
.field-hint { margin: .35rem 0 0; color: var(--muted); font-size: .8rem; }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; margin-top: 1.5rem; }
.checkbox-field input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; accent-color: var(--blue); }
.checkbox-field label { font-size: .88rem; line-height: 1.5; }
.submit-button { width: 100%; margin-top: 1.5rem; padding: .9rem 1.2rem; color: white; background: var(--navy); border: 0; border-radius: .65rem; font: 700 1rem "DM Sans", sans-serif; cursor: pointer; }
.submit-button:hover { background: #0a527b; }
.submit-button:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.privacy-note { margin-top: 1.2rem !important; font-size: .8rem; line-height: 1.5; }
.success-wrap { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 2rem 1.25rem; background: var(--navy); }
.success-card { max-width: 620px; padding: clamp(2rem, 6vw, 4rem); text-align: center; background: var(--paper); border-radius: 1.5rem; box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.success-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 1.5rem; color: var(--navy); background: var(--pale); border-radius: 50%; font-size: 1.8rem; font-weight: 800; }
.success-card h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
.success-card p { color: var(--muted); }
.text-link { display: inline-block; margin-top: 1rem; color: var(--navy); font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 780px) {
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-card { max-width: 440px; transform: none; }
  .policy-layout { grid-template-columns: 1fr; padding-top: 4rem; }
  .contents { position: static; }
  .contents ol { columns: 2; }
  .request-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .site-header { height: 66px; }
  .hero { padding-bottom: 4rem; }
  .contents ol { columns: 1; }
  .contact-card { padding: 1.5rem !important; }
  footer { gap: 1rem; flex-direction: column; }
  .header-nav > a:first-child { display: none; }
  .footer-links { flex-direction: column; gap: .5rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print {
  .site-header, .contents, footer { display: none; }
  .hero { min-height: auto; padding: 2rem 0; color: var(--ink); background: white; }
  .hero-card { box-shadow: none; border: 1px solid var(--line); }
  .hero-summary, .effective-date { color: var(--muted); }
  .policy-layout { display: block; padding: 2rem 0; }
  .policy section { break-inside: avoid; padding-bottom: 2rem; }
  .contact-card { color: var(--ink); background: white; border: 1px solid var(--line); }
  .contact-card > p:last-child { color: var(--muted) !important; }
}
