/* =========================================================
   MUHAMMAD AHMAD — SEO PORTFOLIO
   Design tokens: dark "control-room" theme built around the
   idea of a live SERP — gold = ranked/featured, teal = growth.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --bg:            #0A2029;
  --bg-soft:       #0D2530;
  --surface:       #12303D;
  --surface-alt:   #1B4757;
  --border:        #234656;
  --border-soft:   #1A3946;

  --text:          #FFFFFF;
  --text-muted:    #B7C6CC;
  --text-faint:    #7C929B;

  --gold:          #FF7A45;
  --gold-dim:      #8A3F22;
  --teal:          #7FA6B3;
  --teal-dim:      #3E5A63;
  --coral:         #FF5A5A;

  --grad-gold:     linear-gradient(135deg, #FF7A45 0%, #E85A2B 100%);
  --grad-teal:     linear-gradient(135deg, #7FA6B3 0%, #4A7482 100%);

  --font-display:  'Sora', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before{
  content:'';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 400px at 85% -5%, rgba(255,122,69,0.08), transparent 60%),
    radial-gradient(600px 500px at -5% 30%, rgba(127,166,179,0.07), transparent 60%);
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1em; color: var(--text-muted); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor: pointer; }

.mono{ font-family: var(--font-mono); }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px){
  .container{ padding: 0 18px; }
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:'';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,122,69,0.18);
}

.section{ padding: 110px 0; position: relative; z-index: 1; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 42px); }
.section-head p{ font-size: 17px; }

@media (max-width: 760px){
  .section{ padding: 76px 0; }
  .section-head{ margin-bottom: 40px; }
}
@media (max-width: 480px){
  .section{ padding: 60px 0; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--grad-gold);
  color: #0A2029;
  box-shadow: 0 8px 26px rgba(255,122,69,0.28);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,122,69,0.4); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover{ border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-block{ width: 100%; }
.btn:disabled{ opacity:.6; cursor:not-allowed; transform:none; }

/* ---------- Nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,12,18,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand img.brand-logo{
  height: 32px;
  width: auto;
  display: block;
}
.footer-brand img.brand-logo{
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
/* White chip so client logos stay legible regardless of their own background */
.logo-chip{
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  flex-shrink: 0;
}
.logo-chip img{
  max-height: 30px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links{
  display:flex; align-items:center; gap: 34px;
}
.nav-links a{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--text); }
.nav-links a.active::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:100%; height:2px;
  background: var(--gold);
  border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:16px; }
.nav-toggle{
  display:none;
  flex-direction: column;
  gap: 5px;
  background:none; border:none; padding: 8px;
}
.nav-toggle span{ width:22px; height:2px; background: var(--text); border-radius:2px; }

