/* ===================================================================
   Pixora — Stylesheet (v2)
   Aesthetic: Warm editorial. Cream paper, ink, terracotta accent.
   Display: Fraunces (variable serif). Body: Manrope.
   Approach: Editorial restraint. Asymmetry in service of clarity,
   not novelty. Designed to look great with real client screenshots
   dropped in — and credible without them.
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colors — warm editorial palette */
  --cream: #F5F1E8;
  --cream-deep: #EDE7D7;
  --cream-soft: #FAF7EF;
  --paper: #FFFFFF;
  --ink: #0A0A0A;
  --ink-soft: #2B2B28;
  --muted: #6B6B66;
  --subtle: #A09F97;
  --line: rgba(10, 10, 10, 0.09);
  --line-strong: rgba(10, 10, 10, 0.18);
  --line-stronger: rgba(10, 10, 10, 0.32);

  --accent: #FF4A1C;
  /* terracotta */
  --accent-deep: #D93B12;
  --accent-soft: #FFE8DF;
  --forest: #1F3A2E;
  --wa: #25D366;
  --wa-deep: #1DA851;

  /* Type */
  --f-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --f-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing — 4/8 base scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 160px;

  --container: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, .04), 0 2px 6px rgba(10, 10, 10, .04);
  --shadow: 0 6px 24px rgba(10, 10, 10, .08);
  --shadow-lg: 0 20px 60px rgba(10, 10, 10, .14);
  --shadow-xl: 0 30px 80px rgba(10, 10, 10, .18);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: 260ms;
  --dur-fast: 160ms;
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

[hidden] {
  display: none !important;
}

img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

/* Subtle paper grain — gives the cream warmth instead of flat color */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 500;
}

p {
  margin: 0 0 var(--s-4);
  color: var(--ink-soft);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

a:hover {
  color: var(--accent);
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* ---------- Focus-visible accessibility (was missing) ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.chip:focus-visible,
.nav-links a:focus-visible,
.wa-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--accent);
}

.wa-float:focus-visible,
.to-top:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--accent), 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- Layout utils ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  position: relative;
  z-index: 2;
}

.section {
  padding: var(--s-9) 0;
  position: relative;
}

.section-alt {
  background: var(--cream-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  padding: var(--s-3) var(--s-4);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  left: var(--s-4);
  top: var(--s-4);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-4);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 74, 28, 0.15);
  animation: pulse 2.2s var(--ease) infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 74, 28, 0.15);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 74, 28, 0);
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: var(--s-8);
}

.section-head.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  max-width: 100%;
}

.section-head.two-col .section-sub {
  margin: 0;
  font-size: 1.05rem;
  max-width: 460px;
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin-bottom: var(--s-4);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
}

.muted {
  color: var(--muted);
}

.orange {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 12px 22px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
    color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}

.btn-wa:hover {
  background: var(--wa-deep);
  border-color: var(--wa-deep);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  margin-right: 4px;
  transform: translateY(4px);
}

.brand-mark.sm {
  width: 22px;
  height: 22px;
  font-size: 14px;
  transform: none;
  margin: 0 4px 0 0;
  vertical-align: middle;
}

