/* =============================================================
   Las Vegas Bin Rental — shared styles
   Brand: off-black + royal blue on white. Clean, local, modern.
   ============================================================= */

:root {
  --ink: #0d0e12;
  --ink-soft: #3a3e49;
  --ink-mute: #6b7080;
  --royal: #1c40e0;
  --royal-deep: #1330ab;
  --royal-bright: #2f57ff;
  --tint: #eef1ff;
  --tint-2: #f6f7fb;
  --line: #e6e8f0;
  --line-strong: #d3d7e4;
  --white: #ffffff;
  --star: #1c40e0;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(13, 14, 18, .06), 0 4px 14px rgba(13, 14, 18, .05);
  --shadow-md: 0 10px 30px rgba(13, 14, 18, .09);
  --shadow-blue: 0 12px 30px rgba(28, 64, 224, .28);

  --maxw: 1140px;
  --gut: clamp(18px, 5vw, 40px);

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--royal); text-decoration: none; }
a:hover { color: var(--royal-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.6rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

section { position: relative; }

.section { padding-block: clamp(56px, 9vw, 110px); }
.section--tint { background: var(--tint-2); }
.section--ink { background: var(--ink); color: #f2f3f7; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

/* ---- Eyebrow / section heads ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--royal);
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--royal);
  display: inline-block;
}
.section--ink .eyebrow { color: #8fa2ff; }
.section--ink .eyebrow::before { background: #8fa2ff; }

.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 0; }
.section--ink .section-head p { color: #c4c8d6; }

.lead { font-size: 1.16rem; color: var(--ink-soft); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.1em; height: 1.1em; }

.btn-primary { background: var(--royal); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--royal-bright); color: #fff; transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-2px); }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

.btn-ghost-light { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color:#fff; }

.btn-lg { padding: 17px 32px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* =============================================================
   Header / nav
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand .brand-name span { display:block; font-size:.68rem; font-weight:600; letter-spacing:.04em; color: var(--ink-mute); text-transform: uppercase; margin-top:3px; }

.nav-links { display: none; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .98rem;
  padding: 9px 13px;
  border-radius: 8px;
}
.nav-links a:hover { color: var(--ink); background: var(--tint); }
.nav-links a.active { color: var(--royal); }

.nav-cta { display: none; align-items: center; gap: 10px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0 12px;
}
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 10px var(--gut) 22px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 6px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.active { color: var(--royal); }
.mobile-menu .btn { margin-top: 16px; }

@media (min-width: 940px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* =============================================================
   Hero
   ============================================================= */
.hero { overflow: hidden; position: relative; background: linear-gradient(180deg, #fff 0%, var(--tint-2) 100%); }
.hero::before {
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(var(--line-strong) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 20%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 70% 20%, #000, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero-grid {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(44px, 7vw, 90px);
}
.hero-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--line-strong);
  padding:7px 14px 7px 10px; border-radius:999px;
  font-weight:700; font-size:.82rem; color: var(--ink-soft);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-pill b { color: var(--royal); }
.hero-pill .dot { width:8px; height:8px; border-radius:50%; background:#1fb673; box-shadow:0 0 0 4px rgba(31,182,115,.18); }

.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--royal); }
.hero-sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 36ch; margin-bottom: 18px; }
.hero-tag {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -.01em;
  font-size: 1.05rem; color: var(--ink); margin-bottom: 28px;
}
.hero-tag span { color: var(--royal); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 20px; font-size: .92rem; color: var(--ink-mute); display:flex; align-items:center; gap:8px; }
.hero-note svg { color: var(--royal); flex:none; }

.hero-art { position: relative; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

/* clarifier strip below hero */
.clarifier {
  background: var(--ink);
  color: #cdd2e2;
  font-size: .95rem;
  text-align: center;
  padding: 13px var(--gut);
}
.clarifier b { color: #fff; }

/* =============================================================
   Step cards (how it works)
   ============================================================= */
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 620px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .steps.steps-4 { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.step .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--tint); color: var(--royal);
  margin-bottom: 16px;
}
.step .step-ico { color: var(--royal); margin-bottom: 14px; }
.step h3 { margin-bottom: 6px; font-size: 1.12rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* numbered list variant (how it works page) */
.flow { display: grid; gap: 16px; counter-reset: flow; max-width: 760px; }
.flow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.flow-item .n {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--ink); color: #fff; display: grid; place-items: center;
}
.flow-item:nth-child(odd) .n { background: var(--royal); }
.flow-item h3 { margin-bottom: 4px; }
.flow-item p { margin: 0; color: var(--ink-soft); }

/* =============================================================
   Feature / benefit list
   ============================================================= */
.benefits-grid { display: grid; gap: clamp(28px,4vw,52px); align-items: center; }
@media (min-width: 880px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.04rem; }
.check-list .ck {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--tint); color: var(--royal);
  display: grid; place-items: center; margin-top: 2px;
}
.check-list .ck svg { width: 15px; height: 15px; }

.benefit-callout {
  margin-top: 26px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.15rem; color: var(--ink);
}
.benefit-callout span { color: var(--royal); }

/* =============================================================
   Pricing cards
   ============================================================= */
.price-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--royal); box-shadow: 0 0 0 1px var(--royal), var(--shadow-md); }
.price-tag-pop {
  align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: var(--royal);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.price-card h3 { font-size: 1.18rem; margin-bottom: 2px; }
.price-card .qty { color: var(--royal); font-weight: 700; font-size: .96rem; margin-bottom: 14px; }
.price-card .price {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em;
  font-size: 2.8rem; line-height: 1; color: var(--ink);
}
.price-card .price small { font-size: .9rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0; }
.price-card .term { font-size: .86rem; color: var(--ink-mute); font-weight: 600; margin: 6px 0 16px; }
.price-card .best { color: var(--ink-soft); font-size: .95rem; flex: 1; margin-bottom: 20px; }
.price-card .btn { margin-top: auto; }

.addons {
  margin-top: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
}
.addons h3 { margin-bottom: 18px; }
.addon-rows { display: grid; gap: 0; }
.addon-row {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px dashed var(--line-strong);
}
.addon-row:last-child { border-bottom: none; }
.addon-row .label { color: var(--ink-soft); }
.addon-row .val { font-family: var(--font-display); font-weight: 800; color: var(--ink); white-space: nowrap; }

.pricing-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--tint); border: 1px solid #d7deff;
  border-radius: var(--radius); padding: 18px 20px; margin-top: 22px;
  font-size: .98rem; color: var(--ink-soft);
}
.pricing-note svg { color: var(--royal); flex: none; margin-top: 2px; }

