:root {
  --navy: #08275f;
  --navy-dark: #041a42;
  --coral: #ff6335;
  --cream: #fffaf5;
  --ink: #15223a;
  --muted: #5b6679;
  --line: #dfe4ec;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--navy); }

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(8, 39, 95, .1);
  background: rgba(255, 250, 245, .92);
  backdrop-filter: blur(12px);
}

nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 850; font-size: 1.2rem; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 650; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 8px 24px rgba(255, 99, 53, .22);
  font-weight: 800;
  text-decoration: none;
}

.hero { padding: 96px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 64px; }
.eyebrow { color: var(--coral); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
h1 { margin: 12px 0 20px; color: var(--navy-dark); font-size: clamp(3rem, 7vw, 5.8rem); line-height: .96; letter-spacing: -.06em; }
.lede { max-width: 650px; margin: 0 0 28px; color: var(--muted); font-size: 1.22rem; }
.hero-mark { width: 100%; border-radius: 32px; filter: drop-shadow(0 28px 28px rgba(8, 39, 95, .18)); }

.section { padding: 72px 0; }
.section.alt { background: var(--white); border-block: 1px solid var(--line); }
h2 { margin: 0 0 12px; color: var(--navy-dark); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.04em; }
.section-intro { max-width: 660px; margin: 0 0 34px; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.card strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.1rem; }
.price { margin: 10px 0; color: var(--navy-dark); font-size: 2rem; font-weight: 900; }
.fine { color: var(--muted); font-size: .92rem; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { counter-increment: step; }
.step::before { content: counter(step); display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 14px; border-radius: 50%; color: white; background: var(--navy); font-weight: 850; }

.content { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 96px; }
.content h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.content h2 { margin-top: 40px; font-size: 1.65rem; letter-spacing: -.02em; }
.notice { padding: 16px 18px; border-left: 4px solid var(--coral); background: white; }

footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 58px; }
  .hero-grid, .cards, .steps { grid-template-columns: 1fr; }
  .hero-mark { max-width: 420px; margin: 0 auto; }
}