.brand-name {
  font-variation-settings: "opsz" 144;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: var(--s-5);
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  color: var(--wa-deep);
  border: 1px solid rgba(29, 168, 81, 0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
}

.wa-link:hover {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.mobile-menu[aria-hidden="false"] {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: var(--s-4) var(--s-5) var(--s-6);
  gap: var(--s-4);
}

.mobile-menu a:not(.btn) {
  padding: 10px 0;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

/* ---------- Hero — PREMIUM CINEMATIC ---------- */
.hero { padding:clamp(100px,14vh,160px) 0 clamp(60px,8vh,100px); position:relative; overflow:hidden; background:var(--cream); min-height:100vh; min-height:100dvh; display:flex; flex-direction:column; justify-content:center; }

/* ── Animated gradient orbs ── */
.hero-bg { position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.hero-orb { position:absolute; border-radius:50%; filter:blur(80px); will-change:transform; }
.hero-orb-1 { width:600px;height:600px;top:-10%;right:-5%; background:radial-gradient(circle,rgba(255,74,28,.12)0%,transparent 70%); animation:heroOrb1 14s ease-in-out infinite; }
.hero-orb-2 { width:500px;height:500px;bottom:-15%;left:-10%; background:radial-gradient(circle,rgba(255,160,60,.08)0%,transparent 70%); animation:heroOrb2 18s ease-in-out infinite; }
.hero-orb-3 { width:400px;height:400px;top:30%;left:40%; background:radial-gradient(circle,rgba(120,60,200,.05)0%,transparent 70%); animation:heroOrb3 16s ease-in-out infinite; }
.hero-orb-4 { width:350px;height:350px;top:60%;right:20%; background:radial-gradient(circle,rgba(255,200,100,.06)0%,transparent 70%); animation:heroOrb1 20s ease-in-out infinite reverse; }
@keyframes heroOrb1{0%,100%{transform:translate(0,0)scale(1)}33%{transform:translate(-40px,30px)scale(1.1)}66%{transform:translate(20px,-20px)scale(.9)}}
@keyframes heroOrb2{0%,100%{transform:translate(0,0)scale(1)}50%{transform:translate(50px,-40px)scale(1.15)}}
@keyframes heroOrb3{0%,100%{transform:translate(0,0)scale(1)}25%{transform:translate(30px,20px)scale(1.05)}75%{transform:translate(-30px,-15px)scale(.95)}}

/* ── Grain texture ── */
.hero-grain { position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.25; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); mix-blend-mode:overlay; }

/* ── Dot grid ── */
/* Line grid — wireframe style */
.hero-dotgrid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
}

/* ── Particles ── */
.hero-particles { position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.hero-particles span { position:absolute; width:var(--sz,4px); height:var(--sz,4px); border-radius:50%; background:rgba(255,74,28,.5); box-shadow:0 0 8px rgba(255,74,28,.3); animation:heroParticleUp var(--d,8s) ease-in-out infinite; opacity:0; }
@keyframes heroParticleUp{0%{opacity:0;transform:translateY(0)scale(1)}15%{opacity:.8}85%{opacity:.3}100%{opacity:0;transform:translateY(-500px)scale(.2)}}

/* ── Centered content ── */
.hero-center { position:relative; z-index:2; text-align:center; max-width:900px; margin:0 auto; }

/* ── Badge ── */
.hero-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 20px; border-radius:999px; background:rgba(255,255,255,.5); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(10,10,10,.06); font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:var(--s-6); animation:heroFadeUp .8s cubic-bezier(.22,1,.36,1) 0s both; }
.hero-badge-dot { width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 0 rgba(255,74,28,.4); animation:heroDotPulse 2s ease-in-out infinite; flex-shrink:0; }
.hero-badge-sep { color:rgba(10,10,10,.15); }
@keyframes heroDotPulse{0%,100%{box-shadow:0 0 0 0 rgba(255,74,28,.4)}50%{box-shadow:0 0 0 8px rgba(255,74,28,0)}}

/* ── Title ── */
.hero-title { font-size:clamp(2.8rem,8vw,5.5rem); font-weight:500; letter-spacing:-.045em; line-height:1.05; margin-bottom:var(--s-5); color:var(--ink); }
.hero-title-line { display:block; }
.hero-title-line:nth-child(1){animation:heroFadeUp .8s cubic-bezier(.22,1,.36,1) .1s both}
.hero-title-line:nth-child(2){animation:heroFadeUp .8s cubic-bezier(.22,1,.36,1) .2s both}
.hero-title-line:nth-child(3){animation:heroFadeUp .8s cubic-bezier(.22,1,.36,1) .3s both}
.hero-title em { font-style:italic; background:linear-gradient(135deg,#FF4A1C 0%,#FF8C42 25%,#FFB347 50%,#FF6B35 75%,#FF4A1C 100%); background-size:300% auto; -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; animation:heroGradientShift 3s ease-in-out infinite; filter:drop-shadow(0 0 25px rgba(255,74,28,.15)); }
.hero-cursor { display:inline-block; color:var(--accent); font-style:normal; font-weight:300; animation:heroBlink 1s step-end infinite; -webkit-text-fill-color:var(--accent); }
@keyframes heroGradientShift{0%,100%{background-position:0% center}50%{background-position:100% center}}
@keyframes heroFadeUp{from{opacity:0;transform:translateY(30px);filter:blur(8px)}to{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes heroBlink{0%,100%{opacity:1}50%{opacity:0}}

/* ── Subtitle ── */
.hero-sub { font-size:clamp(1rem,2.5vw,1.25rem); color:var(--muted); max-width:620px; margin:0 auto var(--s-7); line-height:1.65; animation:heroFadeUp .8s cubic-bezier(.22,1,.36,1) .4s both; }
.hero-sub b,.hero-sub strong { color:var(--ink); font-weight:700; }

/* ── CTA ── */
.hero-ctas { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; margin-bottom:var(--s-7); animation:heroFadeUp .8s cubic-bezier(.22,1,.36,1) .5s both; }
.hero-btn-primary { position:relative; display:inline-flex; align-items:center; gap:8px; padding:16px 32px; font-size:15px; font-weight:600; color:#fff; text-decoration:none; border-radius:999px; overflow:hidden; transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s; }
.hero-btn-bg { position:absolute; inset:0; background:var(--accent); border-radius:inherit; z-index:0; }
.hero-btn-content { position:relative; z-index:1; display:inline-flex; align-items:center; gap:8px; }
.hero-btn-primary::before { content:''; position:absolute; inset:-2px; border-radius:inherit; background:conic-gradient(from var(--hero-btn-angle,0deg),#FF4A1C,#FF8C42,#FFB347,#FF6B35,#FF4A1C); z-index:-1; animation:heroBtnSpin 3s linear infinite; }
@property --hero-btn-angle{syntax:'<angle>';initial-value:0deg;inherits:false}
@keyframes heroBtnSpin{to{--hero-btn-angle:360deg}}
.hero-btn-primary::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent); animation:heroShimmer 3s ease-in-out infinite; z-index:2; }
@keyframes heroShimmer{0%{left:-100%}40%,100%{left:150%}}
.hero-btn-primary:hover { transform:translateY(-3px)scale(1.03); box-shadow:0 0 30px rgba(255,74,28,.4),0 10px 40px rgba(255,74,28,.25); }

.hero-btn-wa { display:inline-flex; align-items:center; gap:8px; padding:16px 32px; font-size:15px; font-weight:600; color:var(--ink); text-decoration:none; border-radius:999px; background:rgba(255,255,255,.6); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(10,10,10,.06); transition:all .35s cubic-bezier(.22,1,.36,1); }
.hero-btn-wa:hover { background:#25D366; color:#fff; border-color:transparent; transform:translateY(-3px)scale(1.03); box-shadow:0 0 25px rgba(37,211,102,.3),0 10px 40px rgba(37,211,102,.2); }

/* ── Stat cards ── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 32px;
  border-radius: 16px;
  background: transparent;
  border: none;
  max-width: fit-content;
  margin: 0 auto;
  animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) .65s both;
}
.hero-stat-card { display:flex; flex-direction:column; align-items:center; padding:0 28px; }
.hero-stat-num { font-family:var(--f-display); font-size:clamp(1.3rem,2.5vw,1.6rem); font-weight:600; color:var(--ink); letter-spacing:-.02em; line-height:1.2; }
.hero-stat-label { font-size:11px; color:var(--muted); letter-spacing:.04em; text-transform:uppercase; margin-top:4px; }
.hero-stat-divider { width:1px; height:28px; background:linear-gradient(180deg,transparent,var(--line),transparent); }

/* Hero phone stack — premium floating + entrance animation */
.hero-stack {
  position: relative;
  height: 420px;
  margin: 40px auto 0;
  max-width: 420px;
  animation: heroPhoneFloat 6s ease-in-out infinite, heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
  transform-origin: center top;
}

/* Glow halo behind phones */
.hero-stack::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 74, 28, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroStackIn {
  from { opacity: 0; transform: translateX(60px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-stack::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: heroShadowPulse 6s ease-in-out infinite;
}

@keyframes heroPhoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes heroShadowPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) scale(0.85);
    opacity: 0.6;
  }
}

.phone {
  position: absolute;
  width: 200px;
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border-radius: 32px;
  padding: 6px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 12px 24px -8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(10, 10, 10, 0.4);
  margin: 0;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

.phone-back {
  top: 10px;
  left: 20px;
  transform: rotate(-5deg);
  z-index: 1;
  opacity: 0.92;
}

.phone-front {
  top: 30px;
  right: 20px;
  transform: rotate(4deg);
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Phone fallback — clean wireframe-ish placeholder. Replace with real <img>. */
.phone-fallback {
  padding: 28px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fallback-food {
  background: linear-gradient(155deg, #FFF1E8 0%, #FFD9C2 100%);
}

.fallback-bloom {
  background: linear-gradient(155deg, #FFF0F0 0%, #F5DDDD 100%);
}

.fb-bar {
  height: 8px;
  width: 50%;
  background: rgba(10, 10, 10, 0.18);
  border-radius: 999px;
  margin-bottom: 6px;
}

.fb-h {
  height: 16px;
  width: 80%;
  background: var(--ink);
  border-radius: 4px;
}

.fb-line {
  height: 6px;
  width: 90%;
  background: rgba(10, 10, 10, 0.14);
  border-radius: 999px;
}

.fb-line.short {
  width: 65%;
}

.fb-tile {
  height: 100px;
  width: 100%;
  background: linear-gradient(135deg, #FF4A1C, #FFB59E);
  border-radius: 10px;
  margin-top: 6px;
}

.fb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
  flex: 1;
}

.fb-grid i {
  display: block;
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.08);
  aspect-ratio: 1;
}

.fb-grid i:nth-child(1) {
  background: linear-gradient(135deg, #FF4A1C, #FFB59E);
}

.fb-grid i:nth-child(2) {
  background: linear-gradient(135deg, #1F3A2E, #4A6B5A);
}

.fb-grid i:nth-child(3) {
  background: linear-gradient(135deg, #E8A5A5, #B86060);
}

.fb-grid i:nth-child(4) {
  background: linear-gradient(135deg, #0A0A0A, #3A3A3A);
}

.fb-pill {
  margin-top: auto;
  padding: 10px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  font-family: var(--f-body);
}

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: var(--s-7) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip-lead {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin: 0 0 var(--s-5);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo-strip-lead .muted {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: 13px;
}

.logo-strip-rule {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
  min-width: 40px;
  max-width: 200px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-5);
  align-items: center;
}

/* Logo slot — graceful text fallback until <img> is dropped in */
.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 var(--s-3);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.65;
  filter: grayscale(1);
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
  border-left: 1px solid var(--line);
}

.logo-slot:first-child {
  border-left: 0;
}

.logo-slot:hover {
  opacity: 1;
  filter: none;
  color: var(--ink);
}

.logo-slot img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

/* ---------- Services — editorial list, NOT a 3×2 grid ---------- */
.svc-list {
  border-top: 1px solid var(--line-strong);
}

.svc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease);
  position: relative;
}

.svc-item:hover {
  background: var(--cream-soft);
  padding-left: var(--s-3);
  padding-right: var(--s-3);
}

.svc-item:hover .svc-num {
  color: var(--accent);
}

.svc-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1;
  padding-top: 6px;
  transition: color var(--dur) var(--ease);
}

.svc-body {
  display: grid;
  gap: var(--s-2);
}

.svc-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 600;
  margin: 0;
}

.svc-body p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

.svc-tag {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--s-1);
}

.svc-feature {
  background: linear-gradient(180deg, var(--cream-soft), transparent);
}

.svc-feature .svc-num {
  color: var(--accent);
}

.svc-feature .svc-body h3 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
}

/* ---------- Work / Portfolio ---------- */
.filter-row {
  display: flex;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}

.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
}

.chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.work-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  color: inherit;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.work-card:hover .wc-cta {
  color: var(--accent);
}

.work-card:hover .wc-cta svg {
  transform: translateX(3px);
}

.work-card:hover .wc-fallback {
  transform: scale(1.04);
}

.wc-thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}

.wc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.work-card:hover .wc-thumb img {
  transform: scale(1.04);
}

/* Fallback layer — shows when no <img> is provided. */
.wc-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  transition: transform 600ms var(--ease-out);
}

.wc-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25));
}

.fb-mark {
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.fb-food {
  background: linear-gradient(135deg, #C43A10 0%, #FF6B3D 60%, #FFB07A 100%);
}

.fb-bloom {
  background: linear-gradient(135deg, #8B3A5F 0%, #D46A8A 60%, #F0A8B8 100%);
}

.fb-tech {
  background: linear-gradient(135deg, #0A2540 0%, #1F5FA3 60%, #5A9DD1 100%);
}

.fb-realestate {
  background: linear-gradient(135deg, #1F3A2E 0%, #3E6A4F 60%, #8FB59C 100%);
}

.fb-coffee {
  background: linear-gradient(135deg, #3D2817 0%, #6B4A30 60%, #A88565 100%);
}

.fb-clinic {
  background: linear-gradient(135deg, #1A4B6B 0%, #4A8FB5 60%, #A5CDE3 100%);
}

.wc-body {
  padding: var(--s-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-3);
}

.wc-body h3 {
  font-size: 1.35rem;
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.wc-body p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 var(--s-4);
  flex: 1;
}

.wc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color var(--dur) var(--ease);
}

.wc-cta svg {
  transition: transform var(--dur) var(--ease);
}

.work-foot {
  margin: var(--s-7) 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

.work-foot a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

/* ---------- Comparison Section ---------- */
.compare-section {
  padding: var(--s-9) 0;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  text-align: center;
}

.compare-table th,
.compare-table td {
  padding: var(--s-4) var(--s-3);
  vertical-align: middle;
}

.compare-table thead th {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--cream-soft);
  position: sticky;
  top: 0;
}

.compare-table thead th:first-child {
  background: var(--paper);
}

.compare-table .ct-brand {
  display: block;
  font-family: var(--f-body);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
}

.compare-table .ct-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  width: 32%;
}

.compare-table tbody td {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table .ct-row-label {
  width: 32%;
}

.ct-pixora {
  background: linear-gradient(180deg, var(--cream-soft), var(--cream-deep));
  position: relative;
}

.compare-table thead .ct-pixora {
  background: var(--accent-soft);
}

.compare-table thead .ct-pixora .ct-brand {
  color: var(--accent-deep);
}

.ct-yes {
  color: var(--accent);
  display: inline-flex;
}

.ct-mid {
  color: var(--muted);
  display: inline-flex;
}

.ct-no {
  color: var(--line-stronger);
  display: inline-flex;
}

.ct-pixora .ct-yes {
  color: var(--accent-deep);
}

.ct-text {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
}

.ct-pixora .ct-text {
  font-weight: 600;
}

.compare-foot {
  margin: var(--s-6) auto 0;
  max-width: 740px;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Process / Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), var(--accent), var(--line-strong));
  z-index: 0;
}

.timeline li {
  position: relative;
  padding-top: var(--s-6);
}

.step {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  z-index: 1;
}

.section-alt .step {
  background: var(--cream-deep);
}

.timeline li:first-child .step {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.timeline h3 {
  font-size: 1.35rem;
  margin-bottom: var(--s-3);
  font-weight: 600;
  margin-top: var(--s-3);
}

.timeline p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  max-width: 28ch;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card-featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  padding: var(--s-7) var(--s-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.price-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #FF8B5C, var(--accent));
}

.price-card-featured h3,
.price-card-featured .price-amt,
.price-card-featured .price small {
  color: var(--cream);
}

.price-card-featured .price-tag,
.price-card-featured .price-feats li {
  color: rgba(245, 241, 232, 0.78);
}

.price-card-featured .price-feats li svg {
  color: var(--accent);
}

.price-card-featured .price {
  border-color: rgba(245, 241, 232, 0.15);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 74, 28, 0.35);
}

.price-head {
  margin-bottom: var(--s-4);
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.price-tag {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.price {
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-amt {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-card-featured .price-amt {
  font-size: 2.75rem;
}

.price-feats {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  flex: 1;
}

.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.price-feats li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.pricing-note {
  text-align: center;
  margin: var(--s-7) auto 0;
  max-width: 640px;
  padding: var(--s-4) var(--s-5);
  background: var(--paper);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--muted);
}

.pricing-note b {
  color: var(--ink);
}

/* ---------- Testimonials — editorial pull-quote ---------- */
.t-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}

.t-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-7) var(--s-6) var(--s-6);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.t-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.t-card.t-feature {
  grid-column: span 2;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.t-card.t-feature blockquote {
  color: var(--cream);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.t-card.t-feature figcaption b {
  color: var(--cream);
}

.t-card.t-feature figcaption small {
  color: rgba(245, 241, 232, 0.65);
}

.t-card.t-feature figcaption {
  border-top-color: rgba(245, 241, 232, 0.15);
}

.t-card.t-feature .t-mark {
  color: var(--accent);
}

.t-mark {
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: var(--f-display);
  font-size: 100px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  font-weight: 600;
  pointer-events: none;
}

.t-card.t-feature .t-mark {
  opacity: 0.45;
  font-size: 140px;
  top: 0;
  left: 24px;
}

.t-card blockquote {
  font-family: var(--f-display);
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.t-card.t-feature blockquote .t-mark {
  display: inline;
  position: static;
  font-size: inherit;
  opacity: 1;
  color: var(--accent);
  margin-right: 4px;
}

.t-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.t-card figcaption b {
  font-family: var(--f-body);
  font-size: 15px;
  display: block;
  font-weight: 700;
}

.t-card figcaption small {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 13px;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 820px;
}

.faq {
  margin-top: var(--s-5);
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line-strong);
  padding: var(--s-5) 0;
  transition: padding var(--dur) var(--ease);
}

.faq summary {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}

.faq summary:hover {
  color: var(--accent);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--f-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq details[open] {
  padding-bottom: var(--s-6);
}

.faq details p {
  margin: var(--s-4) 0 0;
  max-width: 640px;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: var(--cream);
}

.contact h2,
.contact .section-title {
  color: var(--cream);
}

.contact .eyebrow {
  color: var(--subtle);
}

.contact .section-sub {
  color: rgba(245, 241, 232, 0.7);
}

.contact em {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: start;
}

.wa-big {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--wa);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: var(--s-6);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}

.wa-big:hover {
  background: var(--wa-deep);
  color: #fff;
  transform: translateY(-2px);
}

.wa-big>div {
  flex: 1;
}

.wa-big b {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.wa-big span {
  font-size: 14px;
  opacity: 0.9;
  font-family: var(--f-body);
}

.wa-big-arrow {
  transition: transform var(--dur) var(--ease);
}

.wa-big:hover .wa-big-arrow {
  transform: translateX(4px);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.ci {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--cream);
}

.contact-list b {
  display: block;
  font-size: 13px;
  color: var(--subtle);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-list a {
  color: var(--cream);
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--accent);
}

/* Form */
.quote-form {
  background: var(--cream);
  color: var(--ink);
  padding: var(--s-7);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.quote-form h3 {
  font-size: 1.6rem;
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.quote-form .small {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--s-5);
}

.quote-form label {
  display: block;
  margin-bottom: var(--s-4);
}

.quote-form label>span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--f-body);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 74, 28, 0.15);
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form .err {
  display: block;
  color: var(--accent-deep);
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
}

.quote-form label.is-error input,
.quote-form label.is-error textarea,
.quote-form label.is-error select {
  border-color: var(--accent-deep);
}

.btn-spin {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.is-loading .btn-label {
  opacity: 0;
}

.btn.is-loading .btn-spin {
  display: block;
  position: absolute;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--s-7) 0;
}

.form-success.is-shown {
  display: block;
}

.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto var(--s-4);
  animation: checkPop 0.5s var(--ease);
}

.form-success .check svg {
  color: #fff;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.form-success h4 {
  font-size: 1.5rem;
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.form-success p {
  margin: 0;
}

/* ---------- Footer — Premium Immersive ---------- */
.site-footer {
  background: #050505;
  padding: 0 0 0;
  border-top: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Ambient glows */
.ft-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.ft-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 74, 28, .06) 0%, transparent 70%);
}

.ft-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(120, 100, 255, .04) 0%, transparent 70%);
}

/* Noise texture */
.ft-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}

/* CTA block */
.ft-cta-block {
  text-align: center;
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.ft-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, .45);
  margin-bottom: 1.5rem;
  font-family: var(--f-body);
}

.ft-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .2);
  animation: ftPulse 2s ease-in-out infinite;
}

@keyframes ftPulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, .2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(37, 211, 102, .08);
  }
}