/* =============================================================
   Service area
   ============================================================= */
.zone-cols { display: grid; gap: 22px; }
@media (min-width: 820px) { .zone-cols { grid-template-columns: 1fr 1fr; } }
.zone-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.zone-card.free { border-color: var(--royal); box-shadow: 0 0 0 1px rgba(28,64,224,.18); }
.zone-card h3 { display:flex; align-items:center; gap:10px; }
.zone-card .badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.badge-free { background: var(--royal); color: #fff; }
.badge-quote { background: var(--ink); color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.chip {
  font-weight: 700; font-size: .9rem;
  background: var(--tint-2); border: 1px solid var(--line);
  color: var(--ink-soft); padding: 8px 13px; border-radius: 999px;
}
.zone-card.free .chip { background: var(--tint); border-color: #d7deff; color: var(--royal-deep); }

/* =============================================================
   "Great for" grid
   ============================================================= */
.use-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .use-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .use-grid { grid-template-columns: repeat(5, 1fr); } }
.use-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 16px; text-align: center;
  transition: transform .16s, border-color .2s, box-shadow .2s;
}
.use-card:hover { transform: translateY(-3px); border-color: var(--royal); box-shadow: var(--shadow-sm); }
.use-card .ico { color: var(--royal); margin: 0 auto 12px; }
.use-card span { font-weight: 700; font-size: .95rem; color: var(--ink); }

/* =============================================================
   Trust / badges
   ============================================================= */
.trust-grid { display: grid; gap: 20px; align-items: center; }
@media (min-width: 880px) { .trust-grid { grid-template-columns: .9fr 1.1fr; } }
.trust-badges { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.trust-badge {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 18px;
  display: flex; gap: 12px; align-items: center;
}
.trust-badge .ico { color: #8fa2ff; flex: none; }
.trust-badge b { display: block; color: #fff; font-family: var(--font-display); }

/* reviews placeholder */
.reviews { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 740px) { .reviews { grid-template-columns: repeat(3,1fr); } }
.review-card {
  background:#fff; border: 1px dashed var(--line-strong); border-radius: var(--radius);
  padding: 24px;
}
.stars { display:flex; gap:3px; color:#f5a623; margin-bottom: 12px; }
.review-card p { color: var(--ink-soft); font-style: italic; }
.review-card .who { font-weight: 700; color: var(--ink); font-style: normal; margin-top: 10px; }
.reviews-note { text-align:center; color: var(--ink-mute); margin-top: 22px; font-size: .92rem; }

/* =============================================================
   CTA band
   ============================================================= */
.cta-band {
  background: radial-gradient(120% 140% at 80% 0%, var(--royal-bright) 0%, var(--royal) 40%, var(--royal-deep) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(38px, 6vw, 70px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 22px 22px; opacity:.5;
  -webkit-mask-image: radial-gradient(ellipse at 50% -10%, #000, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% -10%, #000, transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin-inline: auto; font-size: 1.1rem; }
.cta-band .btn { margin-top: 22px; }
.cta-band .btn-primary { background: #fff; color: var(--royal-deep); box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.cta-band .btn-primary:hover { background:#fff; color: var(--ink); }

/* =============================================================
   FAQ accordion
   ============================================================= */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background:#fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
  padding: 20px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-q .pm { flex:none; width: 24px; height: 24px; position: relative; transition: transform .25s; }
.faq-q .pm::before, .faq-q .pm::after {
  content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  background: var(--royal); border-radius: 2px;
}
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform .25s; }
.faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-soft); }

/* =============================================================
   Forms
   ============================================================= */
.form-layout { display: grid; gap: clamp(28px, 4vw, 48px); }
@media (min-width: 900px) { .form-layout { grid-template-columns: 1.25fr .75fr; align-items: start; } }

.booking-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-sm);
}
.field-grid { display: grid; gap: 18px; }
@media (min-width: 560px) { .field-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.field .req { color: var(--royal); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(28,64,224,.15);
}
.field-hint { font-size: .82rem; color: var(--ink-mute); }
fieldset { border: 0; padding: 0; margin: 0; }
fieldset legend { font-weight: 700; font-size: .92rem; color: var(--ink); padding: 0; margin-bottom: 10px; }
.opt-row { display: flex; flex-wrap: wrap; gap: 10px; }
.opt {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 9px 15px;
  font-weight: 600; font-size: .94rem; cursor: pointer; color: var(--ink-soft);
}
.opt input { accent-color: var(--royal); width: 16px; height: 16px; }
.opt:hover { border-color: var(--royal); }
.form-foot { margin-top: 8px; }
.form-foot .fineprint { font-size: .85rem; color: var(--ink-mute); margin-top: 14px; }

.contact-aside { display: grid; gap: 18px; }
.aside-card {
  background: var(--tint-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.aside-card.blue { background: var(--ink); color: #d7dcec; }
.aside-card.blue h3 { color:#fff; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.aside-card p { font-size: .96rem; color: var(--ink-soft); margin-bottom: 0; }
.aside-card.blue p { color:#c4c8d6; }
.contact-line { display:flex; gap:12px; align-items:center; padding: 10px 0; font-weight: 700; }
.contact-line svg { color: var(--royal); flex:none; }
.aside-card.blue .contact-line svg { color:#8fa2ff; }
.aside-card.blue .contact-line a { color:#fff; }

/* =============================================================
   Terms / prose
   ============================================================= */
.prose { max-width: 820px; }
.prose h2 { margin-top: 2em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .55em; color: var(--ink-soft); }
.prose li strong { color: var(--ink); }
.notice {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--tint); border: 1px solid #d7deff; border-left: 4px solid var(--royal);
  border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 28px;
}
.notice svg { color: var(--royal); flex: none; margin-top: 2px; }
.notice p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.fee-table {
  width: 100%; border-collapse: collapse; margin: 14px 0 6px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.fee-table th, .fee-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.fee-table th { background: var(--tint-2); font-family: var(--font-display); font-size: .9rem; }
.fee-table td:last-child { font-weight: 700; white-space: nowrap; }
.fee-table tr:last-child td { border-bottom: 0; }

/* =============================================================
   Page hero (inner pages)
   ============================================================= */
.page-hero { background: var(--tint-2); border-bottom: 1px solid var(--line); padding-block: clamp(44px, 7vw, 80px); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: .35em; }
.page-hero p { font-size: 1.14rem; color: var(--ink-soft); max-width: 64ch; margin-bottom: 0; }
.breadcrumbs { font-size: .85rem; color: var(--ink-mute); margin-bottom: 16px; }
.breadcrumbs a { color: var(--ink-mute); font-weight: 600; }
.breadcrumbs a:hover { color: var(--royal); }

/* SEO content blocks (service areas) */
.seo-blocks { display: grid; gap: 18px; }
@media (min-width: 760px) { .seo-blocks { grid-template-columns: 1fr 1fr; } }
.seo-block { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.seo-block h3 { color: var(--ink); margin-bottom: 8px; }
.seo-block p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* =============================================================
   Footer
   ============================================================= */
.site-footer { background: var(--ink); color: #aeb4c6; padding-block: clamp(46px, 6vw, 70px) 0; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand img { height: 54px; margin-bottom: 16px; filter: drop-shadow(0 0 0 transparent); }
.footer-brand .logo-light { background:#fff; display:inline-block; padding:10px 12px; border-radius:14px; }
.footer-brand p { color: #aeb4c6; max-width: 38ch; font-size: .96rem; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #aeb4c6; font-weight: 600; }
.footer-col a:hover { color: #fff; }
.footer-contact div { display:flex; gap:10px; align-items:center; margin-bottom:12px; font-size:.95rem; }
.footer-contact svg { color:#8fa2ff; flex:none; }
.footer-bottom {
  margin-top: clamp(36px,5vw,54px); border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .85rem; color: #7e859a;
}
.footer-bottom a { color: #7e859a; }
.footer-bottom a:hover { color:#fff; }

/* =============================================================
   Sticky mobile CTA
   ============================================================= */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 10px; padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(13,14,18,.08);
}
.mobile-cta .btn { flex: 1; padding: 14px; }
.mobile-cta .btn-text { flex: none; width: 54px; }
@media (min-width: 940px) { .mobile-cta { display: none; } }
body { padding-bottom: 84px; }
@media (min-width: 940px) { body { padding-bottom: 0; } }

/* utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.hide { display: none; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* fade-in on load for hero */
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.rise { animation: riseIn .6s cubic-bezier(.2,.7,.2,1) both; }
.rise-1 { animation-delay: .05s; }
.rise-2 { animation-delay: .14s; }
.rise-3 { animation-delay: .23s; }
.rise-4 { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .rise { animation: none; }
  html { scroll-behavior: auto; }
}
