/* ============================================================
   RESET & BASE — fully dark, no white
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #0a0a0a; overflow-x: hidden; position: relative; }
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}
h1, h2, h3, h4, h5, h6, .nav-logo { font-family: 'Outfit', sans-serif; }

:root {
  --bg-1:    #0a0a0a;   /* deepest — hero, footer */
  --bg-2:    #121212;   /* main section bg */
  --bg-3:    #1f1f1f;   /* card bg */
  --bg-4:    #2a2a2a;   /* card hover / raised */
  --bg-5:    #181818;   /* alternate section */
  --gold:    #FFCD11;   /* CAT yellow (kept var name for compat) */
  --gold-lt: #FFE066;   /* lighter yellow */
  --gold-dk: #C8A100;   /* darker yellow */
  --gold-dim: rgba(255,205,17,0.12);
  --gold-glow: rgba(255,205,17,0.22);
  --orange:    #FF8C00; /* construction orange — CTA highlights */
  --orange-lt: #FFA533;
  --orange-dk: #E87B00;
  --orange-glow: rgba(255,140,0,0.3);
  --border:  rgba(255,255,255,0.08);
  --border-gold: rgba(255,205,17,0.22);
  --border-orange: rgba(255,140,0,0.25);
  --text:    #f5f5f5;
  --muted:   rgba(245,245,245,0.55);
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px;
  --sh-gold: 0 12px 40px rgba(255,205,17,0.4);
  --sh-orange: 0 12px 40px rgba(255,140,0,0.4);
  --sh-card: 0 8px 40px rgba(0,0,0,0.6);
}

/* ============================================================
   CUSTOM CURSOR & PRELOADER
   ============================================================ */
@media (pointer: fine) {
  body, a, button, .nav-logo { cursor: none !important; }
}
.custom-cursor {
  position: fixed; top: 0; left: 0; width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%; pointer-events: none;
  z-index: 10000; transform: translate(-50%, -50%);
  mix-blend-mode: difference; transition: width 0.3s, height 0.3s;
}
.custom-cursor.hover { width: 50px; height: 50px; background: #fff; mix-blend-mode: exclusion; }

.preloader {
  position: fixed; inset: 0; background: #050505; z-index: 10001;
  display: flex; align-items: center; justify-content: center;
}
.preloader-text {
  font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; color: #fff;
  letter-spacing: -2px; overflow: hidden;
}

/* ============================================================
   GRADIENT TEXT
   ============================================================ */
.grad {
  background: linear-gradient(120deg, #FFCD11 0%, #FFE066 50%, #FFCD11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,15,0.65);
  backdrop-filter: blur(30px) saturate(150%); -webkit-backdrop-filter: blur(30px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
nav.scrolled { background: rgba(6,6,14,0.97); box-shadow: 0 4px 40px rgba(0,0,0,0.7); }
.nav-logo { font-size: 1.35rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; cursor: pointer; user-select: none; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: #fff; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%) !important;
  color: #0a0a0a !important; padding: 9px 22px !important; border-radius: 8px;
  font-weight: 800 !important; font-size: 0.85rem !important;
  transition: all 0.3s !important; position: relative; overflow: hidden;
  box-shadow: 0 3px 12px rgba(255,140,0,0.3);
}
.nav-cta::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg); transition: left 0.5s;
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: var(--sh-orange); }
.nav-cta:hover::after { left: 150%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; padding: 110px 6% 80px;
  background: var(--bg-1);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,205,17,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.045) 1px, transparent 1px);
  background-size: 55px 55px;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px); }
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,205,17,0.22) 0%, transparent 70%);
  top: -250px; left: -180px; animation: blob1 11s ease-in-out infinite;
}
.hero-glow-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(255,205,17,0.1) 0%, transparent 70%);
  bottom: -200px; right: -120px; animation: blob2 14s ease-in-out infinite;
}
.hero-glow-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,205,17,0.08) 0%, transparent 70%);
  top: 50%; left: 48%; animation: blob3 18s ease-in-out infinite;
}
@keyframes blob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(70px,50px) scale(1.1); }
  66%      { transform: translate(-50px,80px) scale(0.93); }
}
@keyframes blob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-70px,-40px) scale(1.08); }
  66%      { transform: translate(50px,-70px) scale(0.9); }
}
@keyframes blob3 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(40px,-50px); }
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,205,17,0.08); border: 1px solid var(--border-gold);
  color: var(--gold-lt); padding: 8px 18px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px;
  margin-bottom: 1.75rem;
}
.pulse-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: relative; flex-shrink: 0; }
.pulse-dot::before {
  content: ''; position: absolute; inset: -5px;
  background: var(--gold); border-radius: 50%; opacity: 0.3;
  animation: ring 2s ease-in-out infinite;
}
@keyframes ring {
  0%,100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(2.4); opacity: 0; }
}
.hero-title { font-size: clamp(3.5rem, 11vw, 9.5rem); font-weight: 900; color: #fff; line-height: 0.85; letter-spacing: -4px; margin-bottom: 2rem; text-transform: uppercase; }
.overflow-hidden { overflow: hidden; display: block; }
.word { display: inline-block; transform: translateY(120%); }
.hero h1 { font-size: clamp(2.6rem,4.5vw,4.1rem); font-weight: 900; color: #fff; line-height: 1.06; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero p { font-size: 1.05rem; color: var(--muted); line-height: 1.85; margin-bottom: 2.5rem; max-width: 450px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: #0a0a0a; padding: 14px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 800; font-size: 0.925rem;
  transition: all 0.3s; display: inline-block; position: relative; overflow: hidden;
  box-shadow: 0 4px 18px rgba(255,140,0,0.25);
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.55s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--sh-orange); }
.btn-primary:hover::after { left: 150%; }
.btn-outline {
  border: 1.5px solid var(--border-gold); color: rgba(255,255,255,0.75);
  padding: 14px 32px; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: 0.925rem; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); background: rgba(255,205,17,0.06); }

