/* ============================================================
   KANYA SERVICES – Premium Stylesheet v2
   Palette : Bordeaux #5C1A2E | Or #C9963A | Crème #FAF6F0
   ============================================================ */

:root {
  --burg:        #5C1A2E;
  --burg-d:      #3e1020;
  --burg-l:      #7a2640;
  --burg-x:      #8a2a4a;
  --gold:        #C9963A;
  --gold-l:      #e0b060;
  --gold-p:      #f5e8cc;
  --gold-pp:     #fdf4e4;
  --cream:       #FAF6F0;
  --cream-d:     #f0e8dc;
  --white:       #ffffff;
  --text:        #1e1009;
  --text-l:      #614535;
  --text-m:      #9e8070;
  --border:      #e5d4c0;
  --sh:          0 4px 24px rgba(92,26,46,.09);
  --sh-lg:       0 16px 56px rgba(92,26,46,.14);
  --r:           14px;
  --r-lg:        22px;
  --tr:          all .3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--burg); }
.section-sub { margin-top: 14px; color: var(--text-l); max-width: 520px; margin-left: auto; margin-right: auto; font-size: .95rem; }

/* ---- Reveal animations ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease calc(var(--d, 0s)), transform .65s ease calc(var(--d, 0s));
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--burg); color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: .88rem; letter-spacing: .04em;
  transition: var(--tr); border: 2px solid var(--burg);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform .25s; }
.btn-primary:hover { background: var(--burg-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,26,46,.28); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: .88rem;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  transition: var(--tr);
}
.btn-ghost svg { width: 18px; height: 18px; }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--burg);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 700; font-size: .88rem;
  transition: var(--tr);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: .88rem;
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--tr);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--burg-d);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; }
.pl-logo { width: 140px; margin: 0 auto 24px; filter: drop-shadow(0 4px 16px rgba(201,150,58,.3)); animation: plPulse 1.2s ease-in-out infinite alternate; }
@keyframes plPulse { from { transform: scale(.96); opacity: .8; } to { transform: scale(1.04); opacity: 1; } }
.pl-bar { width: 200px; height: 3px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.pl-fill { height: 100%; width: 0; background: var(--gold); border-radius: 2px; animation: plLoad 1.8s ease forwards; }
@keyframes plLoad { 0%{width:0} 60%{width:70%} 100%{width:100%} }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab-wa {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 56px; height: 56px;
  background: #25D366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s ease, box-shadow .3s ease;
}
.fab-wa svg { width: 28px; height: 28px; }
.fab-wa:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.fab-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: fabRing 2s ease-out infinite;
}
@keyframes fabRing { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.6);opacity:0} }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 500;
  width: 44px; height: 44px;
  background: var(--burg); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  transform: translateY(10px);
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--burg-d); transform: translateY(-2px); }
.back-top svg { width: 18px; height: 18px; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
#header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(92,26,46,.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 62px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); transition: var(--tr); }
#header.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.9); transition: color .25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 100%; height: 1.5px; background: var(--gold); transition: right .3s; }
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--gold-l); }
#header.scrolled .nav-links a { color: var(--burg); }
#header.scrolled .nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--burg) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 50px; font-weight: 700 !important;
  border: 2px solid var(--burg);
  transition: var(--tr) !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--burg-d) !important; transform: translateY(-2px) !important; }
#header.scrolled .btn-nav { color: var(--white) !important; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }
#header.scrolled .burger span { background: var(--burg); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--burg-d) 0%, var(--burg) 45%, var(--burg-x) 75%, #3e1020 100%);
  display: flex; align-items: center;
  overflow: hidden;
}
#heroCanvas { position: absolute; inset: 0; pointer-events: none; }

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hbs {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,58,.18), transparent 70%);
}
.hbs-1 { width: 600px; height: 600px; top: -200px; right: -100px; animation: hbsFloat 8s ease-in-out infinite; }
.hbs-2 { width: 400px; height: 400px; bottom: -100px; left: 10%; animation: hbsFloat 10s ease-in-out infinite reverse; }
.hbs-3 { width: 300px; height: 300px; top: 40%; left: 40%; animation: hbsFloat 6s ease-in-out infinite; }
@keyframes hbsFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }

.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-top: 100px; padding-bottom: 60px; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.chip-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: chipBlink 2s ease-in-out infinite; }
@keyframes chipBlink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-left h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1; margin-bottom: 12px;
}
.h1-line { display: block; }
.h1-accent { color: var(--gold); }

.hero-tagline {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 1rem; margin-bottom: 24px;
}
.hero-tagline span { color: rgba(255,255,255,.85); font-weight: 300; letter-spacing: .08em; }
.hero-tagline em { color: var(--gold); font-style: normal; font-size: .8rem; }

.hero-sub { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-sub strong { color: var(--gold-l); font-weight: 600; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-flags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.flag-pill {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  padding: 6px 14px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.flag-arrow { color: var(--gold); display: flex; }
.flag-arrow.rotate { transform: rotate(180deg); }
.flag-arrow svg { width: 28px; }

/* Hero right */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-image-frame { position: relative; width: 420px; }
.hero-logo-img {
  width: 100%; border-radius: var(--r-lg);
  filter: drop-shadow(0 16px 48px rgba(0,0,0,.3));
  animation: heroImgFloat 6s ease-in-out infinite;
}
@keyframes heroImgFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hif-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,150,58,.3);
  pointer-events: none;
}
.hif-ring-1 { width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite; }
.hif-ring-2 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite .5s; }
@keyframes ringPulse { 0%,100%{opacity:.4;transform:translate(-50%,-50%) scale(1)} 50%{opacity:.15;transform:translate(-50%,-50%) scale(1.04)} }

