/* SnowServ marketing site — navy/frost brand, Inter type. */
:root {
  --navy: #0D1B2A;
  --navy-mid: #1A3A5C;
  --ice: #1565C0;
  --ice-light: #4A90D9;
  --frost: #F0F6FF;
  --glacier: #B8D4F0;
  --ink: #15242F;
  --ink-soft: #5A7184;
  --hairline: #E2ECF6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ice); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13,27,42,0.97); backdrop-filter: blur(8px);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 20px; letter-spacing: 0.3px; }
.brand svg { width: 24px; height: 24px; }
nav a { color: #cfe0f2; margin-left: 24px; font-weight: 500; font-size: 15px; }
nav a:hover { color: #fff; text-decoration: none; }

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 70% -10%, #1A3A5C 0%, var(--navy) 55%);
  color: #fff; padding: 84px 0 96px; position: relative; overflow: hidden;
}
.hero h1 { font-size: 48px; line-height: 1.1; font-weight: 800; letter-spacing: -1px; max-width: 720px; }
.hero p.sub { margin-top: 18px; font-size: 20px; color: #c3d6ea; max-width: 620px; }
.cta-row { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 14px; transition: transform .08s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--ice); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.snow-badge { position: absolute; opacity: .10; }

/* Sections */
section { padding: 72px 0; }
h2.center { text-align: center; font-size: 34px; font-weight: 800; letter-spacing: -0.5px; color: var(--navy); }
.lead { text-align: center; color: var(--ink-soft); max-width: 620px; margin: 12px auto 0; font-size: 17px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.card { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 28px; }
.card .num { width: 40px; height: 40px; border-radius: 12px; background: var(--frost); color: var(--ice);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.card h3 { margin-top: 16px; font-size: 19px; color: var(--navy); font-weight: 700; }
.card p { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.panel { border-radius: 20px; padding: 34px; }
.panel.frost { background: var(--frost); }
.panel.navy { background: var(--navy); color: #fff; }
.panel h3 { font-size: 22px; font-weight: 800; }
.panel ul { margin-top: 16px; list-style: none; }
.panel li { padding: 8px 0 8px 28px; position: relative; }
.panel li::before { content: "❄"; position: absolute; left: 0; color: var(--ice-light); }
.panel.navy li::before { color: var(--glacier); }
.section-frost { background: var(--frost); }

/* Footer */
footer { background: var(--navy); color: #b9c9da; padding: 48px 0 40px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
footer a { color: #cfe0f2; margin-right: 20px; font-size: 15px; }
footer .fine { width: 100%; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 13px; color: #7f94a8; }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 34px; color: var(--navy); font-weight: 800; }
.legal .updated { color: var(--ink-soft); margin: 8px 0 32px; }
.legal h2 { font-size: 20px; color: var(--navy); margin: 32px 0 10px; }
.legal p, .legal li { color: #33454f; font-size: 15.5px; }
.legal ul { margin: 8px 0 8px 22px; }
.legal li { margin: 6px 0; }
.legal a.back { display: inline-block; margin-bottom: 24px; font-weight: 600; }
.disc { background: var(--frost); border-left: 3px solid var(--glacier); padding: 14px 18px; border-radius: 8px; font-size: 14px; color: var(--ink-soft); margin-top: 28px; }

@media (max-width: 760px) {
  .hero h1 { font-size: 36px; }
  .steps, .two-col { grid-template-columns: 1fr; }
  nav { display: none; }
}
