/* ============================================================
   Alex C Consulting — premium navy & gold theme
   Fonts: Fraunces (display) + Manrope (text)
   ============================================================ */

:root {
  --navy-900: #08182c;
  --navy-800: #0b1f38;
  --navy-700: #102a4a;
  --navy-600: #163a63;
  --navy-line: rgba(201, 162, 75, 0.18);

  --gold: #c9a24b;
  --gold-soft: #d9bd7e;
  --gold-bright: #e7cf95;

  --paper: #f7f4ee;
  --paper-2: #efe9df;
  --ink: #16202e;
  --ink-soft: #4a586a;

  --white: #ffffff;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 24px 60px -28px rgba(8, 24, 44, 0.45);
  --shadow-gold: 0 16px 40px -16px rgba(201, 162, 75, 0.55);

  --font-display: "Fraunces", Georgia, serif;
  --font-text: "Manrope", system-ui, sans-serif;

  --topbar-h: 40px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

/* custom scrollbar */
html { scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-soft));
  border-radius: 20px; border: none;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(var(--gold-bright), var(--gold)); }

body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }
em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 1100; transition: width 0.1s linear;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-text); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 22px;
}
.eyebrow-dark { color: var(--gold); }
.eyebrow-dark .eyebrow-line { background: var(--gold); }
.eyebrow-line { width: 34px; height: 1px; background: var(--gold-soft); display: inline-block; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--gold);
  font-size: 0.98rem;
}
.text-link svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.3s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
  background: var(--navy-900); color: rgba(247,244,238,0.72);
  font-size: 0.8rem; height: var(--topbar-h); display: flex; align-items: center;
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  border-bottom: 1px solid var(--navy-line); transition: transform 0.4s var(--ease);
}
.topbar.hide { transform: translateY(-100%); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-tag { letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--gold-soft); font-size: 0.7rem; }
.topbar-contact { display: flex; align-items: center; gap: 16px; }
.topbar-contact a { transition: color 0.3s var(--ease); }
.topbar-contact a:hover { color: var(--gold); }
.topbar-sep { width: 1px; height: 14px; background: var(--navy-line); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: var(--topbar-h); left: 0; width: 100%; z-index: 900;
  padding: 18px 0; transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), top 0.4s var(--ease);
}
.site-header.scrolled {
  top: 0; padding: 12px 0;
  background: rgba(8, 24, 44, 0.86); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--navy-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid var(--navy-line);
  border-radius: 12px; background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  flex-shrink: 0; line-height: 1; overflow: hidden; gap: 1px;
}
.brand-mark .bm-a { color: var(--gold); }
.brand-dot { color: var(--paper); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.12rem; color: var(--paper); letter-spacing: 0.01em; }
.brand-tag { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > a:not(.nav-cta) {
  font-size: 0.92rem; font-weight: 600; color: rgba(247, 244, 238, 0.8);
  padding: 9px 16px; border-radius: 50px; position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.main-nav > a:not(.nav-cta) span { position: relative; }
.main-nav > a:not(.nav-cta) span::after {
  content: ""; position: absolute; left: 50%; bottom: -4px; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s var(--ease), left 0.3s var(--ease); border-radius: 2px;
}
.main-nav > a:not(.nav-cta):hover { color: var(--paper); background: rgba(247,244,238,0.06); }
.main-nav > a:not(.nav-cta):hover span::after { width: 100%; left: 0; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-left: 10px;
  padding: 11px 22px; border: 1px solid var(--gold); border-radius: 50px; color: var(--gold);
  font-weight: 700; font-size: 0.92rem; transition: all 0.3s var(--ease);
}
.nav-cta svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.3s var(--ease); }
.nav-cta:hover { background: var(--gold); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.nav-cta:hover svg { transform: translateX(3px); }

.mm-head, .mm-foot { display: none; }

.nav-overlay {
  position: fixed; inset: 0; z-index: 880; background: rgba(4, 12, 24, 0.6); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nav-overlay.show { opacity: 1; visibility: visible; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 950; }
.nav-toggle span { width: 26px; height: 2px; background: var(--paper); transition: 0.3s var(--ease); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px; font-family: var(--font-text);
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: linear-gradient(120deg, var(--gold), var(--gold-soft)); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -18px rgba(201, 162, 75, 0.7); }
.btn-ghost { border-color: rgba(247, 244, 238, 0.35); color: var(--paper); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-arrow { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  color: var(--paper); overflow: hidden; padding: calc(var(--topbar-h) + 120px) 0 90px;
  background: radial-gradient(120% 120% at 85% 0%, var(--navy-700) 0%, var(--navy-900) 62%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,162,75,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,162,75,0.05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(100% 80% at 70% 20%, #000 30%, transparent 75%);
}
.hero-glow {
  position: absolute; top: -10%; right: -5%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(201,162,75,0.22), transparent 65%);
  filter: blur(20px); animation: float 14s ease-in-out infinite; pointer-events: none;
}
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 30px); } }

.hero-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; flex: 1; }

.hero-left { display: flex; flex-direction: column; justify-content: center; }
.hero-slider { position: relative; min-height: 360px; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.7s var(--ease); pointer-events: none;
}
.slide.is-active { position: relative; opacity: 1; visibility: visible; pointer-events: auto; }
.slide h1, .slide .slide-title { font-size: clamp(2.3rem, 4.4vw, 4rem); margin-bottom: 24px; line-height: 1.04; font-weight: 500; letter-spacing: -0.01em; }
.slide[data-layout="pillars"] .slide-title,
.slide[data-layout="quote"] .slide-title { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.slide-lead { font-size: clamp(1.02rem, 1.4vw, 1.22rem); color: rgba(247, 244, 238, 0.82); max-width: 560px; margin-bottom: 36px; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* slide variant — pillars */
.slide-pillars { list-style: none; display: grid; gap: 14px; margin: 0 0 34px; max-width: 540px; }
.slide-pillars li { display: flex; align-items: center; gap: 16px; }
.slide-pillars svg {
  width: 24px; height: 24px; stroke: var(--gold); stroke-width: 1.7; fill: none; flex-shrink: 0;
  padding: 9px; box-sizing: content-box; border: 1px solid var(--navy-line); border-radius: 12px;
  background: rgba(201,162,75,0.07);
}
.slide-pillars strong { display: block; font-family: var(--font-text); font-weight: 700; font-size: 1rem; color: var(--paper); }
.slide-pillars span { font-size: 0.86rem; color: rgba(247,244,238,0.6); }

/* slide variant — pull quote */
.slide-quote { position: relative; border-left: 2px solid var(--gold); padding: 4px 0 4px 24px; margin: 0 0 32px; max-width: 540px; }
.slide-quote .sq-mark { position: absolute; top: -10px; left: 14px; font-family: var(--font-display); font-size: 3rem; color: rgba(201,162,75,0.35); line-height: 1; }
.slide-quote p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.45; color: rgba(247,244,238,0.92); }
.slide-quote footer { margin-top: 14px; }
.sq-name { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }

.slide.is-active .eyebrow,
.slide.is-active h1,
.slide.is-active .slide-title,
.slide.is-active .slide-lead,
.slide.is-active .slide-pillars,
.slide.is-active .slide-quote,
.slide.is-active .slide-actions { animation: riseIn 0.8s var(--ease) both; }
.slide.is-active h1,
.slide.is-active .slide-title { animation-delay: 0.08s; }
.slide.is-active .slide-lead,
.slide.is-active .slide-pillars,
.slide.is-active .slide-quote { animation-delay: 0.18s; }
.slide.is-active .slide-actions { animation-delay: 0.28s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-controls { display: flex; align-items: center; gap: 22px; margin-top: 44px; flex-wrap: wrap; }
.hero-nav { display: flex; gap: 10px; }
.hero-arrow {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--navy-line); background: rgba(247,244,238,0.04);
  display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.hero-arrow svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 2; fill: none; transition: transform 0.3s var(--ease); }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.hero-arrow:hover svg { stroke: var(--navy-900); }
.hero-arrow:active { transform: scale(0.94); }
#heroPrev:hover svg { transform: translateX(-2px); }
#heroNext:hover svg { transform: translateX(2px); }
.hero-dots { display: flex; gap: 12px; }
.hero-dots button {
  width: 38px; height: 4px; border: none; border-radius: 4px; cursor: pointer; padding: 0;
  background: rgba(247, 244, 238, 0.25); transition: background 0.3s var(--ease);
}
.hero-dots button.active { background: var(--gold); }
.hero-meta { font-family: var(--font-display); color: rgba(247,244,238,0.55); display: flex; gap: 6px; align-items: baseline; }
.hero-count { color: var(--gold); font-size: 1.4rem; }
.hero-count-total { font-size: 0.9rem; }

/* hero visual (right) */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }

/* subtle classical columns flanking the portrait */
.hv-columns { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.hv-col { width: clamp(46px, 7vw, 64px); height: 92%; fill: none; stroke: rgba(201,162,75,0.32); stroke-width: 1.1; opacity: 0.7; }
.hv-col line { stroke: rgba(201,162,75,0.22); }
.hv-col-left { transform: translateX(-14%); }
.hv-col-right { transform: translateX(14%) scaleX(-1); }

.hv-dots {
  position: absolute; right: 2%; bottom: 4%; width: 110px; height: 110px;
  background-image: radial-gradient(rgba(201,162,75,0.45) 1.4px, transparent 1.4px);
  background-size: 16px 16px; opacity: 0.5;
}

.portrait {
  position: relative; width: min(360px, 80%); aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--navy-line); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,24,44,0.7), transparent 45%); }