.hif-badge {
  position: absolute;
  background: var(--white); border-radius: var(--r);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-lg);
  animation: badgeFloat 4s ease-in-out infinite;
}
.hif-badge-1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.hif-badge-2 { top: 40px; right: -20px; animation-delay: 2s; }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.badge-icon { font-size: 1.4rem; }
.hif-badge strong { display: block; font-size: .82rem; font-weight: 700; color: var(--burg); }
.hif-badge span { font-size: .72rem; color: var(--text-m); }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  z-index: 1;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.2); border-radius: 1px; overflow: hidden; }
.scroll-dot { width: 100%; height: 12px; background: var(--gold); border-radius: 1px; animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown { 0%{transform:translateY(-12px);opacity:0} 40%{opacity:1} 100%{transform:translateY(40px);opacity:0} }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--gold); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker-track span { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--burg-d); padding: 0 28px; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(145deg, var(--burg) 0%, var(--burg-x) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-l)); }
.service-card.featured:hover { box-shadow: 0 16px 56px rgba(92,26,46,.35); }

.sc-glow {
  position: absolute; width: 300px; height: 300px; top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(201,150,58,.2), transparent 70%);
  pointer-events: none;
}

.sc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }

.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--gold-pp); color: var(--burg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card.featured .service-icon { background: rgba(201,150,58,.2); color: var(--gold-l); }

.sc-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--border); line-height: 1; }
.service-card.featured .sc-number { color: rgba(255,255,255,.1); }

.sc-badge-pill {
  background: var(--gold); color: var(--burg-d);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}

.service-card h3 { font-size: 1.55rem; color: var(--burg); }
.service-card.featured h3 { color: var(--white); }
.service-card > p { font-size: .88rem; color: var(--text-l); line-height: 1.75; }
.service-card.featured > p { color: rgba(255,255,255,.8); }

.sc-routes { display: flex; flex-direction: column; gap: 6px; }
.route-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 5px 14px; font-size: .8rem; font-weight: 600;
  color: var(--text-l); display: inline-block; width: fit-content;
}

.sc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sc-list li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-l); }
.sc-list li span { color: var(--gold); font-weight: 700; }
.service-card.featured .sc-list li { color: rgba(255,255,255,.8); }
.service-card.featured .sc-list li span { color: var(--gold-l); }

.sc-cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--burg);
  transition: gap .2s;
}
.sc-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.sc-cta:hover { gap: 10px; }
.sc-cta:hover svg { transform: translateX(3px); }
.sc-cta.light { color: var(--gold-l); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--burg-d), var(--burg));
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: center;
}
.stat { text-align: center; padding: 0 24px; }
.stat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-plus { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--gold); font-weight: 700; }
.stat-text { font-size: clamp(2rem, 3.5vw, 3rem) !important; }
.stat-label { display: block; margin-top: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.12); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--cream); }

.hiw-tabs { max-width: 860px; margin: 0 auto; }

