/* ==========================================================================
   PREZ DIGITAL — Shared Stylesheet
   Design system: dark teal-charcoal base, warm cream contrast sections,
   honey-amber accent. Display type: Bricolage Grotesque. Body: Inter.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
svg { flex-shrink: 0; }
::selection { background: var(--teal); color: var(--ink); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0B0D0F;
  --bg-alt: #12171B;
  --surface: #171D21;
  --surface-2: #1D2428;
  --border: #262E32;

  --teal: #3FA7B8;
  --teal-light: #74C6D4;
  --teal-dark: #1B4E58;

  --cream: #F4EAD9;
  --cream-2: #EAE0C9;

  --ink: #14181A;
  --white: #FAFAF8;
  --muted: #9CA8AA;
  --muted-2: #6C7679;

  --amber: #E4B04E;
  --amber-light: #EDC57E;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-full: 999px;

  --shadow: 0 30px 60px -30px rgba(0,0,0,.6);
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
section { padding: 100px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-alt { background: var(--bg-alt); }
.section-cream { background: var(--cream); color: var(--ink); }
.section-cream p { color: var(--muted-2); }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-cream .kicker { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { color: var(--muted); }

.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--ink); }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); }
.btn:disabled, .btn:disabled:hover { opacity: .6; cursor: not-allowed; transform: none; }
.btn-outline { border: 1.5px solid var(--border); color: var(--white); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.section-cream .btn-outline { border-color: rgba(20,24,26,.2); color: var(--ink); }
.section-cream .btn-outline:hover { border-color: var(--teal-dark); color: var(--teal-dark); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 22px 0;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(11,13,15,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
.footer-brand .brand-logo { height: 34px; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a:not(.btn) { font-size: .95rem; font-weight: 500; color: var(--muted); transition: color .2s; position: relative; }
.nav-links a:not(.btn):hover, .nav-links a.active:not(.btn) { color: var(--white); }
.nav-links a.active:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--teal); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 26px; background: none;
}
.nav-toggle span { height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); z-index: 200;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
    background: var(--surface); flex-direction: column; justify-content: center;
    align-items: flex-start; gap: 30px; padding: 40px; border-left: 1px solid var(--border);
    transition: right .35s var(--ease); z-index: 250;
  }
  .nav-links.open { right: 0; }
  .nav-links a:not(.btn) { font-size: 1.15rem; }
  .nav-cta-mobile { display: inline-flex; margin-top: 6px; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero { padding-top: 172px; padding-bottom: 100px; position: relative; overflow: hidden; }
.hero--short { padding-top: 156px; padding-bottom: 76px; }
.hero-glow {
  position: absolute; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(63,167,184,.22), transparent 70%);
  top: -220px; right: -140px; filter: blur(30px); z-index: 0; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero--short .hero-grid { grid-template-columns: 1fr; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-content { max-width: 620px; }
.hero-content .lead { font-size: 1.12rem; max-width: 540px; margin: 22px 0 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Signature: drag-to-compare hero panel ---------- */
.compare-hero { width: 100%; max-width: 460px; margin-inline: auto; }
.ch-stage {
  position: relative; aspect-ratio: 1 / 1.05; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.ch-panel { position: absolute; inset: 0; padding: 30px; display: flex; flex-direction: column; }
.ch-before { background: var(--cream-2); }
.ch-after { background: var(--white); clip-path: inset(0 50% 0 0); }
.ch-tag {
  display: inline-block; align-self: flex-start; font-family: var(--font-display); font-weight: 700;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-full); background: rgba(20,24,26,.08); color: var(--muted-2);
  margin-bottom: 22px;
}
.ch-tag--accent { background: var(--teal); color: var(--ink); }
.ch-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--teal);
  transform: translateX(-50%); box-shadow: 0 0 0 5px rgba(63,167,184,.22); pointer-events: none; z-index: 3;
}

.ch-range {
  width: 100%; height: 6px; border-radius: var(--r-full); appearance: none; -webkit-appearance: none;
  background: var(--border); cursor: ew-resize; margin: 18px 0 10px;
}
.ch-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); border: 4px solid var(--bg); box-shadow: var(--shadow); cursor: ew-resize;
}
.ch-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: var(--teal); border: 4px solid var(--bg); cursor: ew-resize;
}
.ch-labels {
  display: flex; justify-content: space-between; font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
}
.ch-labels .mid { color: var(--teal); }