.portrait figcaption {
  position: absolute; left: 22px; bottom: 18px; z-index: 2; display: flex; flex-direction: column;
}
.pc-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--paper); }
.pc-role { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
/* fallback when no photo */
.portrait-fallback { display: none; }
.portrait.no-photo .portrait-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  position: absolute; inset: 0; text-align: center; color: rgba(247,244,238,0.6);
}
.pf-mono { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 1; }
.pf-label { font-size: 0.8rem; letter-spacing: 0.05em; }
.pf-label small { color: rgba(247,244,238,0.4); }

.hv-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 14px;
  background: rgba(11, 31, 56, 0.78); backdrop-filter: blur(10px);
  border: 1px solid var(--navy-line); border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 20px 44px -22px rgba(0,0,0,0.7); animation: bob 5s ease-in-out infinite;
}
.hv-card strong { display: block; font-family: var(--font-text); font-size: 0.92rem; color: var(--paper); }
.hv-card span:not(.hvc-ico):not(.hvc-num) { font-size: 0.76rem; color: rgba(247,244,238,0.6); }
.hv-card-1 { top: 8%; left: -4%; }
.hv-card-2 { bottom: 10%; right: -6%; animation-delay: 1.4s; }
.hvc-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--navy-700); flex-shrink: 0; }
.hvc-ico svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.8; fill: none; }
.hvc-num { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); flex-shrink: 0; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,244,238,0.5);
}
.scroll-hint-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   Stats
   ============================================================ */