.hiw-tabs-nav {
  display: flex; gap: 6px;
  background: var(--cream-d); border: 1px solid var(--border);
  border-radius: 50px; padding: 5px; margin-bottom: 48px;
}
.hiw-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 12px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; color: var(--text-l);
  transition: var(--tr);
}
.hiw-tab .tab-icon { font-size: 1rem; }
.hiw-tab.active { background: var(--burg); color: var(--white); box-shadow: 0 4px 16px rgba(92,26,46,.25); }
.hiw-tab:not(.active):hover { background: var(--white); }

.hiw-panel { display: none; }
.hiw-panel.active { display: block; }

.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step-item { display: flex; flex-direction: column; align-items: center; position: relative; }
.step-bubble {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--burg); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--gold-pp); flex-shrink: 0; z-index: 1;
}
.step-n { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; }
.step-connector {
  position: absolute; top: 26px; left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-p));
}
.step-item:last-child .step-connector { display: none; }
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px; text-align: center;
  margin-top: 20px; width: calc(100% - 20px);
  box-shadow: var(--sh);
}
.step-emoji { font-size: 1.6rem; margin-bottom: 8px; }
.step-card h4 { font-size: .98rem; color: var(--burg); margin-bottom: 6px; }
.step-card p { font-size: .8rem; color: var(--text-l); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }
.av-frame {
  background: var(--cream); border-radius: var(--r-lg);
  padding: 32px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
}
.av-frame img { max-width: 300px; filter: drop-shadow(0 8px 24px rgba(92,26,46,.15)); }

.av-card {
  position: absolute;
  background: var(--white); border-radius: var(--r);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg); border: 1px solid var(--border);
}
.av-card-1 { bottom: -18px; left: -18px; }
.av-card-2 { top: -18px; right: -18px; }
.avc-icon { font-size: 1.4rem; }
.av-card strong { display: block; font-size: .82rem; font-weight: 700; color: var(--burg); }
.av-card span { font-size: .72rem; color: var(--text-m); }
.av-deco-line {
  position: absolute; width: 2px; height: 80px;
  background: linear-gradient(var(--gold), transparent);
  top: 50%; left: -32px; transform: translateY(-50%);
}

.about-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--burg); margin: 8px 0 24px; }
.about-quote {
  position: relative; padding: 20px 24px 20px 40px;
  border-left: 3px solid var(--gold); margin-bottom: 24px;
  background: var(--gold-pp); border-radius: 0 var(--r) var(--r) 0;
}
.quote-svg { position: absolute; top: 16px; left: 12px; width: 20px; opacity: .4; fill: var(--gold); }
.about-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--burg); line-height: 1.6; }
.about-content > p { font-size: .92rem; color: var(--text-l); margin-bottom: 14px; }

.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.pillar {
  text-align: center; padding: 20px 12px;
  background: var(--cream); border-radius: var(--r); border: 1px solid var(--border);
  transition: var(--tr);
}
.pillar:hover { background: var(--gold-pp); border-color: var(--gold); transform: translateY(-3px); }
.pillar-icon { font-size: 1.6rem; margin-bottom: 8px; }
.pillar strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--burg); margin-bottom: 4px; }
.pillar p { font-size: .78rem; color: var(--text-m); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }

.testi-slider { position: relative; overflow: hidden; }
.testi-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: var(--tr);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.testi-card.featured { background: var(--burg); border-color: var(--burg); }
.testi-card.featured p { color: rgba(255,255,255,.8); }

.tc-top { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-pp); color: var(--burg);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card.featured .tc-avatar { background: rgba(201,150,58,.2); color: var(--gold-l); }
.tc-top strong { display: block; font-size: .85rem; color: var(--burg); }
.testi-card.featured .tc-top strong { color: var(--white); }
.tc-top span { font-size: .75rem; color: var(--text-m); }
.testi-card.featured .tc-top span { color: rgba(255,255,255,.55); }
.tc-stars { margin-left: auto; font-size: .85rem; color: var(--gold); letter-spacing: 2px; }

.testi-card p { font-size: .88rem; color: var(--text-l); font-style: italic; line-height: 1.75; flex: 1; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.tn-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--burg); transition: var(--tr);
}
.tn-btn:hover { background: var(--burg); color: var(--white); border-color: var(--burg); }
.tn-btn svg { width: 16px; height: 16px; }
.tn-dots { display: flex; gap: 6px; }
.tn-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); transition: var(--tr); cursor: pointer;
}
.tn-dot.active { background: var(--burg); width: 20px; border-radius: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.faq-header { position: sticky; top: 100px; }
.faq-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--burg); margin: 8px 0 16px; }
.faq-header p { font-size: .9rem; color: var(--text-l); }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; text-align: left;
  font-size: .92rem; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.faq-q:hover { color: var(--burg); }