/* mock profile content shared by before/after panels */
.mock-avatar {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 16px;
}
.mock-avatar--empty { background: #E4DECF; border: 2px dashed #C9C2B0; }
.mock-avatar--filled { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); }
.mock-avatar--logo { object-fit: cover; background: var(--white); }
.mock-stats { display: flex; gap: 18px; margin-bottom: 14px; }
.mock-stats strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.mock-stats span { font-size: .68rem; color: var(--muted-2); }
.mock-bio { font-size: .66rem; line-height: 1.55; color: var(--muted-2); margin-bottom: 14px; }
.mock-bio strong { display: block; font-family: var(--font-display); font-size: .78rem; color: var(--ink); margin-bottom: 2px; }
.mock-bio--empty { font-style: italic; color: #A9A190; font-size: .82rem; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: auto; }
.mock-tile { aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mock-tile--empty { background: #EAE4D6; }
.mock-tile--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mock-tile span { font-family: var(--font-display); font-weight: 700; font-size: .58rem; letter-spacing: .04em; color: var(--white); text-align: center; padding: 4px; }

/* ---------- Card grid (pillars / values) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.info-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.info-card .icon-wrap {
  width: 50px; height: 50px; border-radius: 14px; background: rgba(63,167,184,.12);
  display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 20px;
}
.info-card h3 { margin-bottom: 10px; }
.info-card p { font-size: .92rem; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step .num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--teal);
  opacity: .45; margin-bottom: 10px; display: block;
}
.process-step h3 { margin-bottom: 8px; font-size: 1.08rem; }
.process-step p { font-size: .9rem; }

/* ---------- Pricing preview (home) ---------- */
.pricing-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 780px) { .pricing-preview { grid-template-columns: 1fr; } }
.preview-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 28px; text-align: center; transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.preview-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.preview-card h3 { margin-bottom: 6px; font-size: 1.02rem; }
.preview-card .amt {
  font-family: var(--font-display); font-weight: 700; color: var(--teal); font-size: 1.3rem;
  margin-bottom: 10px; display: block;
}
.preview-card p { font-size: .85rem; }
.preview-card--soon { position: relative; }
.preview-card--soon p { filter: blur(4px); user-select: none; }
.preview-soon-tag {
  display: inline-block; font-family: var(--font-display); font-size: .62rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink); background: var(--amber);
  padding: 4px 10px; border-radius: var(--r-full); margin-bottom: 10px;
}
.center-cta { text-align: center; }

/* ---------- About teaser (home) ---------- */
.about-teaser { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
@media (max-width: 780px) { .about-teaser { grid-template-columns: 1fr; } }
.about-teaser p { margin: 16px 0 28px; font-size: 1.02rem; }
.founder-mini-row { display: flex; gap: 20px; justify-content: center; }
.mini-avatar {
  width: 92px; height: 92px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink);
}
.mini-avatar.teal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.mini-avatar.amber { background: linear-gradient(135deg, var(--amber), var(--amber-light)); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--r-lg); padding: 64px 48px; text-align: center; color: var(--ink);
}
.cta-banner h2 { color: var(--ink); margin-bottom: 14px; }
.cta-banner p { color: rgba(20,24,26,.75); max-width: 480px; margin-inline: auto; margin-bottom: 30px; }
.cta-banner .btn-primary { background: var(--ink); color: var(--white); }
.cta-banner .btn-primary:hover { background: #000; }

/* ---------- Story (about page) ---------- */
.story-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story-text { max-width: 720px; }
.story-text p { color: var(--white); opacity: .82; font-size: 1.05rem; margin-bottom: 20px; }

/* ---------- About hero visual (brand mosaic) ---------- */
.hero--with-visual .hero-grid { grid-template-columns: 1fr .82fr; }
@media (max-width: 940px) { .hero--with-visual .hero-grid { grid-template-columns: 1fr; } }
.visual-mosaic { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 1; min-height: 340px; margin-inline: auto; }
@media (max-width: 940px) { .visual-mosaic { margin-top: 44px; max-width: 340px; } }
.vm-tile {
  position: absolute; border-radius: 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 18px;
}
.vm-tile span { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Story visual (stacked content cards) ---------- */
.visual-stack { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 860px) { .visual-stack { margin-top: 20px; height: 260px; } }
.vs-card {
  position: absolute; width: 190px; height: 230px; border-radius: 20px; box-shadow: var(--shadow);
  padding: 22px; display: flex; flex-direction: column; gap: 16px;
}
.vs-dot { width: 32px; height: 32px; border-radius: 50%; display: block; }
.vs-lines i { display: block; height: 8px; border-radius: 4px; background: rgba(20,24,26,.12); margin-bottom: 8px; }
.vs-lines i:nth-child(1) { width: 85%; }
.vs-lines i:nth-child(2) { width: 55%; }

/* ---------- Founders (about page) ---------- */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .founders { grid-template-columns: 1fr; } }
.founder-card { background: var(--white); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow); }
.founder-card p { color: var(--muted-2); }
.founder-avatar {
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); margin-bottom: 18px;
}
.founder-avatar.teal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.founder-avatar.amber { background: linear-gradient(135deg, var(--amber), var(--amber-light)); }
.founder-card h3 { color: var(--ink); margin-bottom: 4px; }
.founder-role { display: block; color: var(--teal-dark); font-size: .84rem; font-weight: 600; margin-bottom: 14px; }