.ft-cta-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: #F5F1E8;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.ft-cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, #FF5C2B, #FF8B5C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ft-cta-sub {
  font-size: 16px;
  color: rgba(245, 241, 232, .45);
  margin: 0 0 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.ft-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ft-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f-body);
  color: #F5F1E8;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .3s ease;
}

.ft-wa-link svg {
  color: #25D366;
}

.ft-wa-link:hover {
  background: rgba(37, 211, 102, .08);
  border-color: rgba(37, 211, 102, .2);
  color: #F5F1E8;
  box-shadow: 0 0 20px rgba(37, 211, 102, .1);
}

/* Divider */
.ft-divider {
  position: relative;
  z-index: 1;
  padding: 0 var(--s-6);
}

.ft-divider span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 241, 232, .08) 20%, rgba(245, 241, 232, .08) 80%, transparent);
}

/* Nav grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.footer-brand .brand {
  display: inline-flex;
}

.footer-about {
  margin: var(--s-3) 0 0;
  font-size: 14px;
  max-width: 340px;
  color: rgba(245, 241, 232, .35);
  line-height: 1.65;
}

.footer-about em {
  color: #F5F1E8;
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 500;
}

.footer-grid h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, .3);
  margin-bottom: var(--s-4);
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid nav a {
  font-size: 14px;
  color: rgba(245, 241, 232, .55);
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: color .3s ease;
}

.footer-grid nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF5C2B;
  transition: width .3s cubic-bezier(.22, 1, .36, 1);
}

.footer-grid nav a:hover {
  color: #F5F1E8;
}

.footer-grid nav a:hover::after {
  width: 100%;
}

/* Bottom bar */
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(245, 241, 232, .06);
  font-size: 12px;
  color: rgba(245, 241, 232, .25);
  position: relative;
  z-index: 1;
}