/* Hero right column */
.hero-visual { position: relative; }
.hero-card-main {
  background: rgba(31, 31, 31, 0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg); padding: 2.5rem; position: relative; overflow: hidden;
  margin-bottom: 1rem; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hero-card-main:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 50px rgba(255,205,17,0.15); }
.hero-card-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,205,17,0.7), transparent);
}
.hero-card-main::after {
  content: ''; position: absolute; top: -70px; right: -70px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,205,17,0.12) 0%, transparent 70%);
}
.equipment-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.hero-card-main h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.hero-card-main p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin: 0; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.hero-stat {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-md); padding: 1.25rem; text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.hero-stat::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transition: transform 0.3s;
}
.hero-stat:hover { background: var(--bg-4); }
.hero-stat:hover::after { transform: scaleX(1); }
.hero-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--gold); display: block; letter-spacing: -0.5px; line-height: 1; margin-bottom: 4px; }
.hero-stat .label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  padding: 1.75rem 6%; position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='black' fill-opacity='.1'/%3E%3C/svg%3E");
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); height: 36px; width: 1px; background: rgba(0,0,0,0.2);
}
.stat-item .big { font-size: 2.25rem; font-weight: 900; color: #0a0a0a; display: block; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.stat-item .small { font-size: 0.78rem; color: rgba(6,6,14,0.6); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }

/* ============================================================
   SHARED SECTION
   ============================================================ */
section { padding: 100px 6%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.7rem; font-weight: 800; color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: ''; display: inline-block; width: 18px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.section-title { font-size: clamp(1.9rem,3.5vw,2.85rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.82; max-width: 560px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header.center .section-label { margin: 0 auto 0.75rem; }

/* ============================================================
   EQUIPMENT SECTION
   ============================================================ */
#equipment { background: var(--bg-2); }
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px,1fr)); gap: 1.5rem; }
.equipment-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s, border-color 0.4s;
  cursor: pointer; position: relative;
}
.equipment-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s; z-index: 1;
}
.equipment-card:hover { transform: translateY(-10px); box-shadow: var(--sh-card), 0 0 0 1px var(--border-gold); border-color: var(--border-gold); }
.equipment-card:hover::before { transform: scaleX(1); }
.equipment-img {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  height: 195px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.equipment-img span { font-size: 5rem; position: relative; z-index: 1; }
.equipment-img::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,205,17,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255,205,17,0.07) 0%, transparent 50%);
}
.equipment-body { padding: 1.6rem; }
.equipment-body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; letter-spacing: -.3px; }
.equipment-body p { font-size: .875rem; color: var(--muted); line-height: 1.68; margin-bottom: 1.25rem; }
.equipment-link { color: var(--gold); font-weight: 700; font-size: .85rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s; }
.equipment-link:hover { gap: 12px; color: var(--gold-lt); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section {
  padding: 44px 6%;
  background: var(--bg-1);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.brands-inner { max-width: 1200px; margin: 0 auto; }
.brands-label { text-align: center; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 2rem; font-weight: 700; }
.brands-logos { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.brand-logo {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.85rem 1.75rem; font-size: 0.82rem;
  font-weight: 900; color: var(--muted); letter-spacing: 2px; transition: all 0.25s; cursor: default;
}
.brand-logo:hover { border-color: var(--gold); color: var(--gold); background: var(--bg-4); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,205,17,0.15); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--bg-5); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-3); border-radius: var(--r-lg); padding: 2rem;
  border: 1px solid var(--border); transition: all 0.35s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,205,17,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { box-shadow: var(--sh-card); transform: translateY(-6px); border-color: var(--border-gold); }
.service-card:hover::after { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg,#0a0a1e,#1a1a40); border: 1px solid var(--border-gold); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg,#2d1b69,#4c2a8a); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg,#0c3547,#0e5a78); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg,#0a3728,#0d5c40); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg,#3b0a0a,#6b1515); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg,var(--gold-dk),var(--gold)); }
.service-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.72; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-float {
  position: absolute; top: -1.5rem; left: -1.75rem;
  background: var(--bg-4); border-radius: 14px; padding: 1rem 1.3rem;
  box-shadow: var(--sh-card); display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--border-gold); z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.about-float-icon { font-size: 1.6rem; }
.about-float-text strong { display: block; font-size: .85rem; font-weight: 700; color: #fff; white-space: nowrap; }
.about-float-text span { font-size: .72rem; color: var(--muted); }
.about-img {
  background: linear-gradient(135deg,#0a0a0a 0%,#222222 100%);
  border-radius: var(--r-lg); height: 490px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; position: relative; overflow: hidden;
  box-shadow: var(--sh-card); border: 1px solid var(--border-gold);
}
.about-img::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,205,17,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255,205,17,0.08) 0%, transparent 50%);
}
.about-img::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,205,17,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about-badge {
  position: absolute; bottom: 1.75rem; right: 1.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #0a0a0a; padding: 1.1rem 1.5rem; border-radius: 16px;
  text-align: center; z-index: 1; box-shadow: var(--sh-gold);
}
.about-badge .num { font-size: 1.6rem; font-weight: 900; display: block; line-height: 1; letter-spacing: -0.5px; }
.about-badge .txt { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.8px; opacity: .8; margin-top: 4px; display: block; font-weight: 700; }
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.check {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-size: .78rem; font-weight: 900; flex-shrink: 0; margin-top: 1px;
  box-shadow: 0 4px 15px rgba(255,205,17,0.35);
}
.feature-list h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.feature-list p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-1); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,205,17,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); padding: 2.25rem; transition: all 0.35s; position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: .75rem; right: 1.5rem;
  font-size: 7rem; font-family: Georgia, serif;
  color: var(--gold); opacity: .1; line-height: 1; pointer-events: none;
}
.testimonial-card:hover { background: var(--bg-4); transform: translateY(-5px); border-color: rgba(255,205,17,0.35); }
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 1.25rem; letter-spacing: 3px; }
.testimonial-card blockquote { font-size: .925rem; color: rgba(255,255,255,0.68); line-height: 1.82; font-style: italic; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-weight: 900; font-size: .82rem; flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255,205,17,0.35);
}
.author-name { font-size: .9rem; font-weight: 700; color: #fff; }
.author-title { font-size: .775rem; color: var(--muted); margin-top: 2px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  padding: 90px 6%; position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); pointer-events: none;
}
.cta-band-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.9rem,3vw,2.8rem); font-weight: 900; color: #0a0a0a; letter-spacing: -1px; margin-bottom: 1rem; }
.cta-band p { font-size: 1.05rem; color: rgba(6,6,14,0.65); line-height: 1.75; margin-bottom: 2rem; }
.btn-dark {
  background: var(--bg-1); color: var(--gold-lt);
  padding: 15px 38px; border-radius: 10px; text-decoration: none;
  font-weight: 800; font-size: .95rem; display: inline-block;
  transition: all 0.3s; box-shadow: 0 10px 35px rgba(0,0,0,0.4);
  border: 1px solid var(--border-gold);
}
.btn-dark:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); color: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-5); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: .85rem; margin-top: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; background: var(--bg-3);
  border-radius: var(--r-md); border: 1px solid var(--border); transition: all 0.25s;
}
.contact-item:hover { border-color: var(--border-gold); box-shadow: 0 6px 24px rgba(255,205,17,0.1); transform: translateX(5px); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 100%);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: .25rem; font-weight: 700; }
.contact-item p { font-size: .9rem; font-weight: 600; color: #fff; margin: 0; }

.contact-form {
  background: var(--bg-3); border-radius: var(--r-lg); padding: 2.75rem;
  border: 1px solid var(--border-gold); box-shadow: var(--sh-card);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 1.75rem; letter-spacing: -.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .72rem; font-weight: 800; color: var(--gold-lt); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .925rem; color: #fff;
  background: var(--bg-4); transition: all 0.25s; outline: none;
}
.form-group select option { background: var(--bg-4); color: #fff; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--bg-5); box-shadow: 0 0 0 4px rgba(255,205,17,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: #0a0a0a; border: none; padding: 15px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(255,140,0,0.25);
}
.form-submit::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg); transition: left 0.55s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--sh-orange); }
.form-submit:hover::after { left: 150%; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bg-1); color: var(--muted); padding: 72px 6% 36px; border-top: 1px solid var(--border-gold); }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-logo { font-size: 1.35rem; font-weight: 900; color: #fff; letter-spacing: -.5px; margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: .875rem; line-height: 1.82; color: var(--muted); max-width: 260px; }
.footer-col h4 { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-lt); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: .875rem; transition: all 0.22s; display: inline-block; }
.footer-col ul a:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,0.18);
}

