/* =========================================================
   InnovaHycrossTaxi — Design System
   Palette: ink/paper + metallic gold + taxi yellow
   Type: Bricolage Grotesque (display) / Inter (body) / JetBrains Mono (meter)
   ========================================================= */

:root{
  /* ---- Color tokens ---- */
  --ink:            #0B0B0D;
  --ink-soft:       #17171B;
  --ink-soft-2:     #1F2024;
  --paper:          #FAF9F5;
  --paper-dim:      #F1EEE6;
  --white:          #FFFFFF;
  --gold:           #C9962B;
  --gold-light:     #E4BE68;
  --yellow:         #FFC72C;
  --yellow-deep:    #F2A900;
  --slate:          #5B5B62;
  --slate-light:    #8B8B92;
  --line:           #E7E3D8;
  --line-dark:      rgba(255,255,255,.12);
  --green-wa:       #25D366;
  --red:            #C1462E;

  /* ---- Type ---- */
  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* ---- Layout ---- */
  --maxw: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 1px 2px rgba(11,11,13,.04), 0 12px 32px -16px rgba(11,11,13,.18);
  --shadow-card-dark: 0 12px 40px -12px rgba(0,0,0,.55);
  --ease: cubic-bezier(.22,.9,.32,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--f-display); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p{ margin:0; }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px){ .container{ padding: 0 18px; } }

.section{ padding: 96px 0; }
.section--tight{ padding: 64px 0; }
@media (max-width: 900px){ .section{ padding: 64px 0; } .section--tight{ padding: 44px 0; } }