.mobile-menu{
  display:none;
  position: fixed;
  top: 76px; left:0; right:0; bottom:0;
  background: var(--bg-soft);
  z-index: 99;
  padding: 30px 28px;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-display);
}
.mobile-menu .btn{ margin-top: 20px; }

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn{ display:none; }
}

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 30px;
  position: relative; z-index:1;
}
.footer-top{
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap: wrap; gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 24px;
}
.footer-brand p{ max-width: 320px; font-size: 14.5px; }
.footer-cols{ display:flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4{ font-size: 13px; font-family: var(--font-mono); letter-spacing:.08em; text-transform:uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-col a{ display:block; font-size: 14.5px; color: var(--text-muted); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap: 12px; font-size: 13px; color: var(--text-faint); }
.social-row{ display:flex; gap: 12px; }
.social-row a{
  width: 38px; height:38px; border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.social-row a:hover{ border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding: 168px 0 110px;
  position: relative;
  z-index:1;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-kicker{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 22px;
}
.hero-kicker .pulse{
  width:8px; height:8px; border-radius:50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(127,166,179,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(127,166,179,.55); }
  70%{ box-shadow: 0 0 0 10px rgba(127,166,179,0); }
  100%{ box-shadow: 0 0 0 0 rgba(127,166,179,0); }
}
.hero h1{
  font-size: clamp(38px, 5.2vw, 64px);
  margin-bottom: 22px;
}
.hero h1 .accent{
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub{
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-sub b{ color: var(--text); }
.hero-actions{ display:flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats{ display:flex; gap: 40px; flex-wrap: wrap; }
.hero-stat b{
  display:block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
}
.hero-stat span{ font-size: 13px; color: var(--text-faint); font-family: var(--font-mono); }

/* Hero collapses to single column on tablets/phones — previously had NO breakpoint at all */
@media (max-width: 900px){
  .hero{ padding: 130px 0 70px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 44px; }
  .hero-sub{ max-width: 100%; }
}
@media (max-width: 480px){
  .hero{ padding: 118px 0 56px; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; }
  .hero-stats{ gap: 22px; }
}

/* --- Signature element: live SERP card --- */
.serp-widget{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.serp-widget::after{
  content:'';
  position:absolute; inset:-1px;
  border-radius: var(--radius-lg);
  padding:1px;
  background: linear-gradient(135deg, rgba(255,122,69,.35), transparent 40%, rgba(127,166,179,.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}
.serp-bar{
  display:flex; align-items:center; gap:10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  margin-bottom: 20px;
}
.serp-bar svg{ width:16px; height:16px; color: var(--text-faint); flex-shrink:0; }
.serp-type{
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
}
.serp-cursor{
  display:inline-block; width:2px; height:14px;
  background: var(--teal);
  margin-left:2px;
  animation: blink 1s steps(1) infinite;
  vertical-align: middle;
}
@keyframes blink{ 50%{ opacity:0; } }

.serp-result{
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}
.serp-badge{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing:.06em;
  color: #0A2029;
  background: var(--grad-gold);
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 12px;
  font-weight: 700;
}
.serp-url{ font-size: 13px; color: var(--teal); margin-bottom: 6px; font-family: var(--font-mono); }
.serp-title{ font-family: var(--font-display); font-size: 19px; color: var(--text); margin-bottom: 6px; }
.serp-desc{ font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

.serp-chart{
  display:flex; align-items:flex-end; gap:6px;
  height: 64px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-soft);
}
.serp-chart i{
  flex:1;
  background: linear-gradient(180deg, rgba(127,166,179,.9), rgba(127,166,179,.15));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: grow 1.4s ease forwards;
  transform: scaleY(0);
}
@keyframes grow{ to{ transform: scaleY(1); } }
.serp-chart-label{ display:flex; justify-content:space-between; margin-top:8px; font-size:11px; color:var(--text-faint); font-family: var(--font-mono); }

/* =========================================================
   QUICK BOOKING STRIP
   ========================================================= */
.book-strip{
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 56px 0;
  position: relative; z-index:1;
}
.book-grid{
  display:flex; align-items:center; justify-content:space-between; gap: 40px; flex-wrap: wrap;
}
.book-copy h3{ font-size: 24px; margin-bottom:6px; }
.book-copy p{ margin:0; font-size:14.5px; }
.book-form{
  display:flex; gap: 12px; flex-wrap: wrap;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 999px;
}
.book-form input{
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 12px 16px;
  min-width: 180px;
}
.book-form input::placeholder{ color: var(--text-faint); }
.book-form .btn{ flex-shrink:0; }
@media (max-width: 760px){
  .book-form{ border-radius: var(--radius-md); flex-direction:column; width:100%; }
  .book-form input{ width:100%; }
  .book-form .btn{ width:100%; }
}

/* =========================================================
   EXPERTISE CARDS
   ========================================================= */
.expertise-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.xcard{
  --hue: var(--gold);
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  cursor: default;
}
.xcard:hover{
  transform: translateY(-8px);
  border-color: rgba(255,122,69,0.4);
  box-shadow: var(--shadow-md);
}
.xcard::before{
  content: attr(data-index);
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: .06em;
}
.xcard-glow{
  position:absolute; width: 180px; height:180px;
  background: radial-gradient(circle, rgba(255,122,69,0.18), transparent 70%);
  top:-60px; left:-60px;
  border-radius:50%;
  opacity:0;
  transition: opacity .4s ease, transform .6s ease;
  pointer-events:none;
}
.xcard:hover .xcard-glow{ opacity:1; transform: translate(30px,30px); }
.xcard-icon{
  width: 52px; height:52px;
  border-radius: 13px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.xcard:hover .xcard-icon{ background: var(--grad-gold); color:#0A2029; transform: rotate(-6deg) scale(1.06); }
.xcard-icon svg{ width:24px; height:24px; }
.xcard h3{ font-size: 19px; margin-bottom: 10px; position:relative; z-index:1; }
.xcard p{ font-size: 14.5px; margin-bottom: 0; position:relative; z-index:1; }
.xcard-tag{
  display:inline-block; margin-top:16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  border: 1px solid var(--teal-dim);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .04em;
}

@media (max-width: 980px){ .expertise-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .expertise-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   WORKFLOW — 6 step connected process
   ========================================================= */
.workflow{ position: relative; }
.workflow-track{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.workflow-track::before{
  content:'';
  position:absolute;
  left:0; right:0; top: 44px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index:0;
}
.wstep{
  position: relative;
  z-index:1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px 26px;
  transition: transform .35s ease, border-color .3s ease;
}
.wstep:hover{ transform: translateY(-6px); border-color: rgba(127,166,179,.4); }
.wstep-num{
  width: 44px; height:44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
  transition: background .3s ease, color .3s ease, border-color .3s;
}
.wstep:hover .wstep-num{ background: var(--grad-teal); color:#0A2029; border-color: transparent; }
.wstep h3{ font-size: 17.5px; margin-bottom: 8px; }
.wstep p{ font-size: 14px; margin-bottom:0; }
.wstep-phase{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
  display:block;
}
@media (max-width: 980px){ .workflow-track{ grid-template-columns: repeat(2,1fr); } .workflow-track::before{ display:none; } }
@media (max-width: 620px){ .workflow-track{ grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS — auto-scroll marquee
   ========================================================= */
.marquee-wrap{
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track{
  display: flex;
  gap: 22px;
  width: max-content;
  animation: scroll-left 42s linear infinite;
}
.marquee-wrap:hover .marquee-track{ animation-play-state: paused; }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.tcard{
  width: 360px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.tcard-stars{ color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.tcard p{ font-size: 14.5px; color: var(--text); margin-bottom: 22px; min-height: 90px; }
.tcard-person{ display:flex; align-items:center; gap: 12px; }
.tcard-avatar{
  width: 46px; height:46px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size: 14px;
  color: #0A2029;
  background: var(--grad-gold);
  flex-shrink:0;
  overflow: hidden;
}
.tcard-avatar img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tcard-person b{ display:block; font-size: 14px; }
.tcard-person span{ font-size: 12.5px; color: var(--text-faint); }

/* =========================================================
   FORMS (contact / query)
   ========================================================= */
.form-shell{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}
.field{ display:flex; flex-direction: column; gap: 8px; }
.field.full{ grid-column: 1 / -1; }
.field label{
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.field input, .field select, .field textarea{
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field select{ appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B93A7' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 15px center; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(127,166,179,0.14);
}
.field small{ color: var(--text-faint); font-size: 12px; }
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{
  display:flex; align-items:flex-start; gap:10px;
  font-size: 13px; color: var(--text-faint);
  margin-top: 18px;
}
.form-status{
  margin-top: 16px;
  font-size: 14px;
  font-family: var(--font-mono);
  display:none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.form-status.show{ display:block; }
.form-status.ok{ background: rgba(127,166,179,0.12); color: var(--teal); border:1px solid var(--teal-dim); }
.form-status.err{ background: rgba(255,107,94,0.12); color: var(--coral); border:1px solid rgba(255,107,94,0.4); }

@media (max-width: 700px){
  .form-shell{ padding: 26px; }
  .form-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-hero{
  padding: 160px 0 70px;
  position: relative; z-index:1;
}
.page-hero .eyebrow{ margin-bottom: 18px; }
.page-hero h1{ font-size: clamp(32px, 4.4vw, 50px); max-width: 760px; }
.page-hero p{ max-width: 600px; font-size: 17px; }

@media (max-width: 700px){
  .page-hero{ padding: 128px 0 50px; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-layout{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
}
.about-side{ position: sticky; top: 100px; align-self: start; }
.about-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.about-card h4{ font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing:.08em; color: var(--text-faint); margin-bottom: 16px; }
.about-stat-row{ display:flex; justify-content:space-between; padding: 10px 0; border-bottom: 1px solid var(--border-soft); font-size: 14px; }
.about-stat-row:last-child{ border-bottom:none; }
.about-stat-row b{ color: var(--gold); font-family: var(--font-mono); }

.timeline{ position: relative; padding-left: 34px; }
.timeline::before{
  content:'';
  position:absolute; left: 7px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border);
}
.tl-item{ position: relative; padding-bottom: 42px; }
.tl-item:last-child{ padding-bottom: 0; }
.tl-dot{
  position:absolute; left: -34px; top: 3px;
  width: 15px; height:15px; border-radius:50%;
  background: var(--bg-soft);
  border: 2px solid var(--teal);
}
.tl-item.current .tl-dot{ background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255,122,69,0.18); }
.tl-date{ font-family: var(--font-mono); font-size: 12.5px; color: var(--text-faint); margin-bottom: 6px; display:block; }
.tl-item h3{ font-size: 19px; margin-bottom: 2px; }
.tl-item .tl-role{ font-size: 14px; color: var(--teal); margin-bottom: 12px; display:block; font-weight:600; }
.tl-item ul{ margin-top: 10px; }
.tl-item li{ font-size: 14.5px; color: var(--text-muted); padding-left: 18px; position: relative; margin-bottom: 8px; }
.tl-item li::before{ content:'—'; position:absolute; left:0; color: var(--text-faint); }

.industry-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.industry-chip{
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

@media (max-width: 900px){
  .about-layout{ grid-template-columns: 1fr; }
  .about-side{ position: static; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
@media (max-width: 480px){
  .contact-info-card{ padding: 24px; }
}
.contact-row{
  display:flex; align-items:flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-row:last-of-type{ border-bottom: none; }
.contact-row .ci-icon{
  width: 42px; height:42px; border-radius: 11px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  flex-shrink:0;
}
.contact-row h4{ font-size: 13px; color: var(--text-faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing:.06em; margin-bottom: 4px; }
.contact-row a, .contact-row span{ font-size: 15.5px; color: var(--text); font-weight: 600; }
.avail-badge{
  display:flex; align-items:center; gap:8px;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--teal);
  font-family: var(--font-mono);
}
@media (max-width: 940px){ .contact-layout{ grid-template-columns: 1fr; } }

/* =========================================================
   TERMS PAGE
   ========================================================= */
.terms-toc{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 50px;
}
.terms-toc h4{ font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin-bottom: 14px; }
.terms-toc-list{ display:grid; grid-template-columns: repeat(3,1fr); gap: 10px 20px; }
.terms-toc-list a{ font-size: 13.5px; color: var(--text-muted); }
.terms-toc-list a:hover{ color: var(--teal); }
@media (max-width: 760px){ .terms-toc-list{ grid-template-columns: 1fr 1fr; } }

.term-block{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border-soft);
  scroll-margin-top: 100px;
}
.term-block:first-of-type{ padding-top: 0; }
.term-num{
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--border);
}
.term-block h3{ font-size: 20px; margin-bottom: 10px; }
.term-block p{ font-size: 15px; margin-bottom: 0; }
.term-highlight{
  display:inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: rgba(255,122,69,0.06);
  padding: 5px 12px;
  border-radius: 6px;
}
@media (max-width: 640px){
  .term-block{ grid-template-columns: 1fr; gap: 8px; }
  .term-num{ font-size: 22px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* =========================================================
   CASE STUDIES — listing page
   ========================================================= */
.cs-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.cs-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.cs-card:hover{ transform: translateY(-8px); border-color: rgba(127,166,179,0.4); box-shadow: var(--shadow-md); }
.cs-card-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 22px; }
.cs-logo{
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size:15px;
  color: var(--gold);
}
.cs-industry{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
}
.cs-card h3{ font-size: 23px; margin-bottom: 10px; }
.cs-card p{ font-size: 14.5px; margin-bottom: 22px; }
.cs-metric-row{ display:flex; gap: 24px; margin-bottom: 26px; flex-wrap: wrap; }
.cs-metric b{
  display:block; font-family: var(--font-display); font-size: 24px; color: var(--teal);
}
.cs-metric span{ font-size: 11.5px; color: var(--text-faint); font-family: var(--font-mono); text-transform: uppercase; }
.cs-card .btn{ width: 100%; justify-content: space-between; }
.cs-card .btn svg{ width:16px; height:16px; transition: transform .25s ease; }
.cs-card:hover .btn svg{ transform: translateX(4px); }
@media (max-width: 860px){ .cs-grid{ grid-template-columns: 1fr; } }
@media (max-width: 400px){ .cs-card{ padding: 26px 22px; } }

/* =========================================================
   CASE STUDY DETAIL — shared components
   ========================================================= */
.cs-hero{
  padding: 158px 0 60px;
  position: relative; z-index:1;
}
@media (max-width: 700px){
  .cs-hero{ padding: 128px 0 44px; }
}
.cs-hero-top{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 24px;
}
.cs-meta-row{ display:flex; gap: 10px; flex-wrap: wrap; }
.cs-meta-chip{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 13px;
  border-radius: 999px;
}
.cs-hero h1{ font-size: clamp(30px, 4.2vw, 46px); max-width: 780px; }
.cs-hero-lede{ font-size: 17.5px; max-width: 680px; }

/* Sticky mini progress / back link */
.cs-backbar{
  position: sticky; top: 76px; z-index: 40;
  background: rgba(10,12,18,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
}
.cs-backbar a{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13.5px; font-weight:600; color: var(--text-muted);
}
.cs-backbar a:hover{ color: var(--teal); }

/* Before / After */
.ba-wrap{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ba-card{
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
}
.ba-card.before{ background: var(--surface); }
.ba-card.after{ background: linear-gradient(160deg, rgba(127,166,179,0.08), var(--surface) 60%); border-color: rgba(127,166,179,0.35); }
.ba-label{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing:.08em; text-transform:uppercase;
  margin-bottom: 16px; display:inline-block;
}
.ba-card.before .ba-label{ color: var(--coral); }
.ba-card.after .ba-label{ color: var(--teal); }
.ba-stat{ display:flex; justify-content:space-between; padding: 11px 0; border-bottom: 1px solid var(--border-soft); font-size: 14.5px; }
.ba-stat:last-child{ border-bottom:none; }
.ba-stat b{ font-family: var(--font-mono); color: var(--text); }
@media (max-width: 760px){ .ba-wrap{ grid-template-columns: 1fr; } }

/* Animated stat counters */
.counter-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.counter-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  transition: border-color .3s ease, transform .3s ease;
}
.counter-card:hover{ border-color: rgba(255,122,69,0.4); transform: translateY(-4px); }
.counter-num{
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  display:block;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.counter-label{ font-size: 12.5px; color: var(--text-faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 860px){ .counter-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px){ .counter-grid{ grid-template-columns: 1fr; } .counter-num{ font-size: 30px; } }

/* Animated growth chart (SVG line, draw-in) */
.growth-chart-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.growth-chart-head{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:14px; margin-bottom: 22px; }
.growth-chart-head h3{ font-size: 19px; margin-bottom: 4px; }
.growth-chart-head p{ font-size: 13.5px; margin-bottom:0; }
.growth-legend{ display:flex; gap: 18px; flex-wrap: wrap; }
.growth-legend span{ display:flex; align-items:center; gap:7px; font-size: 12.5px; font-family: var(--font-mono); color: var(--text-muted); }
.growth-legend i{ width:10px; height:10px; border-radius:3px; display:inline-block; }
.chart-svg-wrap{ width:100%; overflow:hidden; }
.chart-svg-wrap svg{ width:100%; height:auto; display:block; }
.chart-line{
  fill:none; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.2s cubic-bezier(.2,.7,.2,1);
}
.chart-line.in{ stroke-dashoffset: 0; }
.chart-area{ opacity:0; transition: opacity 1.4s ease .4s; }
.chart-area.in{ opacity: 1; }
.chart-axis-label{ font-family: var(--font-mono); font-size: 11px; fill: var(--text-faint); }
.chart-dot{ opacity:0; transition: opacity .4s ease, r .3s ease; cursor: pointer; }
.chart-dot.in{ opacity:1; }
.chart-dot:hover{ r:7; }
.chart-tooltip{
  position:absolute; pointer-events:none;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  opacity: 0;
  transform: translate(-50%,-120%);
  transition: opacity .15s ease;
  white-space: nowrap;
  z-index: 5;
}
.chart-tooltip.show{ opacity:1; }
.chart-container{ position: relative; }

/* Stacking cards (strategy section) — cards pin, overlay, and peel away on scroll */
.stack-wrap{ position: relative; }
.stack-item{
  height: 58vh;
  min-height: 280px;
}
.stack-item:last-child{ height: auto; min-height: 0; }
.stack-card{
  position: sticky;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 55px rgba(0,0,0,0.4);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .45s ease, opacity .45s ease;
  transform-origin: top center;
  will-change: transform;
}
.stack-item:last-child .stack-card{ position: relative; top: 0 !important; }
.stack-card.is-covered{
  transform: scale(0.94) translateY(-10px);
  filter: brightness(0.7);
  opacity: 0.9;
}
.stack-card-top{ display:flex; align-items:center; gap:16px; margin-bottom: 18px; }
.stack-num{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: rgba(255,122,69,0.08);
  padding: 5px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.stack-card-top h4{ font-family: var(--font-display); font-size: 21px; margin:0; }
.stack-card p{ font-size: 15px; margin-bottom: 0; max-width: 640px; }
@media (max-width: 720px){
  .stack-card{ padding: 28px 26px; }
  .stack-item{ height: 46vh; min-height: 240px; }
}

/* Tabs (GA4 / GSC proof) */
.proof-tabs{ display:flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.proof-tab{
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all .25s ease;
}
.proof-tab.active{ background: var(--grad-teal); color: #0A2029; border-color: transparent; font-weight:600; }
.proof-tab:not(.active):hover{ border-color: var(--teal); color: var(--teal); }
.proof-panel{ display:none; }
.proof-panel.active{ display:block; }
.proof-shot{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.proof-shot img{ width:100%; display:block; }
.proof-caption{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  margin-top: 16px;
  font-size: 13px; color: var(--text-faint); font-family: var(--font-mono);
}
.proof-caption b{ color: var(--teal); }

/* Impact / result cards */
.impact-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.impact-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
}
.impact-card::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background: var(--grad-gold);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.impact-card h4{ font-size: 15.5px; margin-bottom: 8px; }
.impact-card p{ font-size: 13.5px; margin-bottom: 0; }
@media (max-width: 900px){ .impact-grid{ grid-template-columns: 1fr; } }

/* Pull quote */
.pull-quote{
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 26px;
  margin: 10px 0;
}
.pull-quote p{ font-size: 19px; color: var(--text); font-family: var(--font-display); font-weight:500; line-height:1.4; margin-bottom: 10px; }
.pull-quote span{ font-size: 13px; color: var(--text-faint); font-family: var(--font-mono); }

/* CTA banner (lead gen, reused across pages) */
.cta-banner{
  background: linear-gradient(135deg, rgba(255,122,69,0.1), rgba(127,166,179,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 30px; flex-wrap: wrap;
}
.cta-banner h3{ font-size: 24px; margin-bottom: 6px; }
.cta-banner p{ margin:0; font-size: 14.5px; max-width: 460px; }
.cta-banner-actions{ display:flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 600px){
  .cta-banner{ padding: 30px 24px; }
  .cta-banner-actions{ width: 100%; }
  .cta-banner-actions .btn{ flex: 1 1 auto; }
}

/* Case study nav (prev/next) */
.cs-nav-links{
  display:grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.cs-nav-link{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color .3s ease, transform .3s ease;
}
.cs-nav-link:hover{ border-color: var(--teal); transform: translateY(-4px); }
.cs-nav-link span{ font-family: var(--font-mono); font-size:11.5px; color: var(--text-faint); text-transform:uppercase; letter-spacing:.06em; }
.cs-nav-link h4{ font-size:17px; margin: 8px 0 0; }
.cs-nav-link.next{ text-align: right; }
@media (max-width: 700px){ .cs-nav-links{ grid-template-columns: 1fr; } }

/* Reveal stagger helper */
.reveal-1{ transition-delay: .05s; }
.reveal-2{ transition-delay: .12s; }
.reveal-3{ transition-delay: .19s; }
.reveal-4{ transition-delay: .26s; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */

/* Detailed service rows (alternating icon/content layout) */
.service-row{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-soft);
}
.service-row:first-of-type{ padding-top: 0; }
.service-row:last-of-type{ border-bottom: none; }
.service-icon{
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  flex-shrink: 0;
}
.service-icon svg{ width: 28px; height: 28px; }
.service-body h3{ font-size: 23px; margin-bottom: 10px; }
.service-body > p{ font-size: 15px; max-width: 680px; margin-bottom: 22px; }
.service-meta{ display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.service-tag{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal-dim);
  padding: 5px 12px;
  border-radius: 999px;
}
.service-includes{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.service-includes li{
  font-size: 14.5px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  list-style: none;
}
.service-includes li::before{
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: rgba(255,122,69,0.12);
  border: 1px solid var(--gold-dim);
}
.service-includes li::after{
  content: '';
  position: absolute;
  left: 3px; top: 9.5px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
@media (max-width: 700px){
  .service-row{ grid-template-columns: 1fr; gap: 18px; }
  .service-includes{ grid-template-columns: 1fr; }
}

/* Engagement tiers */
.tier-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.tier-card:hover{ transform: translateY(-6px); border-color: rgba(255,122,69,0.35); }
.tier-card.featured{
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, rgba(255,122,69,0.08), var(--surface) 55%);
  position: relative;
}
.tier-featured-badge{
  position: absolute;
  top: -13px; left: 28px;
  background: var(--grad-gold);
  color: #0A2029;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tier-name{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.tier-card h3{ font-size: 22px; margin-bottom: 10px; }
.tier-price{ font-family: var(--font-display); font-size: 17px; color: var(--gold); margin-bottom: 18px; }
.tier-price span{ font-family: var(--font-body); font-size: 13px; color: var(--text-faint); font-weight: 400; }
.tier-card p.tier-desc{ font-size: 14px; margin-bottom: 22px; }
.tier-list{ margin-bottom: 28px; flex-grow: 1; }
.tier-list li{
  font-size: 14px;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  padding-left: 20px;
  position: relative;
  list-style: none;
}
.tier-list li:last-child{ border-bottom: none; }
.tier-list li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 900px){ .tier-grid{ grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-list{ display: flex; flex-direction: column; gap: 10px; }
.faq-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item.open{ border-color: rgba(255,122,69,0.4); }
.faq-question{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-question h4{ font-family: var(--font-display); font-size: 16px; margin: 0; font-weight: 600; }
.faq-icon{
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-faint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease, color .3s ease, border-color .3s ease;
}
.faq-item.open .faq-icon{ transform: rotate(135deg); color: var(--gold); border-color: var(--gold-dim); }
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p{
  font-size: 14.5px;
  padding: 0 24px 22px;
  margin: 0;
}
.faq-item.open .faq-answer{ max-height: 500px; }