.footer-base a {
  color: rgba(245, 241, 232, .35);
}

.footer-base a:hover {
  color: #FF5C2B;
}

/* Animated accent line at bottom */
.ft-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF5C2B, #FF8B5C, #FF5C2B, transparent);
  background-size: 200% 100%;
  animation: ftLineShimmer 4s linear infinite;
  z-index: 2;
}

@keyframes ftLineShimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Brand in dark context */
.site-footer .brand-mark {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: #F5F1E8;
}

.site-footer .brand-name {
  color: #F5F1E8;
}

.site-footer .brand-dot {
  background: #FF5C2B;
}

/* ---------- WhatsApp Chat Widget ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform .3s var(--ease), background .3s var(--ease);
  border: 0;
  cursor: pointer;
}

.wa-float:hover {
  background: var(--wa-deep);
  color: #fff;
  transform: scale(1.08);
}

.wa-float-close {
  display: none;
}

.wa-float.is-open .wa-float-icon {
  display: none;
}

.wa-float.is-open .wa-float-close {
  display: block;
}

.wa-float.is-open .wa-ping {
  display: none;
}

.wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: 0.6;
  animation: ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  80%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.wa-chat-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 99;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .3s var(--ease);
  transform-origin: bottom right;
}

.wa-chat-panel.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #075e54, #128c7e);
  color: #fff;
}

.wa-chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FF8B5C);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.wa-chat-info {
  flex: 1;
}

.wa-chat-info b {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.wa-chat-info span {
  font-size: 12px;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, .3);
  display: inline-block;
}

.wa-chat-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 0;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}

.wa-chat-close:hover {
  background: rgba(255, 255, 255, .25);
}

.wa-chat-body {
  padding: 20px 18px;
  background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M30 5 L35 15 L30 25 L25 15Z' fill='rgba(0,0,0,.02)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(%23p)'/%3E%3C/svg%3E");
}

.wa-chat-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #1a1a1a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  position: relative;
  max-width: 90%;
  animation: waBubbleIn .4s var(--ease) both;
}

.wa-chat-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
}

@keyframes waBubbleIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-chat-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.wa-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f-body);
  text-align: center;
  transition: transform .2s var(--ease), background .2s;
  box-shadow: 0 2px 8px rgba(37, 211, 102, .25);
}

.wa-quick-btn:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-1px);
}

.wa-quick-secondary {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

.wa-quick-secondary:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

/* ---------- Dark Mode Toggle (Public Site) ---------- */
.dark-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-soft, rgba(0, 0, 0, .05));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), transform .2s;
  flex-shrink: 0;
}