/* ============================================================
   HERO FLAGS ROW (legacy — kept for compatibility)
   ============================================================ */
.hero-flags {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 2.25rem; flex-wrap: wrap;
}
.flag-item {
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.5); letter-spacing: 0.3px;
  transition: color 0.2s;
}
.flag-item:hover { color: var(--gold-lt); }
.flag-divider { color: rgba(255,255,255,0.18); font-size: 0.9rem; }

/* ============================================================
   HERO TRUST STRIP (new global positioning)
   ============================================================ */
.hero-trust {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  max-width: 460px;
}
.hero-trust-stars {
  color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; flex-shrink: 0;
}
.hero-trust-text {
  font-size: 0.82rem; color: var(--muted); line-height: 1.55;
}
.hero-trust-text strong { color: #fff; font-weight: 700; }

/* ============================================================
   HERO CARD ENHANCEMENTS
   ============================================================ */
.hero-card-glow {
  position: absolute; top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,205,17,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.15); }
}
.hero-card-features {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem;
  position: relative; z-index: 1;
}
.hero-feature-pill {
  font-size: 0.7rem; font-weight: 700;
  background: rgba(255,205,17,0.08); border: 1px solid var(--border-gold);
  color: var(--gold-lt); padding: 5px 12px; border-radius: 100px;
}

