/* ============================================================
   BLUE RIVER AUTO SALES & RENTALS LLC
   Guru-Level Design — v2.0
   ============================================================ */

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

:root {
  --bg: #07070e;
  --bg2: #0a0a14;
  --bg3: #0d1a33;
  --border: #1a3a6b;
  --border-light: rgba(26,58,107,0.4);
  --blue: #4a9eff;
  --blue2: #1a3a6b;
  --gold: #c9a84c;
  --white: #ffffff;
  --gray: #7a8fb0;
  --text: #b8c8e8;
  --nav: 80px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Barlow',sans-serif; background:var(--bg); color:var(--white); overflow-x:hidden; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--blue2); border-radius:2px; }

/* ══════════════════════════════════════
   LOADER
══════════════════════════════════════ */
#loader {
  position:fixed; inset:0; background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  z-index:9999; transition:opacity .7s ease, visibility .7s ease;
}
#loader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-inner { text-align:center; }
.loader-logo { width:180px; margin:0 auto 24px; animation:logoPulse 1.6s ease-in-out infinite; }
.loader-track { width:180px; height:1px; background:var(--border); margin:0 auto; overflow:hidden; }
.loader-fill { height:1px; background:linear-gradient(90deg,var(--blue2),var(--blue)); animation:fillBar 1.8s ease forwards; }
@keyframes logoPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.97)} }
@keyframes fillBar { 0%{width:0} 100%{width:100%} }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; height:var(--nav);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 6%; z-index:1000; transition:all .4s ease;
}
.nav.solid {
  background:rgba(7,7,14,.96);
  border-bottom:1px solid var(--border-light);
  backdrop-filter:blur(20px);
}
.nav-logo img { height:52px; width:auto; }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a {
  font-size:11px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--gray);
  position:relative; transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--blue); transition:width .3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-btn {
  font-size:11px; font-weight:800; letter-spacing:1.5px;
  text-transform:uppercase; color:#000;
  background:var(--blue); border:none;
  padding:10px 22px; border-radius:2px; cursor:pointer;
  transition:all .3s;
}
.nav-btn:hover { background:var(--white); transform:translateY(-1px); }
.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.burger span { display:block; width:22px; height:1.5px; background:var(--white); transition:all .3s; }
.mob-nav {
  display:none; position:fixed; inset:0; top:var(--nav);
  background:rgba(7,7,14,.98); backdrop-filter:blur(24px);
  flex-direction:column; align-items:center; justify-content:center; gap:36px;
  z-index:999;
}
.mob-nav.open { display:flex; }
.mob-nav a { font-size:22px; font-weight:800; text-transform:uppercase; letter-spacing:2px; color:var(--gray); transition:color .3s; }
.mob-nav a:hover { color:var(--blue); }
.mob-nav .nav-btn { margin-top:16px; font-size:13px; padding:14px 36px; }