.stats { background: var(--navy-900); color: var(--paper); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -15px; top: 10%; height: 80%; width: 1px; background: var(--navy-line); }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.9rem; color: rgba(247,244,238,0.7); margin-top: 10px; display: block; }

/* ============================================================
   Section heads
   ============================================================ */
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; }
.section-head-split {
  max-width: none; text-align: left; display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 30px; align-items: end; margin-bottom: 54px;
}
.section-head-split .eyebrow { justify-content: flex-start; }
.section-head-split .section-sub { margin-top: 0; }

/* ============================================================
   About — split with photo
   ============================================================ */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }

.about-visual { position: relative; }
.about-photo {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid rgba(22,32,46,0.1); box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-fallback { display: none; }
.about-photo.no-photo .about-photo-fallback {
  display: grid; place-items: center; position: absolute; inset: 0;
  font-family: var(--font-display); font-size: 4rem; color: var(--gold);
}
.about-quote-chip {
  position: absolute; bottom: -28px; right: -10px; max-width: 280px;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900)); color: var(--paper);
  border: 1px solid var(--navy-line); border-radius: 16px; padding: 26px 24px 22px;
  box-shadow: var(--shadow-card);
}
.aqc-mark { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 0.5; display: block; }
.about-quote-chip p { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; margin: 8px 0 14px; line-height: 1.4; }
.aqc-sign { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }

.about-text h2 { margin-bottom: 22px; }
.lead-muted { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 18px; }
.about-points { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.check { width: 24px; height: 24px; stroke: var(--gold); stroke-width: 2.4; fill: none; flex-shrink: 0; padding: 4px; border: 1px solid var(--navy-line); border-radius: 50%; background: rgba(201,162,75,0.08); }

/* ============================================================
   Services — editorial rows
   ============================================================ */
.services { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.service-list { display: grid; gap: 0; border-top: 1px solid rgba(22,32,46,0.1); }
.service-row {
  display: grid; grid-template-columns: auto 64px 1fr auto; gap: 28px; align-items: center;
  padding: 34px 24px; border-bottom: 1px solid rgba(22,32,46,0.1); position: relative;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.service-row::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: linear-gradient(var(--gold), var(--gold-bright)); transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.service-row:hover { background: var(--white); padding-left: 36px; box-shadow: var(--shadow-card); border-radius: 14px; }
.service-row:hover::before { transform: scaleY(1); }
.sr-index { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.sr-icon {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900)); transition: transform 0.4s var(--ease);
}
.service-row:hover .sr-icon { transform: rotate(-6deg) scale(1.05); }
.sr-icon svg { width: 28px; height: 28px; stroke: var(--gold); stroke-width: 1.8; fill: none; }
.sr-body h3 { margin-bottom: 6px; }
.sr-body p { color: var(--ink-soft); max-width: 620px; }
.sr-arrow { width: 26px; height: 26px; stroke: var(--ink-soft); stroke-width: 1.8; fill: none; opacity: 0; transform: translateX(-8px); transition: all 0.4s var(--ease); }
.service-row:hover .sr-arrow { opacity: 1; transform: translateX(0); stroke: var(--gold); }

/* ============================================================
   Audience
   ============================================================ */
.audience { background: var(--navy-900); color: var(--paper); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.audience-intro h2 { margin-bottom: 18px; }
.audience-sub { color: rgba(247,244,238,0.72); margin-bottom: 32px; font-size: 1.05rem; }
.audience-cards { display: grid; gap: 18px; }
.audience-card {
  background: linear-gradient(150deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--navy-line); border-radius: var(--radius-sm);
  padding: 28px 30px; display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; align-items: start;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.audience-card:hover { transform: translateX(8px); background: linear-gradient(150deg, var(--navy-600), var(--navy-700)); }
.aud-num { grid-row: span 2; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.audience-card h4 { color: var(--paper); }
.audience-card p { color: rgba(247,244,238,0.66); font-size: 0.95rem; }

/* ============================================================
   Why — sticky aside + list
   ============================================================ */
.why { background: var(--paper-2); }
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.why-aside { position: sticky; top: 120px; }
.why-aside h2 { margin-bottom: 18px; }
.why-aside-sub { color: var(--ink-soft); margin-bottom: 24px; }
.why-list { display: grid; gap: 16px; }
.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: var(--white); border-radius: var(--radius); padding: 28px 30px;
  border: 1px solid rgba(22,32,46,0.06); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.why-ico { width: 40px; height: 40px; stroke: var(--gold); stroke-width: 1.6; fill: none; }
.why-item h4 { margin-bottom: 6px; }
.why-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   Process — timeline
   ============================================================ */
.process { background: var(--paper); }
.process .eyebrow { color: var(--gold); }
.process .eyebrow .eyebrow-line { background: var(--gold); }
.process-line { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-line::before {
  content: ""; position: absolute; top: 26px; left: 7%; right: 7%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px); opacity: 0.4;
}
.process-step { position: relative; text-align: center; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 22px; font-family: var(--font-display); font-size: 1.4rem; color: var(--gold);
  background: var(--navy-900); border: 2px solid var(--gold); position: relative; z-index: 2;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); font-size: 0.94rem; padding: 0 6px; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.contact-intro h2 { margin-bottom: 20px; }
.contact-lead { color: rgba(247,244,238,0.78); font-size: 1.05rem; margin-bottom: 34px; }
.contact-info { list-style: none; display: grid; gap: 18px; margin-bottom: 30px; }
.contact-info li { display: flex; align-items: center; gap: 16px; }
.ci-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--navy-line); background: var(--navy-700); flex-shrink: 0; }
.ci-ico svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.7; fill: none; }
.ci-label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.contact-info a { font-size: 1.05rem; font-weight: 600; transition: color 0.3s var(--ease); }
.contact-info a:hover { color: var(--gold); }
.contact-trust { display: inline-flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(247,244,238,0.65); }
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: #5fd07f; box-shadow: 0 0 0 0 rgba(95,208,127,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(95,208,127,0.5);} 70% { box-shadow: 0 0 0 10px rgba(95,208,127,0);} 100% { box-shadow: 0 0 0 0 rgba(95,208,127,0);} }

/* form — custom underline fields with icons */
.contact-form {
  background: linear-gradient(160deg, rgba(16,42,74,0.5), rgba(11,31,56,0.35));
  border: 1px solid var(--navy-line); border-radius: var(--radius);
  padding: 40px; backdrop-filter: blur(8px); display: grid; gap: 26px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field > label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); }
.field .opt { color: rgba(247,244,238,0.4); font-weight: 500; text-transform: none; letter-spacing: 0; }

.input-line {
  display: flex; align-items: center; gap: 13px; position: relative;
  padding: 10px 2px; border-bottom: 1.5px solid var(--navy-line);
  transition: border-color 0.3s var(--ease);
}
.input-line::after {
  content: ""; position: absolute; left: 0; bottom: -1.5px; height: 1.5px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.input-line:focus-within::after { transform: scaleX(1); }
.input-line-area { align-items: flex-start; }
.field-ico { width: 20px; height: 20px; stroke: var(--gold-soft); stroke-width: 1.7; fill: none; flex-shrink: 0; transition: stroke 0.3s var(--ease); }
.input-line-area .field-ico { margin-top: 4px; }
.input-line:focus-within .field-ico { stroke: var(--gold); }

.input-line input, .input-line textarea, .input-line select {
  flex: 1; width: 100%; background: transparent; border: none; padding: 0;
  color: var(--paper); font-family: var(--font-text); font-size: 1rem; line-height: 1.5;
}
.input-line input:focus, .input-line textarea:focus, .input-line select:focus { outline: none; }
.input-line input::placeholder, .input-line textarea::placeholder { color: rgba(247,244,238,0.36); }
.input-line textarea { resize: vertical; min-height: 96px; }

/* custom dropdown */
.custom-select { position: relative; }
.cs-trigger {
  display: flex; align-items: center; gap: 13px; width: 100%; cursor: pointer;
  padding: 10px 2px; background: transparent; border: none; border-bottom: 1.5px solid var(--navy-line);
  font-family: var(--font-text); position: relative; transition: border-color 0.3s var(--ease);
}
.cs-trigger::after {
  content: ""; position: absolute; left: 0; bottom: -1.5px; height: 1.5px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.custom-select.open .cs-trigger::after,
.cs-trigger:focus-visible::after { transform: scaleX(1); }
.cs-trigger:focus-visible { outline: none; }
.cs-trigger .field-ico { stroke: var(--gold-soft); }
.custom-select.open .cs-trigger .field-ico,
.custom-select.has-value .cs-trigger .field-ico { stroke: var(--gold); }
.cs-value { flex: 1; text-align: left; color: var(--paper); font-size: 1rem; }
.cs-value.is-placeholder { color: rgba(247,244,238,0.36); }
.cs-chev { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 2; fill: none; flex-shrink: 0; transition: transform 0.35s var(--ease); }
.custom-select.open .cs-chev { transform: rotate(180deg); }

.cs-list {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 40; list-style: none;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--navy-line); border-radius: 14px; padding: 8px;
  box-shadow: 0 26px 60px -22px rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98); transform-origin: top;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.custom-select.open .cs-list { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.cs-option {
  padding: 12px 14px; border-radius: 9px; cursor: pointer; color: rgba(247,244,238,0.82);
  font-size: 0.96rem; display: flex; align-items: center; gap: 10px; transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cs-option::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--navy-line); flex-shrink: 0; transition: background 0.2s var(--ease);
}
.cs-option:hover, .cs-option.active { background: rgba(201,162,75,0.12); color: var(--paper); }
.cs-option:hover::before, .cs-option.active::before { background: var(--gold); }
.cs-option.selected { color: var(--gold); }

.hp-field { display: none !important; }
.form-status { font-size: 0.92rem; min-height: 1em; }
.form-status.ok { color: #7ee2a0; }
.form-status.err { color: #ff9b9b; }
.form-note { font-size: 0.78rem; color: rgba(247,244,238,0.4); text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--paper); }
.footer-cta { border-bottom: 1px solid var(--navy-line); padding: 56px 0; background: linear-gradient(120deg, var(--navy-800), var(--navy-900)); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-cta h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 620px; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding: 70px 24px 50px; }
.brand-footer .brand-mark { width: 50px; height: 50px; }
.footer-about { color: rgba(247,244,238,0.65); margin: 22px 0 24px; font-size: 0.95rem; max-width: 340px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--navy-line); transition: all 0.3s var(--ease); }
.footer-social a svg { width: 19px; height: 19px; stroke: var(--gold-soft); stroke-width: 1.7; fill: none; }
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-social a:hover svg { stroke: var(--navy-900); }

.footer-col h5 { font-family: var(--font-text); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(247,244,238,0.7); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-inline-cta { display: inline-block; margin-top: 18px; color: var(--gold) !important; font-weight: 700; font-size: 0.92rem; }

.footer-bottom { border-top: 1px solid var(--navy-line); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(247,244,238,0.5); }
.footer-legal { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.footer-legal > a { font-size: 0.85rem; color: rgba(247,244,238,0.55); transition: color 0.3s var(--ease); }
.footer-legal > a:hover { color: var(--gold); }

.footer-dev-row { display: flex; justify-content: center; padding: 22px 24px 4px; }
.footer-dev {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,244,238,0.42); font-weight: 600;
}
.fd-line { width: 36px; height: 1px; background: linear-gradient(90deg, transparent, var(--navy-line), transparent); }
.footer-dev a {
  display: inline-flex; align-items: center; gap: 5px; letter-spacing: 0.12em;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 700; transition: opacity 0.3s var(--ease);
}
.footer-dev a svg { width: 11px; height: 11px; stroke: var(--gold); stroke-width: 2.4; fill: none; -webkit-text-fill-color: initial; transition: transform 0.3s var(--ease); }
.footer-dev a:hover { opacity: 0.85; }
.footer-dev a:hover svg { transform: translate(2px, -2px); }

/* ============================================================
   Contact section — chat buttons
   ============================================================ */
.contact-chat { margin: 28px 0 28px; }
.contact-chat-label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 14px; }
.contact-chat-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.chat-btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 50px;
  color: #fff; font-family: var(--font-text); font-weight: 700; font-size: 0.92rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.chat-btn svg { width: 20px; height: 20px; }
.chat-wa { background: #25d366; box-shadow: 0 14px 30px -14px rgba(37,211,102,0.8); }
.chat-vb { background: #7360f2; box-shadow: 0 14px 30px -14px rgba(115,96,242,0.8); }
.chat-btn:hover { transform: translateY(-3px); }
.chat-wa:hover { box-shadow: 0 20px 40px -16px rgba(37,211,102,0.9); }
.chat-vb:hover { box-shadow: 0 20px 40px -16px rgba(115,96,242,0.9); }

/* ============================================================
   Floating chat buttons
   ============================================================ */
.chat-fab { position: fixed; left: 22px; bottom: 24px; z-index: 950; display: flex; flex-direction: column; gap: 14px; }
.cfab {
  position: relative; width: 56px; height: 56px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; box-shadow: 0 16px 34px -12px rgba(0,0,0,0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cfab svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.cfab-wa { background: #25d366; }
.cfab-vb { background: #7360f2; }
.cfab:hover { transform: translateY(-3px) scale(1.06); }
.cfab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; z-index: 1;
  animation: cfabPulse 2.6s ease-out infinite;
}
.cfab-wa::before { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
.cfab-vb::before { box-shadow: 0 0 0 0 rgba(115,96,242,0.55); animation-delay: 1.3s; }
@keyframes cfabPulse { 0% { box-shadow: 0 0 0 0 currentColor; opacity: 0.5; } 70% { box-shadow: 0 0 0 16px transparent; opacity: 0; } 100% { opacity: 0; } }
.cfab-wa::before { color: rgba(37,211,102,0.5); }
.cfab-vb::before { color: rgba(115,96,242,0.5); }
.cfab-label {
  position: absolute; left: 66px; top: 50%; transform: translateY(-50%) translateX(-6px);
  background: var(--navy-800); color: var(--paper); border: 1px solid var(--navy-line);
  padding: 7px 13px; border-radius: 9px; font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.6);
}
.cfab-label::before { content: ""; position: absolute; left: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 9px; height: 9px; background: var(--navy-800); border-left: 1px solid var(--navy-line); border-bottom: 1px solid var(--navy-line); }
.cfab:hover .cfab-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================================================
   Scroll to top
   ============================================================ */
.scroll-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 950;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); cursor: pointer;
  display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.9);
  transition: all 0.4s var(--ease); box-shadow: 0 16px 36px -16px rgba(0,0,0,0.6);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-top:hover { background: var(--gold); transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-gold); }
.scroll-top svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 2; fill: none; transition: stroke 0.3s var(--ease); }
.scroll-top:hover svg { stroke: var(--navy-900); }

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 420px; order: 2; }
  .hero-left { order: 1; }
  .hv-card-1 { left: 2%; }
  .hv-card-2 { right: 2%; }
  .section-head-split { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}

@media (max-width: 920px) {
  .about-grid, .audience-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-aside { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-line::before { display: none; }
  .about-quote-chip { right: 0; max-width: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .topbar-tag { display: none; }
  .topbar-inner { justify-content: center; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(86%, 380px); height: 100vh; height: 100dvh;
    background: linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 100%);
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 0; padding: 78px 28px calc(28px + env(safe-area-inset-bottom)); overflow-y: auto;
    transform: translateX(105%); transition: transform 0.5s var(--ease);
    box-shadow: -28px 0 70px -24px rgba(0,0,0,0.7); border-left: 1px solid var(--navy-line);
  }
  .main-nav.open { transform: translateX(0); }

  /* menu header */
  .mm-head { display: flex; align-items: center; gap: 13px; padding-bottom: 22px; margin-bottom: 14px; border-bottom: 1px solid var(--navy-line); }
  .mm-head .brand-mark { width: 46px; height: 46px; }
  .mm-head-text { display: flex; flex-direction: column; line-height: 1.2; }
  .mm-head-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--paper); }
  .mm-head-tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }

  /* menu links */
  .main-nav > a:not(.nav-cta) {
    font-size: 1.12rem; padding: 15px 6px; border-radius: 0; border-bottom: 1px solid rgba(201,162,75,0.1);
    display: flex; align-items: center; justify-content: space-between; color: rgba(247,244,238,0.86);
  }
  .main-nav > a:not(.nav-cta)::after {
    content: ""; width: 7px; height: 7px; border-right: 1.5px solid var(--gold); border-top: 1.5px solid var(--gold);
    transform: rotate(45deg); opacity: 0.5; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .main-nav > a:not(.nav-cta):hover { background: transparent; }
  .main-nav > a:not(.nav-cta):hover::after { transform: rotate(45deg) translate(2px, -2px); opacity: 1; }
  .main-nav > a:not(.nav-cta) span::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 22px; justify-content: center; padding: 15px 22px; font-size: 1rem; }

  /* staggered entrance */
  .main-nav.open > * { animation: menuItemIn 0.5s var(--ease) both; }
  .main-nav.open > *:nth-child(1) { animation-delay: 0.06s; }
  .main-nav.open > *:nth-child(2) { animation-delay: 0.11s; }
  .main-nav.open > *:nth-child(3) { animation-delay: 0.16s; }
  .main-nav.open > *:nth-child(4) { animation-delay: 0.21s; }
  .main-nav.open > *:nth-child(5) { animation-delay: 0.26s; }
  .main-nav.open > *:nth-child(6) { animation-delay: 0.31s; }
  .main-nav.open > *:nth-child(7) { animation-delay: 0.36s; }
  .main-nav.open > *:nth-child(8) { animation-delay: 0.41s; }
  @keyframes menuItemIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

  /* menu footer */
  .mm-foot { display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 26px; }
  .mm-foot-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
  .mm-contact { display: flex; align-items: center; gap: 11px; color: rgba(247,244,238,0.8); font-size: 0.92rem; font-weight: 500; }
  .mm-contact svg { width: 18px; height: 18px; stroke: var(--gold-soft); stroke-width: 1.7; fill: none; flex-shrink: 0; }
  .mm-social { display: flex; gap: 10px; margin-top: 8px; }
  .mm-social a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--navy-line); transition: all 0.3s var(--ease); }
  .mm-social a svg { width: 18px; height: 18px; stroke: var(--gold-soft); stroke-width: 1.7; fill: none; }
  .mm-social a:active, .mm-social a:hover { background: var(--gold); }
  .mm-social a:hover svg { stroke: var(--navy-900); }

  .nav-toggle { display: flex; }
  .brand-tag { display: none; }

  /* keep floating cards off the face */
  .hv-card-1 { top: auto; bottom: 32%; left: 0; }
  .hv-card-2 { bottom: 3%; right: 0; }

  .service-row { grid-template-columns: auto 1fr; gap: 8px 18px; padding: 26px 16px; }
  .service-row .sr-icon { grid-row: span 2; }
  .service-row .sr-arrow { display: none; }
  .sr-index { font-size: 1.2rem; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat:not(:last-child)::after { display: none; }
  .process-line { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; text-align: left; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal { justify-content: center; }
  .slide-actions { width: 100%; }
  .slide-actions .btn { flex: 1; justify-content: center; }
  .hero-visual { min-height: 380px; }
  .portrait { width: min(300px, 78%); }
  .hv-card { padding: 10px 14px; }
  .hv-card strong { font-size: 0.82rem; }
  .scroll-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