/* ============================================================
   HERO SCROLL HINT
   ============================================================ */
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  pointer-events: none; z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--gold-dim);
  border-radius: 12px; position: relative;
}
.scroll-mouse::before {
  content: ''; position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 100px;
  animation: scrollMouseDot 2.2s ease-in-out infinite;
}
@keyframes scrollMouseDot {
  0%,100% { transform: translate(-50%, 0); opacity: 1; }
  50%     { transform: translate(-50%, 12px); opacity: 0; }
}
.scroll-label {
  font-size: 0.65rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 2px;
}

/* ============================================================
   EQUIP TAG (badge on equipment cards)
   ============================================================ */
.equip-tag {
  display: inline-block; margin-bottom: 0.55rem;
  background: rgba(255,205,17,0.1); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 3px 10px; border-radius: 100px;
}

/* ============================================================
   EQUIPMENT GRID 3-COL FOR 9 CARDS
   ============================================================ */
.equipment-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 980px) {
  .equipment-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .equipment-grid-3 { grid-template-columns: 1fr; }
}
.equipment-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.equipment-cta-row p {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); margin: 0;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section { background: var(--bg-5); overflow: hidden; }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.why-grid-6 {
  grid-template-columns: repeat(3,1fr);
}
@media (max-width: 980px) {
  .why-grid-6 { grid-template-columns: repeat(2,1fr); }
}
.why-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.25rem;
  position: relative; overflow: hidden; transition: all 0.35s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.why-card:hover { background: var(--bg-4); border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--sh-card); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-featured {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, var(--bg-4) 0%, rgba(255,205,17,0.05) 100%);
  box-shadow: 0 0 0 1px rgba(255,205,17,0.15), var(--sh-card);
}
.why-card-featured::before { transform: scaleX(1); }
.why-icon {
  font-size: 2.4rem; margin-bottom: 1.25rem; display: block;
  filter: drop-shadow(0 4px 12px rgba(255,205,17,0.3));
}
.why-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; letter-spacing: -.3px; }
.why-card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.why-badge {
  display: inline-block; margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #0a0a0a; font-size: 0.62rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 100px;
}

/* ============================================================
   HOW IT WORKS — 5-STEP TIMELINE
   ============================================================ */
.how-section { background: var(--bg-2); position: relative; overflow: hidden; }
.how-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,205,17,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.timeline {
  position: relative;
  max-width: 920px; margin: 0 auto;
  padding: 1rem 0;
}
.timeline-line {
  position: absolute; left: 38px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 8%, var(--gold) 92%, transparent 100%);
  opacity: 0.4;
}
.timeline-step {
  position: relative;
  padding-left: 100px; margin-bottom: 2.5rem;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-num {
  position: absolute; left: 0; top: 0;
  width: 78px; height: 78px;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-4) 100%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
  box-shadow: 0 0 0 6px var(--bg-2), 0 8px 30px rgba(255,205,17,0.25);
  z-index: 2;
}
.timeline-content {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); padding: 1.75rem 2rem;
  position: relative;
  transition: all 0.35s;
}
.timeline-content::before {
  content: ''; position: absolute;
  left: -10px; top: 32px;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--border-gold);
}
.timeline-content::after {
  content: ''; position: absolute;
  left: -8px; top: 33px;
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid var(--bg-3);
}
.timeline-step:hover .timeline-content {
  background: var(--bg-4); transform: translateX(6px); box-shadow: var(--sh-card);
}
.timeline-step:hover .timeline-content::after { border-right-color: var(--bg-4); }
.timeline-icon {
  font-size: 1.8rem; margin-bottom: 0.6rem; display: block;
  filter: drop-shadow(0 4px 12px rgba(255,205,17,0.25));
}
.timeline-content h3 {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  margin-bottom: 0.5rem; letter-spacing: -.3px;
}
.timeline-content p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 0.85rem;
}
.timeline-time {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  color: var(--gold-lt);
  background: rgba(255,205,17,0.08);
  border: 1px solid var(--border-gold);
  padding: 4px 10px; border-radius: 6px;
  letter-spacing: 0.5px;
}
.how-cta-row {
  text-align: center; margin-top: 3.5rem;
}