/* ══════════════════════════════════════
   HOMEPAGE HERO — GURU LEVEL
══════════════════════════════════════ */
.home-hero {
  position:relative; height:100vh; min-height:700px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.home-hero-bg {
  position:absolute; inset:0;
  background-image:url('../images/hero-porsche.png');
  background-size:cover;
  background-position:center 30%;
  transform:scale(1.05);
  transition:transform 10s ease;
}
.home-hero-bg.loaded { transform:scale(1); }
.home-hero-grad {
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(7,7,14,1) 0%, rgba(7,7,14,.7) 30%, rgba(7,7,14,.2) 70%, rgba(7,7,14,.5) 100%),
    linear-gradient(to right, rgba(7,7,14,.9) 0%, transparent 60%);
}
.home-hero-content {
  position:relative; z-index:2;
  padding:0 6% 80px;
  width:100%;
  display:grid; grid-template-columns:1fr 1fr;
  align-items:flex-end; gap:40px;
}
.home-hero-left {}
.home-hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  margin-bottom:28px;
}
.eyebrow-line { width:40px; height:1px; background:var(--blue); }
.eyebrow-text { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--blue); }
.home-hero h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(56px,8vw,100px);
  font-weight:900; line-height:.92;
  text-transform:uppercase;
  margin-bottom:28px;
}
.home-hero h1 em {
  font-style:italic; color:var(--blue);
  display:block;
}
.home-hero-sub {
  font-size:15px; color:var(--gray); line-height:1.8;
  max-width:440px; margin-bottom:36px;
}
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.btn-solid {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue); color:#000;
  font-size:11px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:14px 28px; border:none; border-radius:2px; cursor:pointer; transition:all .3s;
}
.btn-solid:hover { background:var(--white); transform:translateY(-2px); box-shadow:0 8px 24px rgba(74,158,255,.3); }
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--white);
  font-size:11px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:13px 28px; border:1px solid rgba(255,255,255,.2); border-radius:2px;
  cursor:pointer; transition:all .3s;
}
.btn-ghost:hover { border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }
.home-hero-right {
  display:flex; flex-direction:column; align-items:flex-end; gap:20px;
}
.hero-stat-cards { display:grid; grid-template-columns:1fr 1fr; gap:12px; width:100%; max-width:340px; }
.hero-stat-card {
  background:rgba(13,26,51,.6); backdrop-filter:blur(16px);
  border:1px solid var(--border-light); border-radius:8px;
  padding:20px 16px;
}
.hero-stat-num {
  font-family:'Barlow Condensed',sans-serif;
  font-size:32px; font-weight:900; color:var(--blue); line-height:1;
}
.hero-stat-label { font-size:10px; color:var(--gray); letter-spacing:1px; text-transform:uppercase; margin-top:4px; }
.hero-badge-strip {
  display:flex; gap:20px; flex-wrap:wrap; justify-content:flex-end;
}
.hero-badge {
  display:flex; align-items:center; gap:6px;
  font-size:10px; color:var(--gray); font-weight:600; letter-spacing:.5px;
}
.hero-badge::before { content:''; width:4px; height:4px; background:var(--blue); border-radius:50%; flex-shrink:0; }
.hero-scroll-hint {
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  padding-bottom:28px;
}
.scroll-line { width:1px; height:48px; background:linear-gradient(to bottom,var(--blue),transparent); animation:scrollPulse 2s ease-in-out infinite; }
.scroll-text { font-size:9px; color:var(--gray); letter-spacing:3px; text-transform:uppercase; }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:.3;transform:translateY(6px)} }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--border-light);
  border-bottom:1px solid var(--border-light);
  background:rgba(13,26,51,.4);
  backdrop-filter:blur(10px);
}
.stat-cell {
  padding:28px 20px; text-align:center;
  border-right:1px solid var(--border-light);
  transition:background .3s;
  position:relative;
}
.stat-cell:last-child { border-right:none; }
.stat-cell:hover { background:rgba(74,158,255,.05); }
.stat-cell-icon { font-size:20px; margin-bottom:6px; }
.stat-cell-num {
  font-family:'Barlow Condensed',sans-serif;
  font-size:36px; font-weight:900; color:var(--blue); line-height:1;
}
.stat-cell-label { font-size:10px; color:var(--gray); letter-spacing:1.5px; text-transform:uppercase; margin-top:4px; }

/* ══════════════════════════════════════
   INNER PAGE HERO — GURU LEVEL
══════════════════════════════════════ */
.page-hero {
  position:relative; height:70vh; min-height:560px;
  display:flex; align-items:flex-end;
  overflow:hidden;
  clip-path:polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.05);
  transition:transform 8s ease;
}
.page-hero-bg.loaded { transform:scale(1); }
.page-hero-grad {
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(7,7,14,1) 0%, rgba(7,7,14,.6) 40%, rgba(7,7,14,.3) 100%),
    linear-gradient(to right, rgba(7,7,14,.85) 0%, transparent 65%);
}
.page-hero-content {
  position:relative; z-index:2;
  padding:0 6% 100px; width:100%;
}
.breadcrumb {
  font-size:11px; color:var(--gray); letter-spacing:1px;
  margin-bottom:20px; display:flex; align-items:center; gap:8px;
}
.breadcrumb a { color:var(--blue); transition:color .3s; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { color:var(--gray); }
.page-hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px; margin-bottom:20px;
}
.page-hero h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(52px,7vw,96px);
  font-weight:900; line-height:.92; text-transform:uppercase;
  max-width:700px;
}
.page-hero h1 .blue { color:var(--blue); }
.page-hero h1 .italic { font-style:italic; }
.page-hero-sub {
  font-size:16px; color:var(--gray); line-height:1.7;
  max-width:520px; margin-top:20px;
}
.page-hero-number {
  position:absolute; right:6%; bottom:80px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(120px,16vw,220px); font-weight:900;
  color:rgba(74,158,255,.04); line-height:1;
  pointer-events:none; user-select:none;
  letter-spacing:-4px;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding:100px 6%; }
.section-dark { background:var(--bg2); }
.section-card { background:var(--bg3); }