.dark-toggle:hover {
  background: var(--ink);
  color: var(--cream);
  transform: scale(1.08);
}

.dark-toggle svg {
  transition: transform .4s var(--ease);
}

[data-theme="dark"] .dark-toggle svg {
  transform: rotate(180deg);
}

/* ---------- Dark Mode — Public Site ---------- */
[data-theme="dark"] {
  --ink: #F5F1E8;
  --ink-soft: #C5BFB0;
  --cream: #0f0f0e;
  --cream-soft: #1a1a18;
  --cream-deep: #141412;
  --paper: #1c1c1a;
  --line: rgba(245, 241, 232, .08);
  --line-strong: rgba(245, 241, 232, .14);
  --line-stronger: rgba(245, 241, 232, .22);
  --muted: #7A7670;
  --subtle: #5a5650;
  --accent: #FF5C2B;
  --accent-soft: rgba(255, 74, 28, .1);
  --accent-deep: #FF6E3C;
  --shadow: 0 8px 32px rgba(0, 0, 0, .4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .3);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .5);
}

[data-theme="dark"] body {
  background: #0a0a09;
}

[data-theme="dark"] .site-header {
  background: rgba(10, 10, 9, .85);
}

[data-theme="dark"] .site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

[data-theme="dark"] .mobile-menu {
  background: #0f0f0e;
}

/* ── Contact section: forced dark BG, so text must be forced light ── */
[data-theme="dark"] .contact {
  background: #0d0d0c;
  color: #F5F1E8;
}

[data-theme="dark"] .contact h2,
[data-theme="dark"] .contact .section-title {
  color: #F5F1E8;
}

[data-theme="dark"] .contact .eyebrow {
  color: rgba(245, 241, 232, .45);
}

[data-theme="dark"] .contact .section-sub {
  color: rgba(245, 241, 232, .7);
}

[data-theme="dark"] .contact-list b {
  color: rgba(245, 241, 232, .45);
}

[data-theme="dark"] .contact-list a {
  color: #F5F1E8;
}

[data-theme="dark"] .contact-list a:hover {
  color: #FF5C2B;
}

[data-theme="dark"] .contact-list li div {
  color: #F5F1E8;
}

[data-theme="dark"] .ci {
  color: #F5F1E8;
  background: rgba(245, 241, 232, .06);
  border-color: rgba(245, 241, 232, .1);
}