/* Legacy steps-grid (kept for backward compat if needed) */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-top: 0.5rem;
}
.step-card {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); padding: 2.25rem 2rem;
  position: relative; overflow: hidden; transition: all 0.35s;
  text-align: center;
}
.step-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,205,17,0.06) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.35s;
}
.step-card:hover { background: var(--bg-4); transform: translateY(-6px); box-shadow: var(--sh-card); }
.step-card:hover::after { opacity: 1; }
.step-num {
  font-size: 4rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -3px; margin-bottom: 0.75rem;
  display: block; opacity: 0.35;
}
.step-icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.step-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; letter-spacing: -.3px; }
.step-card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  align-self: center; padding: 0 0.5rem; padding-top: 1rem;
  color: var(--gold); font-size: 1.5rem; opacity: 0.5;
}
.step-connector::before { content: '→'; }

/* ============================================================
   ABOUT IMG GRID OVERLAY
   ============================================================ */
.about-img-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,205,17,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ============================================================
   GCC / GLOBAL COVERAGE SECTION
   ============================================================ */
.coverage-section { background: var(--bg-1); }
.coverage-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.coverage-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: all 0.35s; position: relative; overflow: hidden;
  text-align: center;
}
.coverage-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,205,17,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.coverage-card:hover { background: var(--bg-4); border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--sh-card); }
.coverage-card:hover::before { opacity: 1; }
.coverage-flag { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.coverage-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; letter-spacing: -.3px; }
.coverage-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }
.coverage-tag {
  display: inline-block; margin-top: 0.85rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #0a0a0a; font-size: 0.6rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 100px;
}
.coverage-footnote {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.9rem; color: var(--muted);
}
.coverage-footnote a { color: var(--gold); text-decoration: none; font-weight: 700; border-bottom: 1px dashed var(--gold-dim); }
.coverage-footnote a:hover { color: var(--gold-lt); }

/* ============================================================
   BRANDS FOOTNOTE
   ============================================================ */
.brands-footnote {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ============================================================
   FAQ SECTION + ACCORDION
   ============================================================ */
.faq-section { background: var(--bg-5); }
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.faq-item {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-dim), var(--sh-card); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none; outline: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.75rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem; font-weight: 700; color: #fff;
  transition: all 0.2s;
}
.faq-q:hover { color: var(--gold-lt); }
.faq-q span:first-child { flex: 1; padding-right: 1rem; }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,205,17,0.08); border: 1px solid var(--border-gold);
  color: var(--gold); border-radius: 50%;
  font-size: 1.1rem; font-weight: 700;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold); color: #0a0a0a; border-color: var(--gold);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
  padding: 0 1.75rem;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 1.75rem 1.5rem;
}
.faq-a p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.78;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   CONTACT FORM SUB
   ============================================================ */
.contact-form-sub {
  font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.7;
}
.contact-form-sub a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* ============================================================
   FOOTER CONTACT MINI
   ============================================================ */
.footer-contact-mini {
  margin-top: 1rem; display: flex; flex-direction: column; gap: 0.35rem;
}
.footer-contact-mini p { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.7rem;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
}
.whatsapp-icon {
  position: relative; z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.whatsapp-pulse {
  position: absolute; inset: 0;
  border-radius: 50%; background: rgba(37,211,102,0.5);
  animation: waPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%);
  background: var(--bg-4); border: 1px solid var(--border-gold);
  color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: var(--sh-card);
}
.whatsapp-tooltip::after {
  content: ''; position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--border-gold);
}
.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1; transform: translateY(-50%) translateX(-4px);
}

/* ============================================================
   QUOTE PAGE STYLES
   ============================================================ */