.label {
  display:inline-flex; align-items:center; gap:10px;
  font-size:10px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--blue);
  margin-bottom:16px;
}
.label::before { content:''; width:28px; height:1px; background:var(--blue); flex-shrink:0; }

.heading {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(36px,5vw,60px);
  font-weight:900; text-transform:uppercase;
  line-height:.95; margin-bottom:20px;
}
.heading .blue { color:var(--blue); }
.heading .italic { font-style:italic; }
.body-text { font-size:15px; color:var(--gray); line-height:1.8; max-width:580px; }

/* ══════════════════════════════════════
   HOW IT WORKS — STEPS
══════════════════════════════════════ */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:56px; }
.step-card {
  background:var(--bg2); padding:40px 32px;
  border-top:1px solid var(--border-light);
  position:relative; overflow:hidden;
  transition:background .4s;
}
.step-card:hover { background:var(--bg3); }
.step-card::before {
  content:attr(data-num);
  position:absolute; right:24px; top:20px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:80px; font-weight:900;
  color:rgba(74,158,255,.06); line-height:1;
  pointer-events:none;
}
.step-card-num {
  width:36px; height:36px; border:1px solid var(--border);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif;
  font-size:14px; font-weight:900; color:var(--blue);
  margin-bottom:20px; transition:all .3s;
}
.step-card:hover .step-card-num { background:var(--blue); color:#000; border-color:var(--blue); }
.step-card-title { font-size:17px; font-weight:800; margin-bottom:10px; }
.step-card-desc { font-size:13px; color:var(--gray); line-height:1.7; }

/* ══════════════════════════════════════
   VEHICLE CATEGORIES
══════════════════════════════════════ */
.cats { display:grid; grid-template-columns:repeat(5,1fr); gap:2px; margin-top:56px; }
.cat {
  position:relative; overflow:hidden;
  aspect-ratio:3/4; cursor:pointer;
}
.cat img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease;
}
.cat:hover img { transform:scale(1.08); }
.cat-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(7,7,14,.9) 0%, rgba(7,7,14,.2) 60%, transparent 100%);
  transition:background .4s;
}
.cat:hover .cat-overlay { background:linear-gradient(to top, rgba(13,26,51,.95) 0%, rgba(13,26,51,.4) 60%, rgba(74,158,255,.05) 100%); }
.cat-label {
  position:absolute; bottom:0; left:0; right:0;
  padding:20px 16px;
}
.cat-name {
  font-family:'Barlow Condensed',sans-serif;
  font-size:20px; font-weight:900; text-transform:uppercase;
  letter-spacing:1px;
}
.cat-arrow {
  font-size:14px; color:var(--blue); margin-top:4px;
  opacity:0; transform:translateX(-8px); transition:all .3s;
}
.cat:hover .cat-arrow { opacity:1; transform:translateX(0); }
.cat-top-border {
  position:absolute; top:0; left:0; right:0;
  height:2px; background:var(--blue);
  transform:scaleX(0); transition:transform .4s;
}
.cat:hover .cat-top-border { transform:scaleX(1); }

/* ══════════════════════════════════════
   FLEET PARALLAX SECTION
══════════════════════════════════════ */
.fleet-wrap {
  position:relative; height:600px; overflow:hidden;
}
.fleet-bg {
  position:absolute; inset:-10%;
  background-size:cover; background-position:center;
  background-attachment:fixed;
}
.fleet-overlay-grad {
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(7,7,14,.95) 0%, rgba(7,7,14,.6) 50%, rgba(7,7,14,.3) 100%);
}
.fleet-content-inner {
  position:absolute; inset:0;
  display:flex; align-items:center;
  padding:0 6%;
}
.fleet-text { max-width:500px; }
.fleet-text .heading { margin-bottom:20px; }
.fleet-text .body-text { margin-bottom:36px; }
.fleet-divider { width:60px; height:1px; background:var(--blue); margin:20px 0; }