.section--dark{ background: var(--ink); color: var(--paper); }
.section--dim{ background: var(--paper-dim); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.eyebrow::before{ content:''; width:18px; height:2px; background: var(--yellow); display:inline-block; border-radius: 2px; }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-title{ font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; }
.section-sub{ margin-top: 14px; color: var(--slate); font-size: 17px; }
.section--dark .section-sub{ color: #C7C6C2; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 26px; border-radius: 100px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--yellow); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(255,199,44,.55); }
.btn-primary:hover{ background: var(--yellow-deep); box-shadow: 0 14px 28px -10px rgba(255,199,44,.7); transform: translateY(-2px); }
.btn-dark{ background: var(--ink); color: var(--paper); }
.btn-dark:hover{ background: var(--ink-soft-2); transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: rgba(11,11,13,.18); color: var(--ink); }
.btn-outline:hover{ border-color: var(--ink); transform: translateY(-2px); }
.section--dark .btn-outline, .hero .btn-outline, .page-hero .btn-outline, .cta-band .btn-outline{ border-color: rgba(250,249,245,.3); color: var(--paper); }
.section--dark .btn-outline:hover, .hero .btn-outline:hover, .page-hero .btn-outline:hover, .cta-band .btn-outline:hover{ border-color: var(--paper); }
.btn-ghost-wa{ background: var(--green-wa); color: #fff; }
.btn-ghost-wa:hover{ background: #1fb857; transform: translateY(-2px); }
.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; }

/* ---- Meter chip (signature) ---- */
.meter{
  font-family: var(--f-mono); display:inline-flex; align-items:baseline; gap:6px;
  background: var(--ink); color: var(--yellow); border-radius: 8px;
  padding: 6px 10px; font-weight: 600; font-size: 13px; letter-spacing:.02em;
  border: 1px solid rgba(255,199,44,.25);
}
.meter .meter-unit{ color: #C7C6C2; font-weight: 500; font-size: 11px; }
.meter--ghost{ background: rgba(255,255,255,.06); color: var(--yellow); }
.meter--light{ background: rgba(11,11,13,.06); color: var(--gold); border-color: rgba(201,150,43,.35); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,249,245,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled{
  background: rgba(250,249,245,.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(11,11,13,.3);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 16px 0; gap: 20px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:40px; height:40px; border-radius: 10px; background: var(--ink);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.brand-mark svg{ width:22px; height:22px; }
.brand-word{ font-family: var(--f-display); font-weight: 700; font-size: 18px; line-height:1.1; }
.brand-word span{ color: var(--gold); }
.brand-tag{ font-family: var(--f-mono); font-size: 10px; letter-spacing:.12em; color: var(--slate-light); text-transform: uppercase; }

.nav-links{ display:flex; align-items:center; gap: 30px; }
.nav-links a{ font-size: 14.5px; font-weight: 500; color: var(--ink); position:relative; padding: 4px 0; }
.nav-links a::after{
  content:''; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background: var(--yellow);
  transition: right .25s var(--ease); border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.is-active::after{ right:0; }
.nav-links a.is-active{ color: var(--gold); }

.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-call{ display:flex; align-items:center; gap:8px; font-family: var(--f-mono); font-size: 13.5px; font-weight:600; }
.nav-call svg{ width:16px; height:16px; color: var(--gold); }

.nav-toggle{
  display:none; width:42px; height:42px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--white); align-items:center; justify-content:center; flex-shrink:0;
}
.nav-toggle svg{ width:20px; height:20px; }

.mobile-panel{
  display:none; position: fixed; inset: 0; z-index: 300; background: var(--ink); color: var(--paper);
  padding: 24px; overflow-y:auto;
}
.mobile-panel.is-open{ display:block; }
.mobile-panel-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 36px; }
.mobile-panel .nav-toggle{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.mobile-panel .nav-toggle svg{ color: var(--paper); }
.mobile-links{ display:flex; flex-direction:column; gap: 4px; margin-bottom: 32px; }
.mobile-links a{ font-family: var(--f-display); font-size: 26px; font-weight:600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-actions{ display:flex; flex-direction:column; gap: 12px; }
.mobile-contact{ margin-top: 32px; font-family: var(--f-mono); font-size: 13px; color: #C7C6C2; line-height:2; }
.mobile-contact a{ color: var(--yellow); }

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

/* =========================================================
   HERO
   ========================================================= */
.hero{ position: relative; background: var(--ink); color: var(--paper); overflow: hidden; padding: 72px 0 0; }
.hero-noise{
  position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image: radial-gradient(rgba(255,199,44,.10) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 20%, black, transparent 70%);
}
.hero-glow{ position:absolute; top:-140px; right:-120px; width:520px; height:520px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,199,44,.20), transparent 65%); filter: blur(10px); pointer-events:none; }
.hero-inner{ position:relative; display:grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items:center; padding-bottom: 64px; }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:10px; font-family: var(--f-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--yellow); background: rgba(255,199,44,.1); border:1px solid rgba(255,199,44,.28); padding:7px 14px; border-radius:100px; margin-bottom:22px; }
.hero-eyebrow .dot{ width:7px; height:7px; border-radius:50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,199,44,.2); }
.hero-title{ font-size: clamp(34px, 5vw, 60px); font-weight: 700; letter-spacing: -0.02em; }
.hero-title em{ font-style: normal; color: var(--yellow); }
.hero-sub{ margin-top: 20px; font-size: 18px; color: #D6D4CC; max-width: 520px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-top: 34px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap: 22px; margin-top: 40px; }
.hero-trust-item{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:#C7C6C2; }
.hero-trust-item svg{ width:18px; height:18px; color: var(--yellow); flex-shrink:0; }

/* Hero meter panel (signature visual) */
.meter-panel{
  position:relative; background: var(--ink-soft); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card-dark);
}
.meter-panel-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 20px; }
.meter-panel-label{ font-family: var(--f-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#8C8B87; }
.meter-panel-live{ display:flex; align-items:center; gap:6px; font-family: var(--f-mono); font-size:11px; color: var(--yellow); }
.meter-panel-live .dot{ width:6px; height:6px; border-radius:50%; background: var(--yellow); animation: pulse 1.6s infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

.route-line{ position: relative; padding: 10px 0 22px; }
.route-line svg{ width:100%; height: 64px; display:block; }
.route-stop{ display:flex; justify-content:space-between; }
.route-stop-item{ max-width: 46%; }
.route-stop-label{ font-family: var(--f-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:#8C8B87; margin-bottom:4px; }
.route-stop-value{ font-weight: 600; font-size:14.5px; }

.meter-stats{ display:grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.meter-stat{ background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px 10px; text-align:center; }
.meter-stat-num{ font-family: var(--f-mono); font-weight:700; font-size: 19px; color: var(--yellow); }
.meter-stat-label{ font-size: 10.5px; color:#9C9B97; margin-top:4px; letter-spacing:.02em; }

.hero-strip{ position:relative; border-top: 1px solid rgba(255,255,255,.1); }
.hero-strip .container{ display:flex; flex-wrap:wrap; gap: 28px 40px; padding: 22px 24px; justify-content:space-between; }
.hero-strip-item{ display:flex; align-items:center; gap:10px; font-family: var(--f-mono); font-size:12.5px; color:#B9B8B3; }
.hero-strip-item b{ color: var(--paper); font-weight:600; }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .hero-ctas .btn{ width:100%; }
  .hero-ctas{ flex-direction:column; }
  .meter-stats{ grid-template-columns: repeat(3,1fr); }
}

/* Simple page hero (interior pages) */
.page-hero{ background: var(--ink); color: var(--paper); padding: 60px 0 52px; position:relative; overflow:hidden; }
.page-hero .hero-glow{ top:-160px; right:-160px; }
.breadcrumb{ font-family: var(--f-mono); font-size: 12px; color:#9C9B97; margin-bottom:16px; }
.breadcrumb a{ color:#C7C6C2; } .breadcrumb a:hover{ color: var(--yellow); }
.page-hero h1{ font-size: clamp(30px,4.4vw,48px); font-weight:700; max-width: 720px; }
.page-hero p{ margin-top:14px; color:#D6D4CC; font-size:16.5px; max-width:600px; }

/* =========================================================
   QUICK BOOKING FORM (widget)
   ========================================================= */
.booking-widget{
  position: relative; margin-top: -74px; z-index: 20;
}
.booking-card{
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 28px; border: 1px solid var(--line);
}
.booking-card-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; gap:12px; flex-wrap:wrap; }
.booking-card-head h3{ font-size: 20px; }
.tab-row{ display:flex; gap:8px; background: var(--paper-dim); padding:5px; border-radius: 100px; }
.tab-btn{ border:none; background:transparent; padding: 9px 16px; border-radius:100px; font-size:13px; font-weight:600; color:var(--slate); }
.tab-btn.is-active{ background: var(--ink); color: var(--yellow); }

.booking-grid{ display:grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items:end; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field label{ font-size: 11.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color: var(--slate); }
.field .input-wrap{ position:relative; }
.field .input-wrap svg{ position:absolute; left:13px; top:50%; transform:translateY(-50%); width:16px; height:16px; color: var(--slate-light); pointer-events:none; }
.field input, .field select{
  width:100%; padding: 13px 14px 13px 38px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--paper); font-family: var(--f-body); font-size: 14px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus{ border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,150,43,.15); outline:none; }
.field select{ appearance:none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%235B5B62' stroke-width='2'><path d='M2 4l5 5 5-5'/></svg>"); background-repeat:no-repeat; background-position: right 14px center; }
.booking-grid .btn{ height: 46px; }
.booking-submit{ grid-column: 1 / -1; }

@media (max-width: 980px){
  .booking-grid{ grid-template-columns: 1fr 1fr; }
  .booking-grid .btn{ grid-column: 1 / -1; }
}
@media (max-width: 560px){
  .booking-grid{ grid-template-columns: 1fr; }
  .booking-card{ padding:20px; }
}

/* =========================================================
   SERVICE / FLEET / ROUTE / VALUE CARDS
   ========================================================= */
.grid{ display:grid; gap: 22px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(201,150,43,.35); }

.icon-box i{ font-size: 20px; }
.service-card .icon-box{
  width:48px; height:48px; border-radius:12px; background: var(--ink); display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.service-card .icon-box svg{ width:24px; height:24px; color: var(--yellow); }
.service-card .icon-box i{ color: var(--yellow); font-size: 21px; }
.service-card h3{ font-size: 18px; margin-bottom:8px; }
.service-card p{ color: var(--slate); font-size: 14.5px; margin-bottom: 16px; }
.card-link{ font-family: var(--f-mono); font-size:12.5px; font-weight:600; color: var(--gold); display:inline-flex; align-items:center; gap:6px; }
.card-link svg{ width:14px; height:14px; flex-shrink:0; transition: transform .2s; }
.card:hover .card-link svg, .service-card:hover .card-link svg{ transform: translateX(3px); }

.value-card{ text-align:left; }
.value-card .icon-box{ background: rgba(255,199,44,.12); }
.section--dark .value-card{ background: var(--ink-soft); border-color: rgba(255,255,255,.08); }
.section--dark .value-card p{ color:#B9B8B3; }
.value-card .icon-box svg{ color: var(--gold); }
.value-card .icon-box i{ color: var(--gold); }
.city-chip i{ color: var(--gold); font-size:13px; }

.fleet-card{ overflow:hidden; padding:0; display:flex; flex-direction:column; }
.fleet-card-img{ position:relative; aspect-ratio: 4/3; overflow:hidden; background: var(--paper-dim); }
.fleet-card-img img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.fleet-card:hover .fleet-card-img img{ transform: scale(1.06); }
.fleet-card-tag{ position:absolute; top:12px; left:12px; }
.fleet-card-body{ padding: 20px 22px 24px; display:flex; flex-direction:column; gap:12px; flex:1; }
.fleet-card-body h3{ font-size:19px; }
.fleet-specs{ display:flex; flex-wrap:wrap; gap:8px; }
.spec-pill{ font-size:11.5px; font-weight:600; color: var(--slate); background: var(--paper-dim); border-radius:100px; padding:5px 10px; display:flex; align-items:center; gap:5px; }
.spec-pill svg{ width:12px; height:12px; color: var(--gold); }
.spec-pill i{ color: var(--gold); font-size:11px; }
.fleet-price-row{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:14px; border-top:1px dashed var(--line); }
.fleet-price-note{ font-size:11px; color: var(--slate-light); }

.route-card{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding: 18px 20px; }
.route-card-path{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:14.5px; }
.route-card-path svg{ width:14px; height:14px; color: var(--gold); flex-shrink:0; }
.route-card-path i{ color: var(--gold); font-size:13px; }
.route-card-meta{ display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }

.city-chip-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; }
@media (max-width: 900px){ .city-chip-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px){ .city-chip-grid{ grid-template-columns: repeat(2,1fr); } }
.city-chip{
  border:1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: var(--white);
  display:flex; align-items:center; justify-content:space-between; transition: border-color .2s, transform .2s;
}
.city-chip:hover{ border-color: var(--gold); transform: translateY(-2px); }
.city-chip span{ font-weight:600; font-size:13.5px; }
.city-chip svg{ width:14px; height:14px; color: var(--gold); }

/* ---- Why choose us number rows ---- */
.reasons{ display:grid; grid-template-columns: repeat(2,1fr); gap: 20px 32px; }
@media (max-width:700px){ .reasons{ grid-template-columns: 1fr; } }
.reason{ display:flex; gap:16px; }
.reason .icon-box{ width:46px; height:46px; border-radius:12px; background: rgba(255,199,44,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.reason .icon-box svg{ width:22px; height:22px; color: var(--gold); }
.reason .icon-box i{ color: var(--gold); font-size:19px; }
.reason h4{ font-size:16px; margin-bottom:6px; }
.reason p{ color: var(--slate); font-size:14px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tsl{ position:relative; max-width: 760px; margin: 0 auto; }
.tsl-track{ overflow:hidden; }
.tsl-slides{ display:flex; transition: transform .5s var(--ease); }
.tsl-slide{ min-width:100%; padding: 6px; }
.tsl-card{ background: var(--ink-soft); border:1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 34px; text-align:center; }
.tsl-stars{ display:flex; justify-content:center; gap:4px; margin-bottom:18px; }
.tsl-stars svg{ width:16px; height:16px; color: var(--yellow); }
.tsl-quote{ font-size: 17px; line-height:1.7; color: var(--paper); }
.tsl-person{ margin-top:22px; display:flex; align-items:center; justify-content:center; gap:12px; }
.tsl-avatar{ width:42px; height:42px; border-radius:50%; background: var(--gold); color:var(--ink); display:flex; align-items:center; justify-content:center; font-family: var(--f-display); font-weight:700; font-size:15px; }
.tsl-person-name{ font-weight:600; font-size:14px; }
.tsl-person-role{ font-size:12px; color:#9C9B97; font-family: var(--f-mono); }
.tsl-dots{ display:flex; justify-content:center; gap:8px; margin-top:24px; }
.tsl-dot{ width:8px; height:8px; border-radius:50%; background: rgba(255,255,255,.2); border:none; padding:0; transition: background .2s, transform .2s; }
.tsl-dot.is-active{ background: var(--yellow); transform: scale(1.2); }
.tsl-arrow{
  position:absolute; top:50%; translate: 0 -50%; width:44px; height:44px; border-radius:50%;
  background: var(--ink-soft); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center;
}
.tsl-arrow svg{ width:18px; height:18px; color: var(--paper); }
.tsl-prev{ left:-56px; } .tsl-next{ right:-56px; }
@media (max-width: 900px){ .tsl-arrow{ display:none; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
@media (max-width: 900px){ .about-grid{ grid-template-columns: 1fr; gap:36px; } }
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius-lg); width:100%; aspect-ratio: 4/3.2; object-fit:cover; background: var(--paper-dim); }
.about-badge{
  position:absolute; bottom:-22px; left:-22px; background: var(--ink); color:var(--paper); border-radius: var(--radius-md);
  padding: 18px 22px; box-shadow: var(--shadow-card-dark); display:flex; align-items:center; gap:14px;
}
.about-badge .num{ font-family: var(--f-mono); font-size:26px; font-weight:700; color: var(--yellow); }
.about-badge .lbl{ font-size:11px; color:#B9B8B3; max-width:100px; line-height:1.3; }
@media (max-width: 560px){ .about-badge{ left:12px; bottom:-18px; padding:14px 16px; } }

.stat-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; margin-top: 44px; padding-top: 40px; border-top:1px solid var(--line); }
@media (max-width: 700px){ .stat-row{ grid-template-columns: repeat(2,1fr); } }
.stat-item .num{ font-family: var(--f-mono); font-size: clamp(24px,3vw,34px); font-weight:700; color: var(--ink); }
.stat-item .num span{ color: var(--gold); }
.stat-item .lbl{ font-size:13px; color: var(--slate); margin-top:4px; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{ columns: 4 220px; column-gap: 14px; }
.gallery-grid img{ width:100%; border-radius: 14px; margin-bottom:14px; break-inside: avoid; transition: transform .4s var(--ease), filter .4s; }
.gallery-grid a{ display:block; overflow:hidden; border-radius:14px; }
.gallery-grid a:hover img{ transform: scale(1.04); }
.gallery-filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 30px; }
.gfilter{ padding:9px 18px; border-radius:100px; border:1px solid var(--line); background: var(--white); font-size:13px; font-weight:600; color:var(--slate); }
.gfilter.is-active{ background: var(--ink); color: var(--yellow); border-color: var(--ink); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ max-width: 780px; margin: 0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--line); border-radius: 14px; background: var(--white); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 19px 22px; background:none; border:none; text-align:left; font-family: var(--f-body); font-weight:600; font-size:15.5px; color: var(--ink);
}
.faq-q .plus{ width:24px; height:24px; border-radius:50%; background: var(--paper-dim); flex-shrink:0; display:flex; align-items:center; justify-content:center; position:relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background: var(--ink); border-radius:2px; transition: transform .25s var(--ease), opacity .25s; }
.faq-q .plus::before{ width:10px; height:2px; }
.faq-q .plus::after{ width:2px; height:10px; }
.faq-item.is-open .plus::after{ transform: rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-a-inner{ padding: 0 22px 20px; color: var(--slate); font-size:14.5px; line-height:1.7; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 40px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-info-card{ background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 32px; }
.contact-info-row{ display:flex; gap:14px; padding: 16px 0; border-bottom:1px solid rgba(255,255,255,.09); }
.contact-info-row:last-of-type{ border-bottom:none; }
.contact-info-row .icon-box{ width:40px; height:40px; border-radius:10px; background: rgba(255,199,44,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-row .icon-box svg{ width:19px; height:19px; color: var(--yellow); }
.contact-info-row .icon-box i{ color: var(--yellow); font-size:17px; }
.contact-info-row h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:#9C9B97; margin-bottom:4px; font-family: var(--f-mono); font-weight:600; }
.contact-info-row p, .contact-info-row a{ font-size:14.5px; }
.contact-social{ display:flex; gap:10px; margin-top: 24px; }
.social-btn{ width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; transition: transform .2s, filter .2s, box-shadow .2s; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.social-btn:hover{ transform: translateY(-2px); filter: brightness(1.1); }
.social-btn i{ font-size: 15px; }
.social-fb{ background: #1877F2; }
.social-ig{ background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-yt{ background: #FF0000; }
.social-wa{ background: #25D366; }

.map-frame{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:280px; border:0; display:block; }

.form-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:560px){ .form-grid{ grid-template-columns: 1fr; } }
.form-grid .field.full{ grid-column: 1 / -1; }
textarea{
  width:100%; padding: 13px 14px; border-radius: 10px; border:1px solid var(--line); background: var(--paper);
  font-family: var(--f-body); font-size:14px; resize: vertical; min-height:100px;
}
textarea:focus{ border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,150,43,.15); outline:none; }
.form-note{ font-size:12.5px; color: var(--slate-light); margin-top:14px; }
.form-success{ display:none; align-items:center; gap:10px; background: rgba(37,211,102,.1); border:1px solid rgba(37,211,102,.35); color:#1a8a49; padding:14px 16px; border-radius:12px; font-size:14px; font-weight:600; margin-bottom:16px; }
.form-success.is-shown{ display:flex; }
.form-success svg{ width:18px; height:18px; flex-shrink:0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--ink); color: #C7C6C2; padding: 72px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; row-gap:36px; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand p{ margin-top:14px; font-size:14px; line-height:1.7; max-width:300px; color:#9C9B97; }
.footer-col h4{ font-family: var(--f-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:#C7C6C2; transition: color .2s; }
.footer-col a:hover{ color: var(--yellow); }
.footer-col .contact-line{ display:flex; gap:10px; font-size:14px; margin-bottom:12px; }
.footer-col .contact-line svg{ width:16px; height:16px; color: var(--gold); flex-shrink:0; margin-top:3px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 22px 0; flex-wrap:wrap; gap:10px; font-size:13px; color:#8C8B87; }
.footer-bottom a{ color:#8C8B87; } .footer-bottom a:hover{ color: var(--yellow); }
.footer-legal{ display:flex; gap:20px; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.float-stack{ position:fixed; right:20px; bottom:20px; z-index:250; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.float-btn{
  width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.4); transition: transform .25s var(--ease);
}
.float-btn:hover{ transform: scale(1.08); }
.float-wa{ background: var(--green-wa); color:#fff; }
.float-wa svg{ width:28px; height:28px; }
.float-call{ display:none; }

.sticky-cta-mobile{ display:none; }
@media (max-width: 720px){
  .sticky-cta-mobile{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:240; background: var(--ink);
    padding: 10px 14px; gap:10px; box-shadow: 0 -8px 24px -12px rgba(0,0,0,.4);
  }
  .sticky-cta-mobile .btn{ flex:1; padding:13px 10px; font-size:13.5px; }
  body{ padding-bottom: 68px; }
  .float-stack{ bottom: 84px; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .16s; }
.reveal-delay-3{ transition-delay: .24s; }

/* =========================================================
   MISC
   ========================================================= */
.badge-strip{ display:flex; flex-wrap:wrap; gap: 14px 28px; align-items:center; justify-content:center; }
.badge-strip-item{ display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; color: var(--slate); }
.badge-strip-item svg{ width:16px; height:16px; color: var(--gold); }

.cta-band{ background: var(--ink); border-radius: var(--radius-lg); padding: 52px 40px; text-align:center; position:relative; overflow:hidden; }
.cta-band h2{ color: var(--paper); font-size: clamp(24px,3vw,36px); }
.cta-band p{ color:#C7C6C2; margin-top:12px; font-size:16px; }
.cta-band .hero-ctas{ justify-content:center; margin-top:26px; }

.divider-dash{ border:none; border-top: 1px dashed var(--line); margin: 0; }

.table-wrap{ overflow-x:auto; border-radius: var(--radius-md); border:1px solid var(--line); }
table.pricing{ width:100%; border-collapse: collapse; font-size:14px; min-width:640px; }
table.pricing th{ background: var(--ink); color: var(--yellow); font-family: var(--f-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.05em; padding:14px 16px; text-align:left; }
table.pricing td{ padding: 14px 16px; border-bottom:1px solid var(--line); }
table.pricing tr:last-child td{ border-bottom:none; }
table.pricing tr:hover td{ background: var(--paper-dim); }

.step-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width:900px){ .step-row{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .step-row{ grid-template-columns: 1fr; } }
.step-card{ position:relative; padding-top: 8px; }
.step-num{ font-family: var(--f-mono); font-size:13px; color: var(--gold); font-weight:700; margin-bottom:10px; }
.step-card h4{ font-size:16px; margin-bottom:8px; }
.step-card p{ font-size:13.5px; color: var(--slate); }

.legal-content h2{ font-size:22px; margin-top:36px; margin-bottom:12px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ color: var(--slate); font-size:15px; line-height:1.8; margin-bottom:12px; }
.legal-content ul{ padding-left:20px; list-style:disc; }
.legal-content li{ margin-bottom:8px; }