.quote-page {
  padding: 130px 6% 100px;
  background: var(--bg-1);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.quote-page::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,205,17,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.quote-glow-1 {
  position: absolute;
  top: -200px; left: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,205,17,0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: blob1 13s ease-in-out infinite;
}
.quote-glow-2 {
  position: absolute;
  bottom: -200px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,205,17,0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: blob2 15s ease-in-out infinite;
}
.quote-container {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.quote-header {
  text-align: center; margin-bottom: 3rem;
}
.quote-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem;
  align-items: start;
}
@media (max-width: 980px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-sidebar { position: static !important; }
}
.quote-form-wrap {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: var(--sh-card);
  position: relative; overflow: hidden;
}
.quote-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.quote-form h3 {
  font-size: 1.45rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; letter-spacing: -0.5px;
}
.quote-form-intro {
  font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7;
}
.quote-section {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.quote-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.quote-section-title {
  font-size: 0.72rem; font-weight: 800;
  color: var(--gold); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 8px;
}
.quote-section-title::before {
  content: ''; width: 18px; height: 2px; background: var(--gold); border-radius: 2px;
}
.quote-sidebar {
  display: flex; flex-direction: column; gap: 1.25rem;
  position: sticky; top: 90px;
}
.quote-sidebar-card {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-md); padding: 1.5rem;
  transition: all 0.3s;
}
.quote-sidebar-card:hover {
  background: var(--bg-4); transform: translateY(-3px);
}
.quote-sidebar-card .icon {
  font-size: 1.6rem; margin-bottom: 0.7rem; display: block;
  filter: drop-shadow(0 4px 12px rgba(255,205,17,0.25));
}
.quote-sidebar-card h4 {
  font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem;
}
.quote-sidebar-card p {
  font-size: 0.82rem; color: var(--muted); line-height: 1.7;
}
.quote-trust-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,205,17,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
}
.quote-trust-row .icon { font-size: 1.3rem; }
.quote-trust-row .text { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.quote-trust-row .text strong { color: #fff; font-weight: 700; }
.form-upload {
  display: block;
  border: 2px dashed var(--border-gold);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  background: var(--bg-4);
  transition: all 0.25s;
}
.form-upload:hover {
  border-color: var(--gold); background: var(--bg-5);
}
.form-upload .upload-icon {
  font-size: 1.6rem; margin-bottom: 0.5rem; display: block;
}
.form-upload .upload-label {
  font-size: 0.85rem; color: #fff; font-weight: 600;
  display: block;
}
.form-upload .upload-hint {
  font-size: 0.72rem; color: var(--muted); margin-top: 0.25rem;
  display: block;
}
.form-upload input[type=file] {
  display: none;
}

/* Radio group for new/used */
.radio-group {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem;
}
.radio-option {
  position: relative; cursor: pointer;
}
.radio-option input {
  position: absolute; opacity: 0; pointer-events: none;
}
.radio-option-label {
  display: block;
  text-align: center;
  padding: 0.85rem 0.6rem;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.7);
  transition: all 0.25s;
}
.radio-option:hover .radio-option-label {
  border-color: var(--border-gold); color: #fff;
}
.radio-option input:checked + .radio-option-label {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-color: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(255,205,17,0.3);
}

/* ============================================================
   FAQ PAGE STYLES
   ============================================================ */
.faq-page {
  padding: 130px 6% 100px;
  background: var(--bg-1);
  position: relative;
  min-height: 100vh;
}
.faq-page-container {
  max-width: 880px; margin: 0 auto;
  position: relative; z-index: 1;
}
.faq-category {
  margin-bottom: 3rem;
}
.faq-category-title {
  font-size: 1.15rem; font-weight: 800; color: var(--gold-lt);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem;
}
.faq-category-title::before {
  content: ''; width: 32px; height: 2px; background: var(--gold); border-radius: 2px;
}

/* ============================================================
   THANK YOU PAGE STYLES
   ============================================================ */
.thank-you-page {
  min-height: 100vh;
  background: var(--bg-1);
  padding: 130px 6% 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.thank-you-page::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,205,17,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}
.thank-you-content {
  text-align: center;
  max-width: 640px;
  position: relative; z-index: 1;
}
.thank-you-checkmark {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: #0a0a0a;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(255,205,17,0.4);
  animation: thankCheck 0.8s cubic-bezier(.34,1.56,.64,1), thankPulse 2.5s ease-in-out 0.8s infinite;
}
@keyframes thankCheck {
  0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes thankPulse {
  0%,100% { box-shadow: 0 20px 60px rgba(255,205,17,0.4), 0 0 0 0 rgba(255,205,17,0.4); }
  50%     { box-shadow: 0 20px 60px rgba(255,205,17,0.4), 0 0 0 25px rgba(255,205,17,0); }
}
.thank-you-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; letter-spacing: -1.5px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.thank-you-content p {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 0.75rem;
}
.thank-you-content p strong { color: var(--gold); font-weight: 700; }
.thank-you-next {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 740px) {
  .thank-you-next { grid-template-columns: 1fr; }
}
.thank-step {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-md); padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}
.thank-step:hover { background: var(--bg-4); transform: translateY(-3px); }
.thank-step .num {
  font-size: 1.4rem; font-weight: 900; color: var(--gold);
  display: block; margin-bottom: 0.3rem;
}
.thank-step .label {
  font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.thank-you-actions {
  margin-top: 3rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* ============================================================
   EQUIP TAG (badge on equipment cards)
   ============================================================ */
.equip-tag {
  display: inline-block; margin-bottom: 0.55rem;
  background: rgba(255,205,17,0.1); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 3px 10px; border-radius: 100px;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section { background: var(--bg-5); }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.25rem;
  position: relative; overflow: hidden; transition: all 0.35s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.why-card:hover { background: var(--bg-4); border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--sh-card); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-featured {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, var(--bg-4) 0%, rgba(255,205,17,0.05) 100%);
  box-shadow: 0 0 0 1px rgba(255,205,17,0.15), var(--sh-card);
}
.why-card-featured::before { transform: scaleX(1); }
.why-icon {
  font-size: 2.4rem; margin-bottom: 1.25rem; display: block;
  filter: drop-shadow(0 4px 12px rgba(255,205,17,0.3));
}
.why-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; letter-spacing: -.3px; }
.why-card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.why-badge {
  display: inline-block; margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #0a0a0a; font-size: 0.62rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 100px;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-section { background: var(--bg-2); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-top: 0.5rem;
}
.step-card {
  background: var(--bg-3); border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); padding: 2.25rem 2rem;
  position: relative; overflow: hidden; transition: all 0.35s;
  text-align: center;
}
.step-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,205,17,0.06) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.35s;
}
.step-card:hover { background: var(--bg-4); transform: translateY(-6px); box-shadow: var(--sh-card); }
.step-card:hover::after { opacity: 1; }
.step-num {
  font-size: 4rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -3px; margin-bottom: 0.75rem;
  display: block; opacity: 0.35;
}
.step-icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.step-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; letter-spacing: -.3px; }
.step-card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  align-self: center; padding: 0 0.5rem; padding-top: 1rem;
  color: var(--gold); font-size: 1.5rem; opacity: 0.5;
}
.step-connector::before { content: '→'; }