/* ══════════════════════════════════════
   PRICING CARDS
══════════════════════════════════════ */
.pricing-wrap { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-top:56px; }
.price-panel {
  background:var(--bg2); padding:52px 44px;
  position:relative; overflow:hidden; transition:background .3s;
}
.price-panel:hover { background:var(--bg3); }
.price-panel.featured { background:var(--bg3); }
.price-panel-accent {
  position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--blue2),var(--blue));
  transform:scaleX(0); transition:transform .4s;
}
.price-panel:hover .price-panel-accent,
.price-panel.featured .price-panel-accent { transform:scaleX(1); }
.price-panel-tag {
  display:inline-block; background:var(--blue); color:#000;
  font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:4px 10px; margin-bottom:20px;
}
.price-panel-type { font-size:11px; color:var(--gray); letter-spacing:1px; text-transform:uppercase; margin-bottom:12px; }
.price-panel-amount {
  font-family:'Barlow Condensed',sans-serif;
  font-size:72px; font-weight:900; color:var(--blue); line-height:1;
}
.price-panel-unit { font-size:12px; color:var(--gray); margin-bottom:32px; }
.price-panel-divider { border:none; border-top:1px solid var(--border-light); margin-bottom:28px; }
.price-panel-list { list-style:none; margin-bottom:36px; }
.price-panel-list li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:13px; color:var(--text); padding:10px 0;
  border-bottom:1px solid rgba(26,58,107,.2);
}
.price-panel-list li:last-child { border-bottom:none; }
.price-panel-list li::before { content:'→'; color:var(--blue); font-weight:900; flex-shrink:0; margin-top:1px; }
.price-panel-btn {
  display:block; width:100%; text-align:center;
  font-size:11px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:15px; border:1px solid var(--border);
  color:var(--white); background:transparent;
  transition:all .3s; cursor:pointer;
}
.price-panel-btn:hover, .price-panel.featured .price-panel-btn {
  background:var(--blue); color:#000; border-color:var(--blue);
}

/* ══════════════════════════════════════
   NOTICE BANNER
══════════════════════════════════════ */
.notice {
  border-left:2px solid var(--gold);
  background:rgba(201,168,76,.06);
  padding:24px 28px; margin-top:36px;
  display:flex; gap:16px;
}
.notice-icon { font-size:20px; flex-shrink:0; }
.notice-title { font-size:13px; font-weight:800; color:var(--gold); margin-bottom:6px; }
.notice-body { font-size:13px; color:var(--gray); line-height:1.7; }

/* ══════════════════════════════════════
   TRUST GRID
══════════════════════════════════════ */
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:56px; }
.trust-cell {
  background:var(--bg2); padding:44px 32px;
  border-top:1px solid var(--border-light);
  transition:background .3s; position:relative;
}
.trust-cell:hover { background:var(--bg3); }
.trust-cell-icon { font-size:32px; margin-bottom:20px; }
.trust-cell-title { font-size:14px; font-weight:800; text-transform:uppercase; letter-spacing:.5px; margin-bottom:10px; }
.trust-cell-desc { font-size:13px; color:var(--gray); line-height:1.7; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-section {
  position:relative; padding:120px 6%;
  background:var(--bg2);
  overflow:hidden;
  text-align:center;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 0%, rgba(74,158,255,.08) 0%, transparent 65%);
}
.cta-section-eyebrow { margin-bottom:20px; justify-content:center; }
.cta-section h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(36px,6vw,72px); font-weight:900;
  text-transform:uppercase; line-height:.95; margin-bottom:16px;
  position:relative;
}
.cta-section-phone {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(40px,7vw,80px); font-weight:900;
  color:var(--blue); letter-spacing:2px; margin:20px 0 36px;
  position:relative;
}
.cta-section-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-wrap img { width:100%; height:480px; object-fit:cover; }
.about-img-accent {
  position:absolute; bottom:-24px; right:-24px;
  width:180px; height:180px;
  border:1px solid var(--border); background:var(--bg3);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:20px;
}
.about-img-accent-num {
  font-family:'Barlow Condensed',sans-serif;
  font-size:48px; font-weight:900; color:var(--blue); line-height:1;
}
.about-img-accent-text { font-size:10px; color:var(--gray); letter-spacing:1px; text-transform:uppercase; margin-top:4px; }
.about-text .body-text { margin-bottom:20px; }
.about-values { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:40px; }
.about-val { background:var(--bg3); border-left:2px solid var(--blue); padding:20px; }
.about-val-title { font-size:13px; font-weight:800; margin-bottom:6px; }
.about-val-desc { font-size:12px; color:var(--gray); line-height:1.6; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.service-row { display:grid; grid-template-columns:1fr 1fr; gap:0; margin-bottom:2px; min-height:480px; }
.service-row.flip { direction:rtl; }
.service-row.flip > * { direction:ltr; }
.service-img-panel { position:relative; overflow:hidden; }
.service-img-panel img { width:100%; height:100%; object-fit:cover; min-height:480px; transition:transform .6s; }
.service-img-panel:hover img { transform:scale(1.04); }
.service-text-panel { background:var(--bg2); padding:60px 52px; display:flex; flex-direction:column; justify-content:center; }
.service-text-panel .heading { font-size:clamp(28px,3.5vw,44px); }
.service-text-panel .body-text { margin-bottom:24px; }
.service-list { list-style:none; margin-bottom:32px; }
.service-list li { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--text); padding:8px 0; border-bottom:1px solid rgba(26,58,107,.2); }
.service-list li:last-child { border-bottom:none; }
.service-list li::before { content:'→'; color:var(--blue); flex-shrink:0; }

