/* ============================================================
   VigVibe — styles-vibe.css
   Theme: Vibe
   Mood: Cinematic, electric, creative, modern, atmospheric.
         Dark but not gloomy. Energetic but not noisy.
   Mode: Dark
   ============================================================
   TO ACTIVATE: replace styles.css (or styles-smile.css) reference
   with styles-vibe.css in all <link> tags across every page.
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  /* Brand palette */
  --pink:          #FF5C8A;
  --pink-dark:     #E83F73;
  --cyan:          #22D3EE;
  --cyan-dark:     #0EA5E9;
  --orange:        #FF8A3D;
  --orange-dark:   #E86400;
  --purple:        #9A4BB9;
  --magenta:       #A92475;
  --blue:          #2273D5;

  /* Text — repurposed for dark mode:
     --dark maps to near-white so all color:var(--dark)
     declarations read correctly on dark backgrounds */
  --dark:          #F8FAFC;
  --muted:         #CBD5E1;
  --faint:         #8EA0C2;
  --white:         #F8FAFC;

  /* Backgrounds */
  --bg:            #01113D;
  --bg-alt:        #0D1F6B;
  --bg-dark:       #000A28;
  --surface:       #071A4A;
  --surface-alt:   #111B57;

  /* Border / hairline */
  --grid-border:   rgba(255,255,255,0.14);

  /* Glow */
  --glow-pink:     rgba(255,92,138,0.28);
  --glow-cyan:     rgba(34,211,238,0.22);
  --glow-orange:   rgba(255,138,61,0.28);

  /* Feedback */
  --success:       #34D399;
  --warning:       #FBBF24;
  --error:         #F87171;

  /* Layout */
  --nav-height:    80px;
  --max-w:         1200px;
  --pad:           clamp(20px, 4vw, 40px);

  /* Radius */
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-btn:    6px;

  /* Shadows — deeper on dark */
  --shadow-card:   0 1px 6px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-raise:  0 4px 24px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.3);
  --shadow-intake: 0 6px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);

  /* Gradients */
  --hero-gradient:      linear-gradient(135deg, #01113D 0%, #0D1F6B 32%, #4C1E7C 62%, #FF5C8A 100%);
  --secondary-gradient: linear-gradient(90deg, #22D3EE 0%, #2273D5 35%, #9A4BB9 70%, #FF5C8A 100%);
  --btn-gradient:       linear-gradient(135deg, #FF5C8A 0%, #FF8A3D 100%);
  --btn-gradient-hover: linear-gradient(135deg, #E83F73 0%, #E86400 100%);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== BASE ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(35px, 5.5vw, 57px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}
h2 {
  font-size: clamp(25px, 3.8vw, 39px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
}
h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
}
p { color: var(--muted); font-size: 15px; line-height: 1.7; }

.label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}
/* Map orange-labeled items to cyan in dark mode */
.label-orange { color: var(--cyan); }

/* ===== LAYOUT ===== */
.wrap        { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section-pad { padding: 64px var(--pad); max-width: var(--max-w); margin: 0 auto; }
.border-b    { border-bottom: 0.5px solid var(--grid-border); }
.border-t    { border-top:    0.5px solid var(--grid-border); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — pink-to-orange gradient */
.btn-primary {
  background: var(--btn-gradient);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 4px 20px var(--glow-pink);
}

/* Outline — transparent dark surface, cyan border + text */
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-outline:hover {
  background: rgba(34,211,238,0.08);
  box-shadow: 0 2px 10px var(--glow-cyan);
}

/* Dark (surface-level button) */
.btn-dark {
  background: var(--surface);
  color: var(--white);
  border: 1px solid var(--grid-border);
}
.btn-dark:hover {
  background: var(--surface-alt);
  border-color: rgba(255,255,255,0.22);
}

/* White — repurposed as a soft surface button on dark bg */
.btn-white {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-white:hover {
  background: rgba(255,255,255,0.16);
  box-shadow: 0 2px 8px rgba(255,255,255,0.06);
}

/* Pink outline (secondary CTA on dark) */
.btn-pink-outline {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.btn-pink-outline:hover {
  background: rgba(255,92,138,0.08);
  box-shadow: 0 2px 10px var(--glow-pink);
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1,17,61,0.88);
  border-bottom: 0.5px solid var(--grid-border);
  height: var(--nav-height);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.nav-logo { display: flex; align-items: center; gap: 20px; }
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-tagline {
  font-size: 11px; font-weight: 500; color: var(--faint);
  letter-spacing: 0.04em; white-space: nowrap;
  border-left: 0.5px solid var(--grid-border); padding-left: 20px;
  line-height: 1.4;
}
.nav-links    { display: flex; align-items: center; gap: 28px; }
.nav-links a  { font-size: 15px; font-weight: 650; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--btn-gradient) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-btn) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: box-shadow 0.15s !important;
  border: none !important;
}
.nav-cta:hover {
  background: var(--btn-gradient-hover) !important;
  box-shadow: 0 2px 12px var(--glow-pink) !important;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 1px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--bg);
  border-bottom: 0.5px solid var(--grid-border);
  padding: 16px var(--pad); gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; font-weight: 500; color: var(--white); }

/* ===== HERO ===== */
.hero {
  padding: 80px var(--pad) 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 0.5px solid var(--grid-border);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  background: var(--hero-gradient);
}
.hero-content { min-width: 0; }
.hero h1      { margin-bottom: 20px; }
.hero-sub     {
  font-size: 17px; color: var(--muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 32px;
}
.hero-ctas    { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual  { flex-shrink: 0; align-self: stretch; overflow: hidden; border-radius: var(--radius-md); }
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}

/* SVG animation keyframes */
@keyframes flow-down  { to { stroke-dashoffset: -32; } }
@keyframes flow-left  { to { stroke-dashoffset: -32; } }
@keyframes flow-up    { to { stroke-dashoffset: -32; } }
@keyframes flow-right { to { stroke-dashoffset: -32; } }
@keyframes flow-diag  { to { stroke-dashoffset: -37; } }
.flow { stroke-dashoffset: 0; }
.flow-a { animation: flow-down  1.6s linear infinite; }
.flow-b { animation: flow-left  1.6s linear infinite 0.4s; }
.flow-c { animation: flow-up    1.6s linear infinite 0.8s; }
.flow-d { animation: flow-right 1.6s linear infinite 1.2s; }
.flow-e { animation: flow-diag  2.4s linear infinite 0s; }
.flow-f { animation: flow-diag  2.4s linear infinite 0.6s; }
.flow-g { animation: flow-diag  2.4s linear infinite 1.2s; }
.flow-h { animation: flow-diag  2.4s linear infinite 1.8s; }
@keyframes float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
@keyframes float-b { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }
@keyframes float-c { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
@keyframes float-d { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-5px)} }
.icon   { transform-box:fill-box; transform-origin:center; }
.float-a { animation:float-a 3.2s ease-in-out infinite; }
.float-b { animation:float-b 3.6s ease-in-out infinite 0.4s; }
.float-c { animation:float-c 3.4s ease-in-out infinite 0.8s; }
.float-d { animation:float-d 3.8s ease-in-out infinite 1.2s; }
@keyframes pulse-ring  { 0%{transform:scale(1);opacity:1} 70%,100%{transform:scale(2.8);opacity:0} }
@keyframes pulse-outer { 0%,100%{opacity:.35} 50%{opacity:.8} }
.pulse-ring  { transform-box:fill-box;transform-origin:center;animation:pulse-ring  2.2s ease-out infinite; }
.pulse-outer { transform-box:fill-box;transform-origin:center;animation:pulse-outer 2.2s ease-in-out infinite; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}

/* ===== SERVICES GRID ===== */
.services-section {
  padding: 56px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 0.5px solid var(--grid-border);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--grid-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--surface);
}
.grid-cell {
  padding: 28px 22px;
  border-right: 0.5px solid var(--grid-border);
  background: var(--surface);
  transition: background 0.18s;
}
.grid-cell:last-child { border-right: none; }
.grid-cell:hover { background: var(--surface-alt); }
.grid-cell svg { display: block; margin-bottom: 16px; }
.grid-cell h3  { margin-bottom: 8px; }
.grid-cell p   { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.grid-cell a   { font-size: 12px; font-weight: 600; color: var(--cyan); transition: opacity 0.15s; }
.grid-cell a:hover { opacity: 0.75; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-alt);
  border-top: 0.5px solid var(--grid-border);
  border-bottom: 0.5px solid var(--grid-border);
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.stat             { padding: 28px 20px; border-right: 0.5px solid var(--grid-border); }
.stat:last-child  { border-right: none; }
.stat-number {
  display: block;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--muted); }

/* ===== FEATURED / SELECTED WORK ===== */
.work-section {
  padding: 56px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 0.5px solid var(--grid-border);
}
.work-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.work-section-head h2 { margin-bottom: 0; }
.work-section-head a  { font-size: 13px; font-weight: 600; color: var(--cyan); }
.work-section-head a:hover { color: var(--pink); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--grid-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.work-card { border-right: 0.5px solid var(--grid-border); background: var(--surface); }
.work-card:last-child { border-right: none; }
.work-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.work-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-card:hover .work-card-image img { transform: scale(1.03); }
.work-card-body {
  padding: 22px 20px;
  border-top: 0.5px solid var(--grid-border);
}
.work-card-cat {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.work-card h3  { font-size: 15px; margin-bottom: 8px; line-height: 1.35; }
.work-card p   { font-size: 12px; line-height: 1.6; margin-bottom: 0; }
.work-card-result {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 0.5px solid var(--grid-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
}

/* Selected Work Preview (v3 homepage) */
.work-preview {
  padding: 64px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 0.5px solid var(--grid-border);
}
.work-preview .work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--grid-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.work-preview .work-card { border-right: 0.5px solid var(--grid-border); border-bottom: none; }
.work-preview .work-card:last-child { border-right: none; }

/* ===== HOW I WORK ===== */
.process-section {
  padding: 56px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 0.5px solid var(--grid-border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--grid-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow-card);
  background: var(--surface);
}
.process-step {
  padding: 28px 24px;
  border-right: 0.5px solid var(--grid-border);
  background: var(--surface);
}
.process-step:last-child { border-right: none; }
.process-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}
.process-step h3 { font-size: 16px; margin-bottom: 8px; }
.process-step p  { font-size: 13px; }

/* ===== AUDIT SECTION (deep dark) ===== */
.audit-section {
  background: var(--bg-dark);
  padding: 80px var(--pad);
  border-top: 0.5px solid var(--grid-border);
  border-bottom: 0.5px solid var(--grid-border);
}
.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.audit-inner .label { color: var(--cyan); }
.audit-inner h2     { color: var(--white); margin-bottom: 16px; }
.audit-inner > div > p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.audit-list { margin-bottom: 32px; }
.audit-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted); margin-bottom: 10px;
}
.audit-list li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--pink); margin-top: 7px; flex-shrink: 0;
}
.audit-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  border: 0.5px solid var(--grid-border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

/* ===== ABOUT TEASER ===== */
.about-section {
  padding: 56px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 0.5px solid var(--grid-border);
}
.about-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.about-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-alt);
  overflow: hidden;
  border: 0.5px solid var(--grid-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
}
.about-avatar-initials {
  font-size: 52px; font-weight: 900; color: var(--pink); letter-spacing: -0.03em;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p  { margin-bottom: 16px; }
.about-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 24px;
  border-top: 0.5px solid var(--grid-border);
}
.about-meta-item { font-size: 12px; color: var(--faint); }
.about-meta-item strong {
  display: block; font-size: 14px; color: var(--white); font-weight: 700;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--secondary-gradient);
  padding: 64px var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle glow overlay on gradient CTA */
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(1,17,61,0.20);
  pointer-events: none;
}
.cta-block h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-block p  { color: rgba(255,255,255,0.80); margin-bottom: 28px; font-size: 16px; position: relative; }
.cta-block .btn-white {
  font-size: 15px; padding: 14px 32px; position: relative;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.cta-block .btn-white:hover {
  background: rgba(255,255,255,0.22);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 0.5px solid var(--grid-border);
  padding: 40px var(--pad) 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto 32px;
}
.footer-logo img { height: 32px; width: auto; margin-bottom: 10px; }
.footer-tagline  { font-size: 13px; color: var(--muted); max-width: 260px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 20px;
  border-top: 0.5px solid var(--grid-border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--faint);
}

/* ===== V3 HOME OVERRIDES ===== */

/* Hero v3 — full Vibe gradient */
.hero-v3 {
  background: var(--hero-gradient);
}

/* Intake card — glass panel so it reads against the dark hero gradient */
.intake-card {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 2px 12px rgba(0,0,0,0.3) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}
.intake-opt {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--muted) !important;
}
.intake-opt:hover {
  border-color: var(--pink) !important;
  color: var(--pink) !important;
  background: rgba(255,92,138,0.12) !important;
}
.intake-opt.sel {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  color: #fff !important;
}
.intake-next {
  background: var(--btn-gradient) !important;
  border-radius: var(--radius-btn) !important;
  border: none !important;
}
.intake-next:hover {
  background: var(--btn-gradient-hover) !important;
  box-shadow: 0 4px 16px var(--glow-pink) !important;
}
.intake-dot.on   { background: var(--pink) !important; }
.intake-dot.done { background: var(--pink) !important; opacity: .4 !important; }
.intake-textarea,
.intake-input {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--white) !important;
}
.intake-textarea::placeholder,
.intake-input::placeholder { color: rgba(255,255,255,0.35) !important; }
.intake-textarea:focus,
.intake-input:focus {
  border-color: var(--cyan) !important;
  outline: none !important;
  background: rgba(34,211,238,0.05) !important;
}
.intake-final-msg {
  border-left-color: var(--pink) !important;
  background: rgba(255,92,138,0.08) !important;
  color: var(--muted) !important;
}
.intake-upload-zone {
  background: rgba(255,255,255,0.05) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--faint) !important;
}
.intake-upload-zone:hover { border-color: var(--cyan) !important; }