/* ============================================================
   GCC COVERAGE SECTION
   ============================================================ */
.coverage-section { background: var(--bg-1); }
.coverage-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.coverage-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: all 0.35s; position: relative; overflow: hidden;
  text-align: center;
}
.coverage-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,205,17,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.coverage-card:hover { background: var(--bg-4); border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--sh-card); }
.coverage-card:hover::before { opacity: 1; }
.coverage-flag { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.coverage-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; letter-spacing: -.3px; }
.coverage-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }
.coverage-tag {
  display: inline-block; margin-top: 0.85rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #0a0a0a; font-size: 0.6rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 100px;
}

/* ============================================================
   FOOTER CONTACT MINI
   ============================================================ */
.footer-contact-mini {
  margin-top: 1rem; display: flex; flex-direction: column; gap: 0.35rem;
}
.footer-contact-mini p { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   EQUIPMENT CARD WITH REAL IMAGES (upgraded)
   ============================================================ */
.equipment-card .equipment-img {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  height: 240px;
  position: relative; overflow: hidden;
  display: block;
}
.equipment-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.4s;
  filter: brightness(0.85) saturate(1.1);
}
.equipment-card:hover .equipment-img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.15);
}
.equipment-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.equipment-img-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 5px 12px; border-radius: 100px;
  z-index: 2;
}
.equipment-img-emoji {
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 2.2rem;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  opacity: 0.95;
}
.equipment-img-count {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 5px 10px; border-radius: 6px;
  z-index: 2;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.equipment-img-count::before { content: '📷'; font-size: 0.9rem; }

/* ============================================================
   HERO CARD WITH REAL IMAGE
   ============================================================ */
.hero-card-image {
  width: 100%; height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}
.hero-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.hero-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,205,17,0.1), transparent 60%);
  pointer-events: none;
}

/* ============================================================
   EQUIPMENT BROWSE PAGE — Album Gallery
   ============================================================ */
.equipment-browse {
  padding: 120px 6% 80px;
  background: var(--bg-1);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.equipment-browse::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,205,17,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,17,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.equipment-browse-container {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 1;
}
.equipment-browse-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.equipment-browse-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 1rem;
}
.equipment-browse-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; max-width: 680px; margin: 0 auto;
}

/* Filter chips */
.filter-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem;
  margin: 2rem 0 3.5rem;
  padding: 1.25rem 0;
  position: sticky; top: 70px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
.filter-chip {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: rgba(245,245,245,0.7);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.filter-chip:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--bg-4);
}
.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(255,205,17,0.25);
}
.filter-chip-icon { font-size: 1rem; }