/* ---------- Pricing grid (services page) ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 940px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 40px 30px; position: relative; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--teal); }
.price-card--featured { background: var(--surface-2); border-color: var(--teal); transform: scale(1.035); }
.price-card--featured:hover { transform: scale(1.035) translateY(-6px); }
@media (max-width: 940px) {
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
}

.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--ink); font-family: var(--font-display); font-weight: 700;
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding: 7px 18px;
  border-radius: var(--r-full); white-space: nowrap;
}
.price-badge--soon { background: var(--amber); }
.price-card--locked .price-tagline,
.price-card--locked .price-includes,
.price-card--locked .price-value-note,
.price-card--locked .price-features {
  filter: blur(5px); user-select: none; pointer-events: none;
}
.price-tier {
  display: block; font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px;
}
.price-card--featured .price-tier { color: var(--teal-light); }
.price-sale {
  display: inline-block; font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink); background: var(--amber);
  padding: 5px 12px; border-radius: var(--r-full); margin-bottom: 12px;
}
.price-includes { font-size: .85rem; font-weight: 600; color: var(--teal); margin: 26px 0 2px; }
.price-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.price-tagline { font-size: .89rem; margin-bottom: 24px; min-height: 42px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 26px; }
.price-amount .from { font-size: .84rem; color: var(--muted-2); }
.price-amount .was { font-size: 1.05rem; color: var(--muted-2); text-decoration: line-through; margin-right: 2px; }
.price-amount .num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--white); }
.price-amount .cur { font-size: .88rem; color: var(--muted); }
.price-value-note { font-size: .82rem; color: var(--muted); line-height: 1.45; margin: -14px 0 24px; }
.section-cream .price-amount .num { color: var(--ink); }

.price-features { display: flex; flex-direction: column; gap: 13px; margin: 28px 0 0; }
.price-features li { display: flex; gap: 10px; font-size: .9rem; color: var(--white); align-items: flex-start; }
.price-features svg { margin-top: 3px; color: var(--teal); }

/* ---------- 3D tier stack (services hero visual) ---------- */
.tier-stack { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; max-width: 360px; margin-inline: auto; padding-top: 10px; }
@media (max-width: 940px) { .tier-stack { margin-top: 44px; max-width: 320px; } }
.ts-block {
  display: flex; flex-direction: column; justify-content: center; cursor: default;
  border-radius: 16px; padding: 18px 26px;
  box-shadow: 0 9px 0 0 rgba(0,0,0,.32), 0 26px 40px -18px rgba(0,0,0,.55);
  transition: transform .3s var(--ease);
}
.ts-block:hover, .ts-block:focus-visible { transform: scale(1.045) translateY(-2px); outline: none; }
.ts-block--3 { width: 64%; background: linear-gradient(160deg, var(--amber-light), var(--amber) 55%); }
.ts-block--2 { width: 82%; background: linear-gradient(160deg, var(--teal-light), var(--teal) 55%); }
.ts-block--1 { width: 100%; background: linear-gradient(160deg, #FBF4E7, var(--cream-2) 55%); }
.ts-block--0 {
  width: 48%; background: transparent; border: 1.5px dashed rgba(250,250,248,.3); box-shadow: none;
}
.ts-block--0 .ts-block-main { justify-content: center; }
.ts-block--0 .ts-name { color: var(--white); font-size: .9rem; }
.ts-block--0 .ts-desc { color: rgba(250,250,248,.6); }
.ts-block--0:hover, .ts-block--0:focus-visible { border-color: var(--teal); }
.ts-block-main { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ts-label { font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); opacity: .6; }
.ts-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.ts-desc {
  display: block; max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: rgba(20,24,26,.68);
  transition: max-height .35s var(--ease), opacity .3s var(--ease), margin-top .35s var(--ease);
}
.ts-block:hover .ts-desc, .ts-block:focus-visible .ts-desc { max-height: 40px; opacity: 1; margin-top: 8px; }

/* ---------- Revisions note ---------- */
.revisions-note {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: fit-content; max-width: 100%; margin: 0 auto 40px; padding: 12px 24px;
  background: rgba(63,167,184,.1); border: 1px solid rgba(63,167,184,.3); border-radius: var(--r-full);
  font-size: .9rem; font-weight: 500; color: var(--white); text-align: center; line-height: 1.4;
}
.revisions-note svg { flex-shrink: 0; color: var(--teal); }
.revisions-note strong { color: var(--teal-light); font-weight: 700; }

/* ---------- Website & domain callout ---------- */
.website-cta {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 48px;
  margin-top: 28px;
}
@media (max-width: 780px) { .website-cta { grid-template-columns: 1fr; } }
.website-cta-price { text-align: center; padding: 30px; background: var(--surface-2); border-radius: var(--r-md); }
.website-cta-note { font-size: .82rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }


/* ---------- Add-ons ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.addon { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; text-align: center; }
.addon h3 { font-size: .94rem; margin-bottom: 8px; }
.addon span { color: var(--teal); font-family: var(--font-display); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; text-align: left; font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; color: var(--white);
}
.faq-question .icon { flex-shrink: 0; transition: transform .3s var(--ease); color: var(--teal); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding: 0 26px 22px; font-size: .93rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 16px; color: var(--white); transition: border-color .2s;
}
.field select option { background: var(--surface-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-form { margin-top: 4px; }
.contact-form .btn { margin-top: 28px; }

/* ---------- Overlapping icon graphic (contact hero) ---------- */
.contact-icons { position: relative; height: 96px; width: 190px; margin-bottom: 8px; }
.ci-badge {
  position: absolute; width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.ci-badge--1 { background: var(--teal); color: var(--ink); left: 0; top: 12px; transform: rotate(-8deg); z-index: 3; }
.ci-badge--2 { background: var(--amber); color: var(--ink); left: 58px; top: -4px; transform: rotate(7deg); z-index: 2; }
.ci-badge--3 { background: var(--cream); color: var(--ink); left: 116px; top: 16px; transform: rotate(-5deg); z-index: 1; }

.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success.show { display: block; }
.form-success svg { color: var(--teal); margin-bottom: 16px; }
.form-success p { margin-top: 8px; }

.form-error { display: none; text-align: center; font-size: .88rem; color: #E2827E; margin-top: 16px; }
.form-error.show { display: block; }


.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 26px; }
.info-block h3 { font-size: 1rem; margin-bottom: 10px; }
.info-block p { font-size: .9rem; margin-bottom: 14px; }
.info-block .btn { font-size: .88rem; padding: 12px 20px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 0 32px; position: relative; overflow: hidden; }
.footer-echo {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; gap: 2px; pointer-events: none; z-index: 0; overflow: hidden;
}
.footer-echo span {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(3rem, 13vw, 9rem); white-space: nowrap; color: var(--teal);
}
.footer-echo span:nth-child(1) { opacity: .05; }
.footer-echo span:nth-child(2) { opacity: .035; }
.footer-echo span:nth-child(3) { opacity: .02; }
.footer .container { position: relative; z-index: 1; }

.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand p { margin-top: 16px; max-width: 300px; font-size: .92rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease); color: var(--muted);
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h4 {
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px; font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li, .footer-col a { font-size: .92rem; color: var(--muted); }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 28px;
  border-top: 1px solid var(--border); font-size: .82rem; color: var(--muted-2); flex-wrap: wrap; gap: 12px;
}
.footer-verse { text-align: center; margin-top: 22px; font-size: .82rem; font-style: italic; color: var(--muted-2); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
