/* ================================================================
   CIRILLO WEB STUDIO - shared styles
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #10151c;
  --ink-soft:   #1c2530;
  --paper:      #f8f7f4;
  --white:      #ffffff;
  --accent:     #e07b1c;
  --accent-dk:  #b8630f;
  --amber:      #f2a93b;
  --mid:        #5b6572;
  --line:       rgba(16,21,28,0.10);
  --line-dark:  rgba(255,255,255,0.12);
  --nav-h:      72px;
  --radius:     14px;
  --shadow:     0 10px 40px rgba(16,21,28,0.08);
  --shadow-lg:  0 24px 70px rgba(16,21,28,0.16);
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.12; }

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

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(248,247,244,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 200;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* The lockup is sized entirely in em so it stays proportional at any font-size.
   That's what lets the hero copy scale down onto the nav copy exactly. */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.44em;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.nav-logo em { font-style: normal; color: var(--accent); }
.brand-mark { width: 1.3em; height: 1.3em; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--mid);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  transition: background 0.15s;
}
.nav-links a.nav-cta:hover { background: var(--accent); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 2rem 1.25rem;
  z-index: 199;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

/* ── LAYOUT ──────────────────────────────────────────── */
main { padding-top: var(--nav-h); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 5.5rem 0; }
.section.tight { padding: 3.5rem 0; }
.section.dark { background: var(--ink); color: var(--white); }
.section.white { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.section.dark .kicker { color: #f0a860; }

.h-xl { font-size: clamp(2.4rem, 5.4vw, 4.2rem); letter-spacing: -0.02em; }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.015em; }
.h-md { font-size: 1.35rem; }

.lede {
  font-size: 1.12rem;
  color: var(--mid);
  max-width: 640px;
  margin-top: 1.25rem;
}
.section.dark .lede { color: #a7b2c2; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.section.dark .btn-ghost { border-color: var(--line-dark); color: var(--white); }
.section.dark .btn-ghost:hover { border-color: var(--white); }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2.2rem; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding: 6.5rem 0 5rem;
  position: relative;
}

/* Oversized brand lockup that opens the homepage. On scroll, site.js shrinks a
   fixed-position copy of it down onto the nav logo; this original then just
   reserves the space (see .brand-fly below). */
/* flex so the lockup shrinks to its content width instead of filling the row -
   the scroll math scales the nav copy by the ratio of the two lockup widths. */
.hero-brand { display: flex; margin-bottom: 2.6rem; }
.hero-brand .nav-logo {
  font-size: clamp(1.75rem, 6.5vw, 4.25rem);
  cursor: default;
}
.brand-fly {
  position: fixed;
  top: 0; left: 0;
  z-index: 210;
  transform-origin: left top;
  will-change: transform;
}
body.brand-fly-active .hero-brand .nav-logo { visibility: hidden; }
body.brand-fly-active nav .nav-logo { opacity: 0; pointer-events: none; }
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-stat .lab {
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

/* ── CARDS / GRIDS ───────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; color: var(--mid); }
.card .icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(224,123,28,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.section.dark .card { background: var(--ink-soft); border-color: var(--line-dark); }
.section.dark .card p { color: #a7b2c2; }

/* ── BROWSER MOCKUP FRAMES (portfolio previews) ──────── */
.browser {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease;
}
a.browser-link { text-decoration: none; display: block; }
a.browser-link:hover .browser { transform: translateY(-5px); }

.browser-bar {
  height: 34px;
  background: #eceae5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}
.browser-bar .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.r { background: #f87171; } .dot.y { background: #fbbf24; } .dot.g { background: #34d399; }
.browser-bar .url {
  flex: 1;
  margin-left: 8px;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.66rem;
  color: var(--mid);
  padding: 3px 10px;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
}
.browser-body { aspect-ratio: 16/10.5; position: relative; overflow: hidden; }

/* mini-render: Lauren Fabio */
.mock-lauren { background: #f5f0ea; height: 100%; display: flex; flex-direction: column; }
.mock-lauren .m-nav { height: 16%; background: #3b2314; display: flex; align-items: center; justify-content: center; }
.mock-lauren .m-nav span { font-family: 'Fraunces', serif; font-style: italic; color: #f5efe8; font-size: clamp(0.8rem, 1.6vw, 1.1rem); }
.mock-lauren .m-body { flex: 1; display: grid; grid-template-columns: 1fr 1fr; }
.mock-lauren .m-left {
  background: repeating-linear-gradient(90deg, #ede5d8 0 14px, #c8b89a 14px 22px);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 8%;
}
.mock-lauren .m-left b { font-family: 'Fraunces', serif; font-weight: 500; color: #3b2314; font-size: clamp(1rem, 2.4vw, 1.7rem); line-height: 1; }
.mock-lauren .m-left i { font-style: normal; font-size: clamp(0.4rem, 0.9vw, 0.55rem); letter-spacing: 0.3em; text-transform: uppercase; color: #5c3d2e; margin-top: 6px; }
.mock-lauren .m-right { background: linear-gradient(160deg, #d9d0c4 0%, #b8a992 100%); }

/* mini-render: Hott Carl's Ops */
.mock-hott { background: #14181d; height: 100%; display: flex; flex-direction: column; padding: 5%; gap: 5%; }
.mock-hott .m-head { display: flex; align-items: center; justify-content: space-between; }
.mock-hott .m-head b { color: #fff; font-size: clamp(0.65rem, 1.4vw, 0.9rem); font-weight: 700; }
.mock-hott .m-head span { background: #e2493b; color: #fff; font-size: clamp(0.4rem, 0.8vw, 0.55rem); font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.mock-hott .m-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4%; flex: 1; }
.mock-hott .m-tile { background: #1f262e; border-radius: 8px; padding: 8% 10%; display: flex; flex-direction: column; justify-content: center; }
.mock-hott .m-tile b { color: #fff; font-size: clamp(0.7rem, 1.6vw, 1.05rem); }
.mock-hott .m-tile span { color: #8b95a3; font-size: clamp(0.38rem, 0.8vw, 0.52rem); margin-top: 2px; }
.mock-hott .m-bars { display: flex; align-items: flex-end; gap: 3%; height: 34%; }
.mock-hott .m-bars i { flex: 1; background: linear-gradient(180deg, #e2493b, #a33227); border-radius: 3px 3px 0 0; }

/* mini-render: Lucky Lauren Kitchen */
.mock-lucky { background: #f2ece1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5%; text-align: center; }
.mock-lucky .l-logo { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; color: #4a3220; font-size: clamp(0.95rem, 2.2vw, 1.45rem); display: flex; align-items: center; gap: 8px; }
.mock-lucky .l-logo .clover { font-style: normal; font-size: 0.65em; }
.mock-lucky .l-sub { font-style: normal; letter-spacing: 0.32em; text-transform: uppercase; color: #8a6a4a; font-size: clamp(0.38rem, 0.8vw, 0.5rem); }
.mock-lucky .l-tag { font-size: clamp(0.4rem, 0.85vw, 0.52rem); color: #6b573f; margin-top: 4%; }

/* mini-render: Richard Fabio */
.mock-richard { background: linear-gradient(170deg, #2b323a 0%, #57626d 55%, #9aa4ac 100%); height: 100%; display: flex; flex-direction: column; }
.mock-richard .r-nav { height: 16%; display: flex; align-items: center; justify-content: space-between; padding: 0 8%; }
.mock-richard .r-nav b { font-family: 'Fraunces', serif; font-weight: 500; color: #fff; font-size: clamp(0.5rem, 1.1vw, 0.72rem); }
.mock-richard .r-nav i { display: flex; flex-direction: column; gap: 3px; }
.mock-richard .r-nav i span { width: 13px; height: 1.5px; background: #fff; opacity: 0.9; display: block; }
.mock-richard .r-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8%; padding: 0 8%; }
.mock-richard .r-eyebrow { font-style: normal; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-size: clamp(0.3rem, 0.62vw, 0.4rem); }
.mock-richard .r-body b { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: #fff; font-size: clamp(0.85rem, 2.05vw, 1.3rem); text-align: center; line-height: 1.22; }
.mock-richard .r-pills { display: flex; gap: 6%; }
.mock-richard .r-pills span { border-radius: 999px; padding: 6% 11%; font-size: clamp(0.36rem, 0.75vw, 0.47rem); letter-spacing: 0.04em; font-weight: 600; }
.mock-richard .r-pills span.solid { background: #f7f3ec; color: #23282d; }
.mock-richard .r-pills span.outline { border: 1px solid rgba(255,255,255,0.6); color: #fff; }

/* mini-render: VibeTrader */
.mock-vibe { background: #0b0d12; height: 100%; display: flex; }
.mock-vibe .v-side { width: 24%; background: #10131a; border-right: 1px solid #1c2129; display: flex; flex-direction: column; align-items: center; padding: 10% 0; gap: 14%; }
.mock-vibe .v-logo { width: 24%; aspect-ratio: 1; min-width: 14px; border-radius: 6px; background: linear-gradient(135deg, #4d7ef8, #7ea5f8); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 800; font-size: clamp(0.34rem, 0.75vw, 0.46rem); color: #0b0d12; }
.mock-vibe .v-nav { display: flex; flex-direction: column; gap: 16%; width: 55%; }
.mock-vibe .v-dot { height: 4px; border-radius: 2px; background: #262c38; display: block; }
.mock-vibe .v-dot.on { background: #4d7ef8; }
.mock-vibe .v-main { flex: 1; padding: 8% 7%; display: flex; flex-direction: column; gap: 8%; min-width: 0; }
.mock-vibe .v-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5%; }
.mock-vibe .v-tiles div { background: #171b22; border-radius: 6px; padding: 8% 6%; }
.mock-vibe .v-tiles b { display: block; color: #fff; font-size: clamp(0.46rem, 1vw, 0.65rem); }
.mock-vibe .v-tiles span { color: #6b7684; font-size: clamp(0.32rem, 0.66vw, 0.42rem); }
.mock-vibe .v-rows { display: flex; flex-direction: column; gap: 9%; flex: 1; justify-content: center; }
.mock-vibe .v-row { display: flex; align-items: center; gap: 5%; }
.mock-vibe .v-row .t { color: #cbd4e0; font-size: clamp(0.38rem, 0.85vw, 0.54rem); font-weight: 700; width: 18%; flex-shrink: 0; }
.mock-vibe .v-row .bar { flex: 1; height: 5px; border-radius: 3px; background: #1c2129; overflow: hidden; }
.mock-vibe .v-row .bar i { display: block; height: 100%; background: linear-gradient(90deg, #4d7ef8, #7ea5f8); border-radius: 3px; }
.mock-vibe .v-row .n { color: #7ea5f8; font-size: clamp(0.38rem, 0.85vw, 0.5rem); font-weight: 700; width: 11%; flex-shrink: 0; text-align: right; }

.work-meta { padding: 1.4rem 0.35rem 0; }
.work-meta h3 { font-size: 1.25rem; }
.work-meta .tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.65rem; }
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mid);
  background: rgba(16,21,28,0.05);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
}
.section.dark .tag { background: rgba(255,255,255,0.08); color: #a7b2c2; }
.work-meta p { font-size: 0.92rem; color: var(--mid); margin-top: 0.7rem; }
.section.dark .work-meta p { color: #a7b2c2; }
.section.dark .work-meta h3 { color: var(--white); }

/* ── PROCESS STEPS ───────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
}
.step .num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.86rem; color: var(--mid); }

/* ── PRICING ─────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
  position: relative;
}
.price-card .badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; }
.price-card .price {
  font-family: 'Fraunces', serif;
  font-size: 2.3rem;
  font-weight: 600;
  margin: 0.9rem 0 0.2rem;
}
.price-card .price small { font-size: 0.95rem; font-weight: 400; color: var(--mid); font-family: 'Inter', sans-serif; }
.price-card .sub { font-size: 0.84rem; color: var(--mid); margin-bottom: 1.4rem; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 1.6rem; }
.price-card li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.42rem 0 0.42rem 1.6rem;
  position: relative;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card .btn { justify-content: center; }

.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.addon {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.05rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
}
.addon b { font-weight: 600; }
.addon span { color: var(--accent); font-weight: 700; white-space: nowrap; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { max-width: 760px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); flex-shrink: 0; }
.faq details[open] summary::after { content: "-"; }
.faq details p { padding: 0 1.4rem 1.25rem; font-size: 0.9rem; color: var(--mid); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: start; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }

.contact-side .item { display: flex; gap: 1rem; margin-bottom: 1.6rem; align-items: flex-start; }
.contact-side .item .icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(224,123,28,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.contact-side .item b { display: block; font-size: 0.92rem; }
.contact-side .item span, .contact-side .item a { font-size: 0.88rem; color: var(--mid); text-decoration: none; }
.contact-side .item a:hover { color: var(--accent); }

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: 20px;
  padding: 3.8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  bottom: -260px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 480px;
  background: radial-gradient(ellipse, rgba(224,123,28,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band p { color: #a7b2c2; max-width: 520px; margin: 1rem auto 0; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: #8b95a3;
  padding: 3.5rem 0 2.5rem;
  margin-top: 5.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid .flogo {
  display: flex;
  align-items: center;
  gap: 0.44em;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.footer-grid .flogo em { font-style: normal; color: var(--accent); }
.footer-grid .flogo .brand-mark .mark-ink { stroke: var(--white); }
.footer-grid p { font-size: 0.85rem; margin-top: 0.8rem; max-width: 300px; }
.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a { font-size: 0.86rem; color: #8b95a3; text-decoration: none; transition: color 0.15s; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.78rem;
}

.footer-qr {
  margin-top: 1.4rem;
}
.footer-qr img {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  background: var(--paper);
  padding: 6px;
}
.footer-qr span {
  display: block;
  font-size: 0.68rem;
  color: #8b95a3;
  margin-top: 0.5rem;
}

/* ── PAGE HEADER (inner pages) ───────────────────────── */
.page-head { padding: 5rem 0 3.5rem; border-bottom: 1px solid var(--line); }

/* ── MISC ────────────────────────────────────────────── */
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(224,123,28,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  top: 0.62rem;
}
.section.dark .check-list li { color: #cbd4e0; }

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 3rem; }
.mt-2 { margin-top: 2rem; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-3, .grid-4, .steps, .price-grid, .addons { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4, .steps, .price-grid, .addons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3.5rem; }
  .section { padding: 3.75rem 0; }
  .hero-stats { gap: 1.75rem; }
  .cta-band { padding: 2.75rem 1.5rem; }
  .form-card { padding: 1.5rem; }
}