[data-theme="dark"] .wa-big {
  color: #fff;
}

[data-theme="dark"] .wa-big b,
[data-theme="dark"] .wa-big span {
  color: #fff;
}

/* ── Quote form ── */
[data-theme="dark"] .quote-form {
  background: #1a1a18;
  color: #F5F1E8;
}

[data-theme="dark"] .quote-form h3 {
  color: #F5F1E8;
}

[data-theme="dark"] .quote-form .small {
  color: #7A7670;
}

[data-theme="dark"] .quote-form label>span {
  color: #C5BFB0;
}

[data-theme="dark"] .quote-form input,
[data-theme="dark"] .quote-form textarea,
[data-theme="dark"] .quote-form select {
  background: #0f0f0e;
  color: #F5F1E8;
  border-color: rgba(245, 241, 232, .12);
}

[data-theme="dark"] .quote-form input::placeholder,
[data-theme="dark"] .quote-form textarea::placeholder {
  color: #5a5650;
}

/* ── Testimonials ── */
[data-theme="dark"] .t-card {
  background: #1c1c1a;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .t-card blockquote {
  color: #F5F1E8;
}

[data-theme="dark"] .t-card figcaption b {
  color: #F5F1E8;
}

[data-theme="dark"] .t-card figcaption small {
  color: #7A7670;
}

[data-theme="dark"] .t-card figcaption {
  border-top-color: rgba(245, 241, 232, .08);
}

[data-theme="dark"] .t-card.t-feature {
  background: #141412;
  border-color: rgba(245, 241, 232, .08);
}

[data-theme="dark"] .t-card.t-feature blockquote {
  color: #F5F1E8;
}

[data-theme="dark"] .t-card.t-feature figcaption b {
  color: #F5F1E8;
}

[data-theme="dark"] .t-card.t-feature figcaption small {
  color: rgba(245, 241, 232, .5);
}

[data-theme="dark"] .t-card.t-feature figcaption {
  border-top-color: rgba(245, 241, 232, .1);
}

/* ── Pricing cards ── */
[data-theme="dark"] .price-card {
  background: #1c1c1a;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .price-card h3 {
  color: #F5F1E8;
}

[data-theme="dark"] .price-amt {
  color: #F5F1E8;
}

[data-theme="dark"] .price-tag {
  color: #7A7670;
}

[data-theme="dark"] .price {
  border-color: rgba(245, 241, 232, .08);
}

[data-theme="dark"] .price small {
  color: #7A7670;
}

[data-theme="dark"] .price-feats li {
  color: #C5BFB0;
}

[data-theme="dark"] .price-card-featured {
  background: #141412;
  border-color: rgba(255, 74, 28, .25);
}

[data-theme="dark"] .price-card-featured h3,
[data-theme="dark"] .price-card-featured .price-amt {
  color: #F5F1E8;
}

[data-theme="dark"] .price-card-featured .price-tag,
[data-theme="dark"] .price-card-featured .price-feats li {
  color: #C5BFB0;
}

[data-theme="dark"] .price-card-featured .price {
  border-color: rgba(245, 241, 232, .1);
}

[data-theme="dark"] .pricing-note {
  background: #1c1c1a;
  border-color: rgba(245, 241, 232, .1);
  color: #7A7670;
}

[data-theme="dark"] .pricing-note b {
  color: #F5F1E8;
}

/* ── Comparison table ── */
[data-theme="dark"] .compare-table-wrap {
  background: #1c1c1a;
  border-color: rgba(245, 241, 232, .08);
}

[data-theme="dark"] .compare-table thead th {
  background: #141412;
  color: #7A7670;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .compare-table thead .ct-pixora {
  background: rgba(255, 74, 28, .06);
}

[data-theme="dark"] .ct-pixora {
  background: rgba(255, 74, 28, .03);
}

[data-theme="dark"] .compare-table tbody th {
  color: #F5F1E8;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .compare-table tbody td {
  color: #C5BFB0;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .compare-table tbody tr:hover {
  background: rgba(245, 241, 232, .02);
}

[data-theme="dark"] .ct-text {
  color: #C5BFB0;
}

[data-theme="dark"] .ct-pixora .ct-text {
  color: #F5F1E8;
}

[data-theme="dark"] .compare-foot {
  color: #7A7670;
}

/* ── FAQ ── */
[data-theme="dark"] .faq details {
  border-color: rgba(245, 241, 232, .08);
}

[data-theme="dark"] .faq {
  border-color: rgba(245, 241, 232, .08);
}

[data-theme="dark"] .faq summary {
  color: #F5F1E8;
}

[data-theme="dark"] .faq summary::after {
  color: #5a5650;
}

[data-theme="dark"] .faq details p {
  color: #7A7670;
}

/* ── Hero ── */
[data-theme="dark"] .hero {
  background: #0a0a09;
}