/* Category section */
.category-section {
  margin-bottom: 5rem;
  scroll-margin-top: 160px;
}
.category-section-header {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}
@media (max-width: 720px) {
  .category-section-header { flex-direction: column; align-items: flex-start; }
}
.category-section-head-text { flex: 1; min-width: 0; }
.category-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 800;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.category-eyebrow .icon { font-size: 1.1rem; }
.category-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 0.6rem;
}
.category-section-desc {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.7; max-width: 720px;
}
.category-brands {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 0.85rem;
}
.category-brand-tag {
  font-size: 0.65rem; font-weight: 700;
  color: rgba(245,245,245,0.65);
  background: var(--bg-4);
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.5px;
}
.category-quote-btn { flex-shrink: 0; }

/* Photo album grid */
.album-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}
.album-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-4);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.album-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px var(--border-gold);
}
.album-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), filter 0.3s;
}
.album-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.1);
}
.album-tile-hero { grid-column: 1 / 2; grid-row: 1 / 3; }
.album-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  opacity: 0; transition: opacity 0.3s;
}
.album-tile:hover::after { opacity: 1; }
.album-tile-zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,205,17,0.95);
  color: #0a0a0a;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
  z-index: 2;
  pointer-events: none;
}
.album-tile:hover .album-tile-zoom {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .album-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 200px 200px;
  }
  .album-tile-hero { grid-column: 1 / 3; grid-row: 1 / 2; }
}
@media (max-width: 540px) {
  .album-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .album-tile-hero { grid-column: 1; grid-row: auto; height: 220px; }
  .album-tile { height: 180px; }
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 60px 20px 100px;
  animation: lightboxFade 0.3s ease;
}
.lightbox.open { display: flex; }
@keyframes lightboxFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex; flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  animation: lightboxIn 0.4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-size: 0.95rem; font-weight: 600;
  text-align: center;
  background: rgba(10,10,10,0.8);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  background: rgba(255,205,17,0.95);
  color: #0a0a0a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
  z-index: 10001;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.lightbox-close:hover {
  background: var(--gold-lt);
  transform: rotate(90deg);
}
.lightbox-arrow {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 10001;
}
.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  transform: translateY(-50%) scale(1.05);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px;
  background: rgba(10,10,10,0.8);
  padding: 7px 16px;
  border-radius: 100px;
  z-index: 10001;
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .lightbox-arrow { width: 44px; height: 44px; font-size: 1.2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* Demo notice banner */
.demo-notice {
  background: linear-gradient(135deg, rgba(255,205,17,0.12), rgba(255,140,0,0.08));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  margin: 0 auto 2.5rem;
  max-width: 900px;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.85rem;
}
.demo-notice .icon { font-size: 1.5rem; flex-shrink: 0; }
.demo-notice strong { color: var(--gold-lt); }
.demo-notice .text { color: rgba(245,245,245,0.85); line-height: 1.55; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* .fade-in handled by GSAP */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 320px; font-size: 5rem; }
  .about-float { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item::after { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid-6 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { transform: rotate(90deg); padding: 0.25rem 0; }
  .coverage-grid { grid-template-columns: repeat(2,1fr); }
  .timeline-line { left: 28px; }
  .timeline-step { padding-left: 78px; }
  .timeline-num { width: 60px; height: 60px; font-size: 1.2rem; box-shadow: 0 0 0 4px var(--bg-2), 0 8px 30px rgba(255,205,17,0.25); }
  .timeline-content { padding: 1.4rem 1.6rem; }
  .timeline-content::before, .timeline-content::after { display: none; }
  .hero-scroll-hint { display: none; }
  .radio-group { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 1.75rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 5%; }
  .hero { padding: 100px 5% 60px; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .contact-form { padding: 1.75rem; }
  .brands-logos { gap: .75rem; }
  .cta-band { padding: 64px 5%; }
  .coverage-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid-6 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { transform: rotate(90deg); }
  .quote-page { padding: 110px 5% 80px; }
  .faq-page { padding: 110px 5% 80px; }
  .whatsapp-fab { width: 54px; height: 54px; font-size: 1.5rem; bottom: 16px; right: 16px; }
  .whatsapp-tooltip { display: none; }
  .timeline-step { padding-left: 70px; }
  .timeline-line { left: 24px; }
  .timeline-num { width: 52px; height: 52px; font-size: 1rem; }
  .timeline-content { padding: 1.25rem; }
}
.nav-links.open {
  display: flex !important; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(6,6,14,0.98); backdrop-filter: blur(24px);
  padding: 1.5rem 5% 2rem; gap: .25rem;
  border-top: 1px solid var(--border-gold);
}
.nav-links.open li { padding: .5rem 0; }
.nav-links.open .nav-cta { margin-top: .5rem; text-align: center; padding: 12px 22px !important; border-radius: 8px; }
