/* ============================================================
   ClickWise AB — Light Digital Marketing Theme
   Palette: Warm white · Coral-orange accent · Ink navy · Sage
   Fonts: Plus Jakarta Sans (display) · Lora (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --white:      #ffffff;
  --bg:         #faf9f7;
  --bg-warm:    #f5f2ee;
  --bg-tint:    #fff8f5;

  --ink:        #0f1623;
  --ink-mid:    #2d3748;
  --ink-muted:  #64748b;
  --ink-faint:  #94a3b8;

  --coral:      #ff5c35;
  --coral-lt:   #ff7a57;
  --coral-bg:   #fff1ed;
  --coral-border: rgba(255,92,53,0.2);

  --navy:       #1a2f5e;
  --navy-mid:   #253d7a;

  --sage:       #4a7c59;
  --sage-bg:    #f0f7f3;

  --gold:       #f59e0b;
  --gold-bg:    #fffbeb;

  --border:     #e8e4de;
  --border-md:  #d4cfc8;
  --shadow-sm:  0 1px 3px rgba(15,22,35,0.06), 0 1px 2px rgba(15,22,35,0.04);
  --shadow-md:  0 4px 16px rgba(15,22,35,0.08), 0 2px 6px rgba(15,22,35,0.04);
  --shadow-lg:  0 20px 50px rgba(15,22,35,0.1), 0 8px 20px rgba(15,22,35,0.06);
  --shadow-coral: 0 8px 30px rgba(255,92,53,0.25);

  /* Type */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Lora', Georgia, serif;

  /* Layout */
  --nav-h:      72px;
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --section-py: 96px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 800; line-height: 1.07; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; }
p  { color: var(--ink-muted); max-width: 64ch; line-height: 1.75; }

a  { color: inherit; text-decoration: none; }
em { font-style: italic; }
strong { color: var(--ink); }

.text-coral { color: var(--coral); }
.text-navy  { color: var(--navy); }

/* Accent underline for display text */
.u-coral {
  position: relative;
  display: inline-block;
}
.u-coral::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 6px;
  background: var(--coral);
  border-radius: 3px;
  opacity: 0.25;
  z-index: -1;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--bg-warm); }
.section--tint { background: var(--bg-tint); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.section-header { max-width: 620px; margin: 0 auto 64px; text-align: center; }
.section-header p { margin: 16px auto 0; font-size: 1.08rem; }

/* ── DOT GRID TEXTURE ──────────────────────────────────────── */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  color: var(--ink);
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--coral);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(255,92,53,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 8px 15px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-warm); }
.nav-links a.active { color: var(--ink); }
.nav-links .nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(255,92,53,0.3);
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--coral-lt); box-shadow: var(--shadow-coral); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,92,53,0.28);
}
.btn--primary:hover {
  background: var(--coral-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-md);
}
.btn--outline:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-bg); }
.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,47,94,0.2);
}
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink-muted); }
.btn--ghost:hover { color: var(--coral); }
.btn--full { width: 100%; }
.btn--lg { padding: 17px 36px; font-size: 1rem; border-radius: 12px; }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 64px) 0 80px;
  overflow: hidden;
  background: var(--white);
}
.hero-bg-shape {
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--coral-bg) 60%, #ffe8e0 100%);
  border-radius: 0 0 0 60% / 0 0 0 40%;
  z-index: 0;
}
.hero-bg-dots {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background-image: radial-gradient(circle, rgba(255,92,53,0.12) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  z-index: 1;
}
.hero-floating-card {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  font-family: var(--font-display);
}
.hfc--1 { top: 22%; right: 8%; animation: floatA 5s ease-in-out infinite; }
.hfc--2 { bottom: 22%; right: 18%; animation: floatB 6s ease-in-out infinite; }
.hfc--3 { top: 50%; right: 36%; animation: floatA 7s ease-in-out infinite 1s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

.hfc-label { font-size: 0.7rem; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.hfc-value { font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.hfc-value.up { color: var(--sage); }
.hfc-sub { font-size: 0.72rem; color: var(--sage); font-weight: 600; }

.hfc--2 .hfc-value { font-size: 1.1rem; }
.hfc--3 .mini-bar {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
  margin-top: 6px;
}
.mini-bar span {
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: var(--coral);
  opacity: 0.3;
}
.mini-bar span:nth-child(3) { opacity: 0.6; }
.mini-bar span:nth-child(4) { opacity: 0.8; }
.mini-bar span:nth-child(5) { opacity: 1; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--coral-bg);
  border: 1px solid var(--coral-border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 28px;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
  animation: bpulse 2s infinite;
}
@keyframes bpulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,92,53,0.5)} 50%{box-shadow:0 0 0 6px rgba(255,92,53,0)} }

.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  color: var(--coral);
  font-style: normal;
  position: relative;
}
.hero-p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 50ch;
  margin-bottom: 40px;
  color: var(--ink-muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.trust-avatars {
  display: flex;
}
.trust-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--bg-warm);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-stars { color: var(--gold); font-size: 0.75rem; }