/* Much brighter animated mesh gradient in dark mode */
[data-theme="dark"] .hero::before {
  background:
    radial-gradient(ellipse 600px 600px at 20% 30%, rgba(255, 74, 28, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 20%, rgba(255, 160, 60, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 60% 80%, rgba(140, 80, 255, 0.08) 0%, transparent 70%);
}

/* Increase grain in dark mode */
[data-theme="dark"] .hero::after {
  opacity: 0.15;
  mix-blend-mode: soft-light;
}

/* Glowing headline */
[data-theme="dark"] .hero-title { color: #F5F1E8; text-shadow: 0 0 80px rgba(255,74,28,.08); }
[data-theme="dark"] .hero-title em { filter: drop-shadow(0 0 35px rgba(255,74,28,.35)); }
[data-theme="dark"] .hero-cursor { -webkit-text-fill-color: #FF8C42; color: #FF8C42; }

/* Orbs brighter */
[data-theme="dark"] .hero-orb-1 { background:radial-gradient(circle,rgba(255,74,28,.2)0%,transparent 70%); }
[data-theme="dark"] .hero-orb-2 { background:radial-gradient(circle,rgba(255,160,60,.14)0%,transparent 70%); }
[data-theme="dark"] .hero-orb-3 { background:radial-gradient(circle,rgba(140,80,255,.1)0%,transparent 70%); }

/* Grain */
[data-theme="dark"] .hero-grain { opacity: .15; mix-blend-mode: soft-light; }

/* Dot grid */
[data-theme="dark"] .hero-dotgrid {
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.1) 1px, transparent 1px);
}

/* Particles */
[data-theme="dark"] .hero-particles span { background:rgba(255,140,60,.6); box-shadow:0 0 12px rgba(255,74,28,.5); }

/* Badge */
[data-theme="dark"] .hero-badge { background:rgba(255,255,255,.04); border-color:rgba(245,241,232,.08); }
[data-theme="dark"] .hero-badge-sep { color:rgba(245,241,232,.15); }

/* Subtitle */
[data-theme="dark"] .hero-sub { color: #7A7670; }

/* WhatsApp CTA */
[data-theme="dark"] .hero-btn-wa { background:rgba(255,255,255,.04); border-color:rgba(245,241,232,.08); color:#F5F1E8; }
[data-theme="dark"] .hero-btn-wa:hover { background:#25D366; color:#fff; border-color:transparent; }

/* Stats */
[data-theme="dark"] .hero-stats { background:transparent; border:none; }
[data-theme="dark"] .hero-stat-num { color:#F5F1E8; }
[data-theme="dark"] .hero-stat-label { color:rgba(245,241,232,.4); }
[data-theme="dark"] .hero-stat-divider { background:linear-gradient(180deg,transparent,rgba(245,241,232,.12),transparent); }

/* Phone glow */
[data-theme="dark"] .hero-stack::after { background:radial-gradient(ellipse,rgba(255,74,28,.15)0%,rgba(255,100,40,.05)40%,transparent 65%); }
[data-theme="dark"] .phone { box-shadow:0 25px 50px -12px rgba(0,0,0,.5),0 0 40px -10px rgba(255,74,28,.08),inset 0 1px 0 rgba(255,255,255,.06); }

[data-theme="dark"] .eyebrow { color: #7A7670; }

/* ── Services ── */
[data-theme="dark"] .svc-item {
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .svc-item h3 {
  color: #F5F1E8;
}

[data-theme="dark"] .svc-item p {
  color: #7A7670;
}

[data-theme="dark"] .svc-num {
  color: #C5BFB0;
}

/* ── Process / Timeline ── */
[data-theme="dark"] .step {
  background: #1c1c1a;
  border-color: rgba(245, 241, 232, .1);
  color: #F5F1E8;
}

[data-theme="dark"] .section-alt .step {
  background: #141412;
}

[data-theme="dark"] .ps-body h3 {
  color: #F5F1E8;
}

[data-theme="dark"] .ps-body p {
  color: #7A7670;
}

/* ── Work grid ── */
[data-theme="dark"] .wc-card {
  background: #1c1c1a;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .wc-card h3 {
  color: #F5F1E8;
}

[data-theme="dark"] .wc-card p {
  color: #7A7670;
}

[data-theme="dark"] .wc-cta {
  color: #F5F1E8;
}

/* ── Logo strip ── */
[data-theme="dark"] .logo-strip {
  background: #0f0f0e;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .logo-slot {
  color: #C5BFB0;
  border-color: rgba(245, 241, 232, .06);
}

[data-theme="dark"] .logo-strip h2 {
  color: #C5BFB0;
}

/* ── Footer (always dark — minimal overrides needed) ── */
[data-theme="dark"] .site-footer {
  background: #030303;
}

/* ── Cookie bar ── */
[data-theme="dark"] #cookieBar {
  background: #141412;
  color: #C5BFB0;
}

/* ── Section backgrounds ── */
[data-theme="dark"] .section-alt {
  background: #0f0f0e;
}

[data-theme="dark"] .section-head .section-sub {
  color: #7A7670;
}

[data-theme="dark"] .section-title {
  color: #F5F1E8;
}

[data-theme="dark"] .section-title em {
  color: #FF5C2B;
}

/* ── WhatsApp chat widget ── */
[data-theme="dark"] .wa-chat-body {
  background: #1a1a18;
}

[data-theme="dark"] .wa-chat-bubble {
  background: #252520;
  color: #F5F1E8;
}

[data-theme="dark"] .wa-chat-bubble::before {
  border-top-color: #252520;
}

[data-theme="dark"] .wa-chat-panel {
  background: #1a1a18;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

[data-theme="dark"] .wa-quick-secondary {
  background: #252520;
  color: #F5F1E8;
}

[data-theme="dark"] .wa-quick-secondary:hover {
  background: #2a2a25;
  color: #F5F1E8;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 89;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.to-top.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--accent);
  color: #fff;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }

  .hero-stack {
    max-width: 380px;
    height: 460px;
  }

  .section-head.two-col {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    align-items: start;
  }

  .section-head.two-col .section-sub {
    max-width: 100%;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-7);
  }

  .timeline::before {
    display: none;
  }

  .timeline p {
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--s-5);
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: var(--s-4);
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-about {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-grid h4 {
    text-align: center;
  }

  .footer-grid nav {
    align-items: center;
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }

  .logo-slot:nth-child(4) {
    border-left: 0;
  }

  .t-card.t-feature {
    grid-column: span 1;
  }

  .t-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: var(--s-8) 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .wa-link span {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: var(--s-7) 0 var(--s-6);
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    letter-spacing: -0.03em;
  }

  .hero-stack {
    max-width: 320px;
    height: 380px;
  }

  .phone {
    width: 180px;
  }

  .phone-back {
    transform: rotate(-3deg);
  }

  .phone-front {
    top: 30px;
    transform: rotate(2deg);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    text-align: center;
    padding: 2.5rem 0;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
    margin-bottom: 0;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-about {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 300px;
    font-size: 13px;
  }

  .footer-grid h4 {
    text-align: center;
    margin-bottom: var(--s-3);
  }

  .footer-grid nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
  }

  .footer-grid nav a {
    font-size: 13px;
    padding: 6px 14px;
    background: rgba(245, 241, 232, .04);
    border: 1px solid rgba(245, 241, 232, .06);
    border-radius: 20px;
    width: auto;
  }

  .footer-grid nav a::after {
    display: none;
  }

  .footer-grid nav a:hover {
    background: rgba(255, 74, 28, .08);
    border-color: rgba(255, 74, 28, .15);
    color: #FF5C2B;
  }

  .footer-base {
    flex-direction: column;
    gap: var(--s-2);
    text-align: center;
    padding: 1.5rem 0;
  }

  .ft-cta-block {
    padding: 3rem 0 2.5rem;
  }

  .ft-cta-eyebrow {
    font-size: 10px;
    margin-bottom: 1rem;
  }

  .ft-cta-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .ft-cta-sub {
    font-size: 14px;
    max-width: 320px;
    margin-bottom: 1.5rem;
  }

  .ft-cta-actions {
    flex-direction: column;
    gap: .75rem;
  }

  .ft-wa-link {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .ft-divider {
    padding: 0 var(--s-4);
  }

  .quote-form {
    padding: var(--s-5);
  }

  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .wa-chat-panel {
    width: calc(100vw - 36px);
    right: 18px;
    bottom: 84px;
  }

  .to-top {
    bottom: 18px;
    left: 18px;
  }

  .faq summary {
    font-size: 1.1rem;
  }

  .svc-item {
    grid-template-columns: 50px 1fr;
    gap: var(--s-3);
  }

  .svc-num {
    font-size: 1.2rem;
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-slot:nth-child(3) {
    border-left: 0;
  }

  .logo-strip-rule {
    display: none;
  }

  .compare-table {
    font-size: 13px;
  }

  .pricing-note {
    margin-left: var(--s-3);
    margin-right: var(--s-3);
  }

  .hero-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
  }

  .hero-foot>span:nth-child(2) {
    display: none;
  }
}

/* ---------- Small phones (480px) ---------- */
@media (max-width: 480px) {

  /* Global spacing */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: var(--s-7) 0;
  }

  /* Hero */
  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-ctas {
    flex-direction: column;
    gap: var(--s-3);
  }

  .hero-btn-primary,
  .hero-btn-wa {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-stat-card {
    padding: 0;
  }

  /* Section heads */
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section-sub {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 10px;
  }

  /* Services */
  .svc-item {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }

  .svc-num {
    font-size: 1rem;
  }

  .svc-item h3 {
    font-size: 1rem;
  }

  .svc-item p {
    font-size: 13px;
  }

  /* Compare table: horizontal scroll on small screens */
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 560px;
    font-size: 12px;
  }

  .compare-foot {
    font-size: 12px;
  }

  /* Pricing */
  .pricing-grid {
    gap: var(--s-4);
  }

  .price-card,
  .price-card-featured {
    padding: var(--s-5);
  }

  .price-amt {
    font-size: 1.8rem;
  }

  .price-feats li {
    font-size: 13px;
  }

  .pricing-note {
    padding: var(--s-4);
    font-size: 12px;
    margin: var(--s-4) 0;
  }

  /* Calculator */
  .calc-controls {
    flex-direction: column;
    gap: var(--s-3);
  }

  .calc-controls label {
    font-size: 13px;
  }

  .calc-result {
    padding: var(--s-4);
    font-size: 14px;
  }

  /* Process / Timeline */
  .process-step {
    grid-template-columns: 36px 16px 1fr;
    gap: 0 .75rem;
  }

  .ps-num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .ps-body h3 {
    font-size: 1rem;
  }

  .ps-body p {
    font-size: 13px;
  }

  .ps-time {
    font-size: 10px;
    padding: 2px 8px;
  }

  /* Testimonials */
  .t-card blockquote {
    font-size: 14px;
    padding: var(--s-4);
  }

  .t-card figcaption {
    padding: var(--s-3) var(--s-4);
  }

  /* FAQ */
  .faq summary {
    font-size: 0.95rem;
    padding: var(--s-3) var(--s-4);
  }

  .faq details p {
    font-size: 13px;
    padding: 0 var(--s-4) var(--s-4);
  }

  /* Contact form */
  .quote-form {
    padding: var(--s-4);
    border-radius: var(--radius);
  }

  .quote-form h3 {
    font-size: 1.2rem;
  }

  .quote-form label>span {
    font-size: 12px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .contact-list {
    gap: var(--s-3);
  }

  .contact-list li {
    flex-direction: column;
    text-align: center;
  }

  .ci {
    width: 44px;
    height: 44px;
  }

  /* WhatsApp CTA strip */
  .wa-big-inner {
    flex-direction: column;
    gap: var(--s-3);
    text-align: center;
  }

  .wa-big-inner h2 {
    font-size: 1.1rem;
  }

  /* Logo strip */
  .logo-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
  }

  .logo-slot {
    padding: var(--s-3);
  }

  .logo-strip-lead {
    font-size: 13px;
  }

  /* Footer */
  .footer-grid {
    padding: 2rem 0;
    gap: var(--s-5);
  }

  .footer-grid nav a {
    font-size: 12px;
    padding: 5px 12px;
  }

  .footer-base {
    font-size: 12px;
  }

  .ft-cta-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .ft-cta-sub {
    font-size: 13px;
  }

  .ft-cta-actions {
    gap: .5rem;
  }

  .ft-wa-link {
    font-size: 14px;
    padding: 12px 16px;
  }

  /* Buttons */
  .btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .btn-lg {
    font-size: 14px;
    padding: 13px 24px;
  }

  /* WhatsApp panel */
  .wa-chat-panel {
    right: 8px;
    left: 8px;
    width: auto;
    bottom: 78px;
    max-height: 70vh;
  }

  /* Announcement bar */
  #annoBar {
    font-size: 11px;
    padding: 8px 12px;
    flex-wrap: wrap;
    text-align: center;
  }

  /* Header */
  .nav-actions {
    gap: 8px;
  }

  .dark-toggle {
    width: 34px;
    height: 34px;
  }

  /* Calendly */
  .calendly-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ---------- Ultra-narrow (360px) ---------- */
@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .hero-ctas .btn {
    font-size: 13px;
    padding: 11px 16px;
  }

  .price-amt {
    font-size: 1.5rem;
  }

  .logo-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-num {
    font-size: 2rem;
  }

  .footer-grid nav {
    gap: 4px 8px;
  }

  .footer-grid nav a {
    font-size: 11px;
    padding: 4px 10px;
  }

  .wa-chat-panel {
    right: 4px;
    left: 4px;
  }

  .process-step {
    grid-template-columns: 30px 12px 1fr;
  }

  .ps-num {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .phone-back,
  .phone-front {
    transform: none !important;
  }
}

/* ---------- Forced colors / Windows High Contrast ---------- */
@media (forced-colors: active) {

  .hero::before,
  body::before,
  .wc-fallback,
  .fb-tile,
  .fb-grid i {
    display: none;
  }

  .btn {
    border-color: ButtonText;
  }
}