.faq-item.open .faq-q { color: var(--burg); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-m); transition: transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--burg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: .88rem; color: var(--text-l); line-height: 1.8; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.ccard {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r);
  transition: var(--tr); position: relative; overflow: hidden;
}
.ccard::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transition: transform .3s; }
.ccard:hover { border-color: var(--gold); transform: translateX(4px); }
.ccard:hover::before { transform: scaleY(1); }
.ccard-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.ccard-wa .ccard-icon { background: #25D366; }
.ccard-mail .ccard-icon { background: var(--burg); }
.ccard-hours .ccard-icon { background: var(--gold); }
.ccard-icon svg { width: 22px; height: 22px; }
.ccard-text span { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-m); margin-bottom: 2px; }
.ccard-text strong { font-size: .88rem; color: var(--text); }
.ccard-arrow { margin-left: auto; font-size: 1.1rem; color: var(--text-m); transition: transform .25s; }
.ccard:hover .ccard-arrow { transform: translateX(4px); color: var(--burg); }

.ccard-promise { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--gold-pp); border-radius: var(--r); border: 1px solid var(--gold-p); }
.cp-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: chipBlink 2s infinite; }
.ccard-promise p { font-size: .82rem; color: var(--text-l); }
.ccard-promise strong { color: var(--burg); }

.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.cfb-header { padding: 28px 32px; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, var(--cream), var(--white)); }
.cfb-header h3 { font-size: 1.4rem; color: var(--burg); margin-bottom: 4px; }
.cfb-header p { font-size: .85rem; color: var(--text-l); }

.cform { padding: 28px 32px; display: flex; flex-direction: column; gap: 18px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform-group { display: flex; flex-direction: column; gap: 6px; }
.cform-group label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-l); }
.cform-group input, .cform-group select, .cform-group textarea {
  padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--r);
  background: var(--cream); font-family: 'Inter', sans-serif; font-size: .88rem;
  color: var(--text); outline: none; transition: border-color .2s, background .2s;
  resize: vertical;
}
.cform-group input:focus, .cform-group select:focus, .cform-group textarea:focus { border-color: var(--burg); background: var(--white); }

.form-success { padding: 48px 32px; text-align: center; }
.fs-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: #dcfce7; color: #16a34a; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.6rem; color: var(--burg); margin-bottom: 8px; }
.form-success p { color: var(--text-l); font-size: .9rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--burg-d), var(--burg), var(--burg-x));
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,150,58,.15), transparent 60%);
}
.cta-inner {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.75); font-size: .95rem; max-width: 480px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--burg-d); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 80px; filter: brightness(0) invert(1) opacity(.85); margin-bottom: 14px; }
.footer-tagline { font-size: .78rem; letter-spacing: .12em; color: var(--gold); margin-bottom: 10px; }
.footer-desc { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.fs-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12); transition: var(--tr);
}
.fs-link:hover { background: var(--gold); color: var(--burg-d); border-color: var(--gold); transform: translateY(-2px); }
.fs-link svg { width: 16px; height: 16px; }

.footer-col h4 { font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.6); padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .av-frame img { max-width: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-header { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-connector { display: none; }
  .hiw-tabs-nav { flex-direction: column; border-radius: var(--r); }
  .hiw-tab { border-radius: calc(var(--r) - 4px); }
  .about-pillars { grid-template-columns: 1fr; }
  .testi-track { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
  .cform { padding: 20px; }
  .cfb-header { padding: 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }

  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); flex-direction: column;
    align-items: flex-start; justify-content: flex-start;
    padding: 100px 28px 28px; gap: 4px;
    box-shadow: -4px 0 32px rgba(92,26,46,.15);
    transition: right .35s ease; z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--burg) !important; font-size: .95rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border: none; }
  .nav-links a::after { display: none; }
  .btn-nav { margin-top: 12px; width: 100%; text-align: center; justify-content: center; }
  .burger { display: flex; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-flags { gap: 6px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .fab-wa, .back-top { bottom: 20px; }
  .fab-wa { right: 20px; }
  .back-top { left: 20px; }
}