.hero-stats-row {
  display: flex;
  gap: 0;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: fit-content;
  margin-top: 0;
}
.hstat { padding: 0 28px; text-align: center; }
.hstat:first-child { padding-left: 0; }
.hstat:last-child { padding-right: 0; }
.hstat-div { width: 1px; background: var(--border); align-self: stretch; }
.hstat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}
.hstat-unit { font-size: 1.4rem; font-weight: 800; }
.hstat-lbl { display: block; font-family: var(--font-display); font-size: 0.75rem; color: var(--ink-faint); margin-top: 4px; }

/* ── MARQUEE (logo band) ───────────────────────────────────── */
.marquee-section {
  padding: 32px 0;
  background: var(--navy);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); opacity: 0.6; }

/* ── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--coral);
  border-radius: 3px;
  transition: width 0.35s var(--ease);
}
.svc-card:hover { border-color: var(--coral-border); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card:hover::after { width: 100%; }
.svc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--coral-bg);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--coral);
  transition: background 0.3s;
}
.svc-card:hover .svc-icon-wrap { background: var(--coral); color: #fff; }
.svc-icon-wrap svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.05rem; color: var(--ink); margin: 0; }
.svc-card p { font-size: 0.87rem; margin: 0; flex: 1; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
  margin-top: 4px;
  transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 10px; }

/* ── RESULTS NUMBERS ───────────────────────────────────────── */
.results-band {
  background: var(--navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.results-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.result-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.result-item:last-child { border-right: none; }
.result-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label { font-family: var(--font-display); font-size: 0.8rem; color: rgba(255,255,255,0.5); max-width: 18ch; margin: 0 auto; }

/* ── PROCESS ───────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--coral) 0, var(--coral) 8px, transparent 8px, transparent 18px);
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 20px;
}
.proc-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.proc-step:hover .proc-num { background: var(--coral); color: #fff; border-color: var(--coral); transform: scale(1.08); box-shadow: var(--shadow-coral); }
.proc-step h3 { font-size: 0.95rem; }
.proc-step p { font-size: 0.83rem; max-width: 18ch; margin: 0 auto; }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card--hero {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.price-card--hero h3,
.price-card--hero .price-name,
.price-card--hero .price-amount,
.price-card--hero .price-features li { color: #fff; }
.price-card--hero p { color: rgba(255,255,255,0.65); }
.price-card--hero .price-from,
.price-card--hero .price-cur { color: rgba(255,255,255,0.6); }
.price-card--hero .price-features li::before { color: var(--coral); }
.price-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-from { font-family: var(--font-display); font-size: 0.82rem; color: var(--ink-faint); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.price-cur { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-muted); }
.price-desc { font-size: 0.87rem; margin-bottom: 28px; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before { content: '✓'; color: var(--sage); font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--coral-border); }
.testi-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; }
.testi-text { font-size: 0.95rem; font-style: italic; color: var(--ink-mid); flex: 1; max-width: none; }
.testi-author { display: flex; flex-direction: column; gap: 2px; }
.testi-author strong { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.testi-author span { font-family: var(--font-display); font-size: 0.75rem; color: var(--coral); font-weight: 600; }

/* ── DIAGONAL CTA BAND ─────────────────────────────────────── */
.cta-band {
  position: relative;
  background: var(--coral);
  padding: 88px 0;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -50%; left: 5%;
  width: 400px; height: 400px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}
.cta-band-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-band-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-band-inner p { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin: 0 auto 36px; }
.cta-band .btn--white {
  background: #fff;
  color: var(--coral);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cta-band .btn--white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }
.cta-band .btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.cta-band .btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--white);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 42%; height: 100%;
  background: var(--bg-tint);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { display: block; margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 20px; max-width: 14ch; }
.page-hero p { font-size: 1.1rem; max-width: 54ch; }

/* ── SERVICE DETAIL ────────────────────────────────────────── */
.svc-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-detail-grid--rev { direction: rtl; }
.svc-detail-grid--rev > * { direction: ltr; }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.svc-detail-text h2 { margin-bottom: 16px; max-width: 16ch; }
.svc-lead { font-size: 1.06rem; color: var(--ink-mid); margin-bottom: 28px; max-width: none; }
.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.svc-bullets li::before { content: '→'; color: var(--coral); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

.svc-visual {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.svc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
}
.svc-visual-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.svc-visual-icon {
  width: 72px; height: 72px;
  background: var(--coral-bg);
  border: 2px solid var(--coral-border);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--coral);
}
.svc-visual-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.svc-visual-tags span {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* SEO rank mock */
.rank-mock { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.rank-row {
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rank-row--1 { background: var(--coral); color: #fff; }
.rank-row--2, .rank-row--3 { background: var(--white); color: var(--ink-muted); border: 1px solid var(--border); }
.rank-pos { font-weight: 800; width: 20px; }

/* ── PORTFOLIO PAGE ────────────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.port-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--coral-border); }
.port-thumb {
  height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.pt--1 { background: linear-gradient(135deg, #fff1ed 0%, #ffe4d9 100%); }
.pt--2 { background: linear-gradient(135deg, #f0f7f3 0%, #d9f0e4 100%); }
.pt--3 { background: linear-gradient(135deg, #f0f4ff 0%, #dce6ff 100%); }
.pt--4 { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); }
.pt--5 { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); }
.pt--6 { background: linear-gradient(135deg, #f0fafe 0%, #bfecff 100%); }
.port-icon { font-size: 3.2rem; }
.port-chips { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.port-chips span {
  padding: 3px 10px;
  background: rgba(255,255,255,0.85);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-mid);
}
.port-body { padding: 24px; }
.port-meta { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.port-body h3 { font-size: 0.98rem; margin-bottom: 8px; }
.port-body p { font-size: 0.83rem; margin-bottom: 16px; }
.port-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--sage-bg);
  border: 1px solid rgba(74,124,89,0.2);
  color: var(--sage);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
}
.port-card.hidden { display: none; }

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.story-text .section-label { margin-bottom: 12px; }
.story-text h2 { margin-bottom: 20px; }
.story-text p { margin-bottom: 16px; }

.stat-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.smos {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.smos:hover { border-color: var(--coral-border); box-shadow: var(--shadow-md); }
.smos-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}
.smos-unit { font-size: 1.5rem; }
.smos-lbl { display: block; font-family: var(--font-display); font-size: 0.76rem; color: var(--ink-faint); margin-top: 4px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.val-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.val-card:hover { border-color: var(--coral-border); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.val-icon { font-size: 2.4rem; margin-bottom: 14px; }
.val-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.val-card p { font-size: 0.84rem; max-width: none; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.team-card:hover { border-color: var(--coral-border); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avi {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 14px;
}
.ta--1 { background: var(--coral-bg); }
.ta--2 { background: var(--sage-bg); }
.ta--3 { background: #f5f3ff; }
.ta--4 { background: var(--gold-bg); }
.team-card .role { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin: 4px 0 10px; }
.team-card p { font-size: 0.82rem; max-width: none; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.why-item:hover { border-color: var(--coral-border); box-shadow: var(--shadow-md); }
.why-check {
  width: 34px; height: 34px;
  background: var(--coral-bg);
  color: var(--coral);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.why-item h3 { font-size: 0.93rem; margin-bottom: 5px; }
.why-item p { font-size: 0.83rem; max-width: none; margin: 0; }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.form-sub { font-size: 0.92rem; margin-bottom: 32px; }
.cform { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { display: flex; flex-direction: column; gap: 6px; }
.fgroup label { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.fgroup label span { color: var(--coral); }
.fgroup input,
.fgroup textarea,
.fgroup select {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,92,53,0.12);
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: var(--ink-faint); }
.fgroup textarea { resize: vertical; min-height: 120px; }
.sel-wrap { position: relative; }
.sel-wrap select { appearance: none; padding-right: 40px; cursor: pointer; }
.sel-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); pointer-events: none; }
.field-err { font-family: var(--font-display); font-size: 0.75rem; color: #e53e3e; min-height: 16px; }
.chk-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.81rem;
  color: var(--ink-muted);
}
.chk-label input { display: none; }
.chk-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border-md);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
  display: grid;
  place-items: center;
}
.chk-label input:checked ~ .chk-box { background: var(--coral); border-color: var(--coral); }
.chk-label input:checked ~ .chk-box::after { content: '✓'; color: #fff; font-size: 10px; font-weight: 800; }
.chk-label a { color: var(--coral); }
.form-ok, .form-err {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.form-ok { background: var(--sage-bg); border: 1px solid rgba(74,124,89,0.25); color: var(--sage); }
.form-err { background: #fff5f5; border: 1px solid rgba(229,62,62,0.25); color: #c53030; }
.form-err a { color: #c53030; text-decoration: underline; }

.contact-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.contact-panel h2 { font-size: 1.3rem; margin-bottom: 28px; }
.cinfo-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; }
.cinfo-icon {
  width: 40px; height: 40px;
  background: var(--coral-bg);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cinfo-item strong { display: block; font-family: var(--font-display); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 2px; }
.cinfo-item a, .cinfo-item span { font-family: var(--font-display); font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; }
.cinfo-item a:hover { color: var(--coral); }

.contact-promise {
  background: var(--coral-bg);
  border: 1px solid var(--coral-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.contact-promise h3 { font-size: 0.88rem; margin-bottom: 10px; }
.contact-promise ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.contact-promise li { font-family: var(--font-display); font-size: 0.83rem; color: var(--ink-muted); }
.contact-promise li::before { content: '✓ '; color: var(--coral); font-weight: 800; }

.faq-mini h3 { font-size: 0.88rem; margin-bottom: 10px; }
.faq-acc { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.faq-item summary::after { content: '+'; color: var(--coral); font-size: 1.2rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-family: var(--font-display); font-size: 0.82rem; color: var(--ink-muted); padding: 0 0 12px; margin: 0; max-width: none; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-family: var(--font-display); font-size: 0.87rem; color: rgba(255,255,255,0.5); max-width: 28ch; margin-bottom: 20px; }
.footer-brand address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}
.footer-brand address a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-brand address a:hover { color: var(--coral); }
.fnav h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.fnav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fnav a { font-family: var(--font-display); font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.fnav a:hover { color: var(--coral); }
.footer-hours h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-hours p { font-family: var(--font-display); font-size: 0.87rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; max-width: none; }
.footer-hours strong { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 0.77rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }
.reveal--d5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-floating-card { display: none; }
  .hero-bg-shape { width: 100%; border-radius: 0; opacity: 0.4; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-detail-grid--rev { direction: ltr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: all; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; color: var(--ink); }
  .nav-links .nav-cta { text-align: center; margin-left: 0; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats-row { flex-direction: column; width: 100%; }
  .hstat-div { width: 100%; height: 1px; align-self: auto; }
  .hstat { padding: 14px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .page-hero-stripe { opacity: 0.3; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .result-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .result-item:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