/* Intake labels and headings inside the form */
.intake-card h3,
.intake-card h4,
.intake-card .intake-title { color: var(--white) !important; }
.intake-card p,
.intake-card .intake-sub   { color: rgba(255,255,255,0.65) !important; }

/* Proof strip — contained to wrap */
.proof-strip { background: transparent !important; }
.proof-inner { background: var(--bg-alt); border: 0.5px solid var(--grid-border); border-radius: 0; }
.proof-num   { color: var(--pink) !important; }

/* Service cards v3 */
.svc-card { background: var(--surface); transition: background 0.18s; }
.svc-grid {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.svc-card:hover { background: var(--surface-alt) !important; }

/* Before/After section */
.ba-section { background: var(--bg); }

/* Work preview */
.work-preview .work-card { background: var(--surface); }

/* Final CTA */
.final-cta-sec { background: var(--bg); }

/* Mobile sticky */
.mobile-sticky {
  background: var(--btn-gradient) !important;
  box-shadow: 0 -4px 20px var(--glow-pink) !important;
}

/* ===== SERVICES PAGE ===== */
.service-tag {
  background: rgba(255,92,138,0.12) !important;
  color: var(--pink) !important;
  border-radius: var(--radius-sm) !important;
}
.service-visual {
  border-radius: var(--radius-md);
  background: var(--bg-alt) !important;
  box-shadow: var(--shadow-card);
  border: 0.5px solid var(--grid-border) !important;
}
.service-includes { border-radius: var(--radius-sm); overflow: hidden; }
.service-includes li::before { background: var(--pink); }
.service-price {
  background: var(--surface) !important;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--grid-border) !important;
}