/* ══════════════════════════════════════
   HOW IT WORKS PAGE — TIMELINE
══════════════════════════════════════ */
.timeline { margin-top:60px; display:flex; flex-direction:column; gap:0; }
.tl-item { display:grid; grid-template-columns:80px 1fr; gap:0; position:relative; }
.tl-item:not(:last-child) .tl-line { content:''; position:absolute; left:39px; top:80px; bottom:0; width:1px; background:linear-gradient(to bottom, var(--blue),var(--border-light)); }
.tl-left { display:flex; flex-direction:column; align-items:center; padding-top:20px; }
.tl-num {
  width:48px; height:48px;
  background:var(--bg3); border:1px solid var(--border);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif; font-size:18px; font-weight:900; color:var(--blue);
  flex-shrink:0; position:relative; z-index:1; transition:all .3s;
}
.tl-item:hover .tl-num { background:var(--blue); color:#000; border-color:var(--blue); }
.tl-connector { flex:1; width:1px; background:linear-gradient(to bottom, var(--blue), var(--border-light)); margin-top:4px; }
.tl-item:last-child .tl-connector { display:none; }
.tl-right { padding:16px 0 48px 32px; }
.tl-content { background:var(--bg2); padding:32px 36px; transition:background .3s; }
.tl-item:hover .tl-content { background:var(--bg3); }
.tl-title { font-size:18px; font-weight:800; margin-bottom:10px; }
.tl-desc { font-size:14px; color:var(--gray); line-height:1.7; }

/* FAQ */
.faq-wrap { margin-top:60px; }
.faq-row { border-bottom:1px solid var(--border-light); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; cursor:pointer; gap:20px;
  font-size:15px; font-weight:700; color:var(--white);
  transition:color .3s;
}
.faq-q:hover { color:var(--blue); }
.faq-icon { width:24px; height:24px; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--blue); flex-shrink:0; transition:all .3s; }
.faq-row.open .faq-icon { background:var(--blue); color:#000; border-color:var(--blue); transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease, padding .3s; font-size:14px; color:var(--gray); line-height:1.8; }
.faq-row.open .faq-a { max-height:300px; padding-bottom:24px; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-wrap { display:grid; grid-template-columns:1fr 1fr; gap:80px; margin-top:56px; }
.contact-form-wrap { display:flex; flex-direction:column; gap:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field { display:flex; flex-direction:column; gap:8px; }
.form-field label { font-size:10px; font-weight:700; color:var(--gray); letter-spacing:1.5px; text-transform:uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  background:var(--bg2); border:1px solid var(--border-light);
  color:var(--white); padding:14px 16px; font-size:14px;
  font-family:'Barlow',sans-serif; transition:border-color .3s; outline:none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color:var(--blue); }
.form-field textarea { height:130px; resize:vertical; }
.form-field select option { background:var(--bg2); }
.form-submit {
  background:var(--blue); color:#000; border:none;
  padding:16px; font-size:11px; font-weight:800;
  letter-spacing:1.5px; text-transform:uppercase; cursor:pointer; transition:all .3s;
}
.form-submit:hover { background:var(--white); transform:translateY(-2px); }
.contact-info-wrap { display:flex; flex-direction:column; gap:0; }
.contact-info-item { display:flex; gap:20px; align-items:flex-start; padding:24px 0; border-bottom:1px solid var(--border-light); }
.contact-info-item:first-child { padding-top:0; }
.contact-icon { font-size:22px; margin-top:2px; flex-shrink:0; }
.contact-info-label { font-size:10px; color:var(--blue); letter-spacing:1.5px; text-transform:uppercase; font-weight:700; margin-bottom:4px; }
.contact-info-value { font-size:15px; font-weight:700; }
.contact-info-value a { color:var(--white); transition:color .3s; }
.contact-info-value a:hover { color:var(--blue); }
.map-wrap { margin-top:28px; }
.map-wrap iframe { width:100%; height:220px; border:none; display:block; filter:grayscale(80%) brightness(.7) invert(1) hue-rotate(180deg); }

/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.legal-wrap { max-width:800px; margin:0 auto; padding:140px 6% 100px; }
.legal-wrap h1 { font-family:'Barlow Condensed',sans-serif; font-size:56px; font-weight:900; text-transform:uppercase; margin-bottom:8px; }
.legal-updated { font-size:12px; color:var(--gray); padding-bottom:32px; margin-bottom:40px; border-bottom:1px solid var(--border-light); }
.legal-wrap h2 { font-size:16px; font-weight:800; color:var(--blue); text-transform:uppercase; letter-spacing:.5px; margin:36px 0 12px; }
.legal-wrap p { font-size:14px; color:var(--gray); line-height:1.8; margin-bottom:14px; }
.legal-wrap ul { margin:10px 0 14px 20px; }
.legal-wrap ul li { font-size:14px; color:var(--gray); line-height:1.8; margin-bottom:8px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background:#040409; border-top:1px solid var(--border-light); padding:72px 6% 0; }
.footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid var(--border-light); }
.footer-logo img { height:60px; width:auto; margin-bottom:18px; }
.footer-desc { font-size:13px; color:var(--gray); line-height:1.8; max-width:260px; }
.footer-socials { display:flex; gap:10px; margin-top:24px; }
.footer-social {
  width:36px; height:36px; background:var(--bg3);
  border:1px solid var(--border-light); display:flex;
  align-items:center; justify-content:center; font-size:15px;
  transition:all .3s; text-decoration:none;
}
.footer-social:hover { background:var(--blue2); border-color:var(--blue); transform:translateY(-2px); }
.footer-col h4 { font-size:10px; font-weight:800; color:var(--blue); letter-spacing:2px; text-transform:uppercase; margin-bottom:20px; }
.footer-col a { display:block; font-size:13px; color:var(--gray); text-decoration:none; margin-bottom:12px; transition:color .3s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { padding:24px 0; display:flex; justify-content:space-between; align-items:center; font-size:11px; color:#334; }

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.floaters { position:fixed; bottom:28px; right:28px; display:flex; flex-direction:column; gap:10px; z-index:998; }
.floater {
  width:50px; height:50px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; text-decoration:none;
  box-shadow:0 4px 20px rgba(0,0,0,.5); transition:transform .3s;
}
.floater:hover { transform:scale(1.12); }
.floater-wa { background:#25d366; }
.floater-call { background:var(--blue); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .8s ease, transform .8s ease; }
.reveal.left { transform:translateX(-40px); }
.reveal.right { transform:translateX(40px); }
.reveal.visible { opacity:1; transform:translate(0); }
.reveal.d1 { transition-delay:.1s; }
.reveal.d2 { transition-delay:.2s; }
.reveal.d3 { transition-delay:.3s; }
.reveal.d4 { transition-delay:.4s; }
.reveal.d5 { transition-delay:.5s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1100px) {
  .cats { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .about-split { grid-template-columns:1fr; }
  .about-img-accent { display:none; }
  .service-row,.service-row.flip { grid-template-columns:1fr; direction:ltr; }
  .service-img-panel img { min-height:300px; }
  .home-hero-content { grid-template-columns:1fr; }
  .home-hero-right { align-items:flex-start; }
}
@media(max-width:768px) {
  .nav-links,.nav-btn { display:none; }
  .burger { display:flex; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .stat-cell { border-bottom:1px solid var(--border-light); }
  .steps { grid-template-columns:1fr; }
  .cats { grid-template-columns:repeat(2,1fr); }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-wrap { grid-template-columns:1fr; }
  .contact-wrap { grid-template-columns:1fr; gap:48px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .hero-actions { flex-direction:column; }
  .btn-solid,.btn-ghost { width:100%; justify-content:center; }
  .page-hero { clip-path:none; height:60vh; }
  .page-hero-number { display:none; }
  .cta-section-btns { flex-direction:column; align-items:center; }
  .form-row { grid-template-columns:1fr; }
  .home-hero-content { padding-bottom:60px; }
  .about-values { grid-template-columns:1fr; }
  .floaters { bottom:16px; right:16px; }
}
@media(max-width:480px) {
  .cats { grid-template-columns:1fr 1fr; }
  .trust-grid { grid-template-columns:1fr; }
  .hero-stat-cards { grid-template-columns:1fr 1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
}