/* ===== ABOUT PAGE ===== */
.about-page-avatar {
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-card) !important;
}
.strengths-grid {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.strength-rank { color: var(--pink) !important; }

/* ===== WORK PAGE ===== */
.work-cat-grid,
.work-cat-grid-2 {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.work-cat-grid .work-card,
.work-cat-grid-2 .work-card { background: var(--surface); }

/* Work page placeholder cards */
.work-card-placeholder {
  background: var(--surface-alt) !important;
  color: var(--faint) !important;
}
.work-card-placeholder h3 { color: var(--muted) !important; }
.work-card-placeholder a  { color: var(--cyan) !important; }

/* Related work outer */
.work-related-outer {
  background: var(--bg-alt);
  border-top: 0.5px solid var(--grid-border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cell:nth-child(2) { border-right: none; }
  .grid-cell:nth-child(3) { border-right: 0.5px solid var(--grid-border); border-top: 0.5px solid var(--grid-border); }
  .grid-cell:nth-child(4) { border-right: none; border-top: 0.5px solid var(--grid-border); }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { border-right: none; border-bottom: 0.5px solid var(--grid-border); }
  .work-card:last-child { border-bottom: none; }
  .work-preview .work-card { border-right: none; border-bottom: 0.5px solid var(--grid-border); }
  .work-preview .work-card:last-child { border-bottom: none; }
  .audit-inner { grid-template-columns: 1fr; gap: 40px; }
  .audit-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-avatar { width: 120px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 0.5px solid var(--grid-border); }
  .stat:nth-child(4) { border-top: 0.5px solid var(--grid-border); border-right: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .nav-links    { display: none; }
  .nav-tagline  { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 48px var(--pad) 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 0.5px solid var(--grid-border); }
  .process-step:last-child { border-bottom: none; }
  .work-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
