/* ============================================
   LionRankers — Apple-Style Design System
   White canvas · Black text · Gold accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #fff; color: #1d1d1f; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === TOKENS === */
:root {
  --black:       #000000;
  --off-black:   #1d1d1f;
  --white:       #ffffff;
  --off-white:   #f5f5f7;
  --gray-100:    #f5f5f7;
  --gray-200:    #e8e8ed;
  --gray-400:    #d2d2d7;
  --gray-600:    #86868b;
  --gray-800:    #424245;
  --gold:        #d4a017;
  --gold-light:  #fbbf24;
  --orange:      #f97316;
  --orange-dark: #ea580c;
  --green:       #1a9e4a;
  --indigo:      #2d3a9e;
  --navy:        #0a0f2e;
  --navy-800:    #0d1a4a;
  --red:         #dc2626;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --trans:       0.3s var(--ease);
  --trans-fast:  0.18s var(--ease);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full:9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 60px rgba(0,0,0,.16);

  --nav-h: 48px;
  --section-pad: clamp(64px, 8vw, 120px);
}

/* === LAYOUT === */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 52px); }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 52px); }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Inter', -apple-system, sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--off-black); }
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--gray-600); line-height: 1.8; font-size: 1rem; }
.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.lead { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray-800); line-height: 1.7; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-white p, .text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: #fff; }
.text-gold { color: var(--gold-light) !important; }
.text-orange { color: var(--orange); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  border: none;
  transition: all var(--trans-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--off-black); color: #fff; }
.btn-primary:hover { background: #333; transform: scale(1.02); }
.btn-gold { background: var(--gold); color: #000; font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); transform: scale(1.02); box-shadow: 0 0 0 4px rgba(212,160,23,.25); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(249,115,22,.35); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,.45); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); }
.btn-outline-black { background: transparent; color: var(--off-black); border: 1.5px solid rgba(0,0,0,.25); }
.btn-outline-black:hover { background: var(--off-black); color: #fff; border-color: var(--off-black); }
.btn-glass { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); }
.btn-glass:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-cta { background: var(--orange); color: #fff; padding: 16px 32px; font-size: 1rem; box-shadow: 0 4px 20px rgba(249,115,22,.4); }
.btn-cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,.5); }

/* === FORMS === */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; letter-spacing: .01em; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-400);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--off-black);
  background: #fff;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,.15); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2386868b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 96px; }
.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--off-black); }
.form-card > p { font-size: .875rem; color: var(--gray-600); margin-bottom: 20px; }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success svg { width: 56px; height: 56px; fill: var(--green); margin: 0 auto 16px; }
.form-success h3 { color: var(--off-black); margin-bottom: 8px; font-size: 1.3rem; }
.form-success p { font-size: .9rem; }

/* === TOP BAR === */
.top-bar { background: var(--off-black); padding: 9px 0; font-size: .78rem; }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-bar-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-links a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); transition: color var(--trans-fast); }
.top-bar-links a:hover { color: var(--gold-light); }
.top-bar-links .icon { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
.top-bar-cta a { font-weight: 600; color: var(--gold-light); border: 1px solid rgba(212,160,23,.4); padding: 3px 12px; border-radius: var(--r-full); transition: all var(--trans-fast); font-size: .78rem; }
.top-bar-cta a:hover { background: var(--gold); color: #000; }

/* === NAVIGATION === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: all var(--trans);
}
.navbar.dark-nav {
  background: rgba(0,0,0,.85);
  border-bottom-color: rgba(255,255,255,.08);
}
.navbar .container { display: flex; align-items: center; height: 56px; gap: 28px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--off-black); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.navbar.dark-nav .nav-logo-icon { background: #fff; }
.nav-logo-icon svg { width: 22px; height: 22px; fill: var(--gold-light); }
.navbar.dark-nav .nav-logo-icon svg { fill: var(--off-black); }
.nav-logo-text .name { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--off-black); line-height: 1; letter-spacing: -.03em; }
.navbar.dark-nav .nav-logo-text .name { color: #fff; }
.nav-logo-text .tagline { font-size: .6rem; font-weight: 600; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 7px 13px; font-size: .85rem; font-weight: 500; color: var(--gray-800); border-radius: var(--r-sm); transition: all var(--trans-fast); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--off-black); background: rgba(0,0,0,.05); }
.navbar.dark-nav .nav-link { color: rgba(255,255,255,.75); }
.navbar.dark-nav .nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-link svg { width: 12px; height: 12px; transition: transform var(--trans-fast); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: absolute; top: calc(100% + 10px); left: 0; min-width: 260px; background: rgba(255,255,255,.95); backdrop-filter: blur(24px); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98); transition: all .2s var(--ease); z-index: 100; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--r-sm); font-size: .82rem; color: var(--gray-800); transition: all var(--trans-fast); }
.dropdown a:hover { background: var(--gray-100); color: var(--off-black); }
.dd-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dd-title { font-weight: 600; font-size: .82rem; display: block; color: var(--off-black); }
.dd-sub { font-size: .72rem; color: var(--gray-600); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--off-black); }
.navbar.dark-nav .nav-phone { color: #fff; }
.nav-phone svg { width: 14px; height: 14px; fill: var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--r-sm); transition: background var(--trans-fast); cursor: pointer; }
.nav-toggle:hover { background: rgba(0,0,0,.05); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--off-black); border-radius: 2px; transition: all var(--trans); }
.navbar.dark-nav .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === VIDEO HERO === */
.hero-video {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.8) 100%);
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 1000px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.35);
  border-radius: var(--r-full);
  padding: 7px 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: pulse-gold 2s ease infinite; }
@keyframes pulse-gold { 0%,100% { box-shadow: 0 0 0 0 rgba(251,191,36,.5); } 50% { box-shadow: 0 0 0 6px rgba(251,191,36,0); } }
.hero-video-content h1 {
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.hero-video-content h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto 36px; font-weight: 400; line-height: 1.6; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: rgba(255,255,255,.6); }
.hero-trust-item svg { width: 14px; height: 14px; fill: var(--gold-light); }
/* Scroll indicator */
.scroll-down { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; }
.scroll-down span { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.scroll-arrow { width: 28px; height: 28px; border: 1.5px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: bounce 2s ease infinite; }
.scroll-arrow svg { width: 12px; height: 12px; fill: rgba(255,255,255,.5); }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* === MARQUEE === */
.marquee-wrap { background: var(--off-black); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 14px; padding: 0 32px; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); white-space: nowrap; }
.marquee-item strong { color: rgba(255,255,255,.65); }
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === STATS BAR === */
.stats-section { background: var(--off-black); padding: clamp(56px, 7vw, 96px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.06); border-radius: var(--r-lg); overflow: hidden; }
.stat-item { background: var(--off-black); padding: clamp(32px, 4vw, 52px) 24px; text-align: center; transition: background var(--trans-fast); }
.stat-item:hover { background: #2a2a2d; }
.stat-number { font-family: 'Inter', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -.04em; }
.stat-number em { font-style: normal; color: var(--gold-light); }
.stat-label { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }

/* === SERVICES SECTION (Apple-style) === */
.services-intro { padding: var(--section-pad) 0 clamp(32px, 5vw, 56px); }
.services-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; }
.service-tile {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: var(--gray-100);
  display: block;
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-tile:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-xl); }
/* Tile sizes */
.service-tile.tile-wide { grid-column: span 2; }
.service-tile.tile-tall { grid-row: span 2; }
.service-tile-inner { padding: clamp(28px, 3vw, 40px); height: 100%; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; }
.service-tile.tile-dark { background: var(--off-black); }
.service-tile.tile-gold { background: linear-gradient(135deg, #1a1205, #2d2108); }
.service-tile.tile-white { background: #fff; border: 1.5px solid var(--gray-200); }
/* Tile content */
.tile-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tile-icon svg { width: 24px; height: 24px; }
.service-tile h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; line-height: 1.15; color: var(--off-black); }
.service-tile.tile-dark h3, .service-tile.tile-gold h3 { color: #fff; }
.service-tile p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; flex: 1; }
.service-tile.tile-dark p, .service-tile.tile-gold p { color: rgba(255,255,255,.55); }
.tile-link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--off-black); margin-top: 20px; transition: gap var(--trans-fast); }
.service-tile:hover .tile-link { gap: 10px; }
.tile-link svg { width: 14px; height: 14px; fill: currentColor; }
.service-tile.tile-dark .tile-link, .service-tile.tile-gold .tile-link { color: var(--gold-light); }
.tile-bg-icon { position: absolute; bottom: -20px; right: -20px; opacity: .04; pointer-events: none; }
.tile-bg-icon svg { width: 140px; height: 140px; fill: currentColor; }
.service-tile.tile-dark .tile-bg-icon, .service-tile.tile-gold .tile-bg-icon { opacity: .08; }

/* === WHY SECTION === */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why-img { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.why-img img { width: 100%; height: 540px; object-fit: cover; }
.why-badge { position: absolute; bottom: 24px; right: 24px; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-radius: var(--r-lg); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; }
.why-badge-num { font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -.04em; }
.why-badge-text { font-size: .72rem; font-weight: 700; color: var(--gray-800); line-height: 1.4; }
.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-num { width: 32px; height: 32px; background: var(--off-black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; color: var(--gold-light); flex-shrink: 0; font-family: 'Inter', sans-serif; }
.why-point h4 { font-size: .95rem; margin-bottom: 3px; color: var(--off-black); }
.why-point p { font-size: .855rem; margin: 0; }

/* === PROCESS === */
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; counter-reset: steps; }
.process-card { background: var(--gray-100); border-radius: var(--r-lg); padding: 32px 24px; position: relative; transition: all var(--trans); }
.process-card:hover { background: var(--off-black); transform: translateY(-4px); }
.process-card:hover h4, .process-card:hover p { color: rgba(255,255,255,.8); }
.process-card:hover .process-step-num { background: var(--gold); color: var(--off-black); }
.process-step-num { width: 40px; height: 40px; background: var(--off-black); color: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 900; margin-bottom: 20px; font-family: 'Inter', sans-serif; transition: all var(--trans); }
.process-card h4 { margin-bottom: 8px; transition: color var(--trans); }
.process-card p { font-size: .855rem; transition: color var(--trans); }

/* === SERVICE AREAS (dark) === */
.areas-section { background: var(--off-black); padding: var(--section-pad) 0; }
.areas-header { text-align: center; margin-bottom: 56px; }
.areas-header h2 { color: #fff; }
.areas-header p { color: rgba(255,255,255,.5); max-width: 520px; margin: 16px auto 0; }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.area-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.area-card:hover { background: rgba(212,160,23,.1); border-color: rgba(212,160,23,.4); transform: translateY(-4px); }
.area-icon { width: 46px; height: 46px; background: rgba(212,160,23,.12); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.area-icon svg { width: 22px; height: 22px; fill: var(--gold-light); }
.area-card h4 { color: #fff; font-size: .95rem; margin-bottom: 5px; }
.area-card p { color: rgba(255,255,255,.4); font-size: .75rem; margin: 0; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.testimonial-card { background: #fff; border-radius: var(--r-xl); padding: 32px; border: 1px solid var(--gray-200); transition: all var(--trans); position: relative; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.quote-mark { font-size: 3.5rem; font-weight: 900; color: var(--gold-light); line-height: .8; margin-bottom: 16px; font-family: Georgia, serif; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); }
.testimonial-card blockquote { font-size: .9rem; color: var(--gray-800); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--off-black); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 800; color: var(--gold-light); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .875rem; color: var(--off-black); }
.author-biz { font-size: .75rem; color: var(--gray-600); }

/* === FAQ === */
.faq-wrap { max-width: 760px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--off-black); user-select: none; transition: color var(--trans-fast); }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform var(--trans); }
.faq-icon svg { width: 16px; height: 16px; fill: var(--gray-600); transition: fill var(--trans-fast); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-icon svg { fill: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-answer { max-height: 280px; }
.faq-answer p { padding: 0 0 22px; font-size: .9rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* === CONTACT STRIP === */
.contact-strip { background: #fff; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.contact-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.contact-strip-text h3 { font-size: 1.2rem; color: var(--off-black); margin-bottom: 3px; }
.contact-strip-text p { font-size: .855rem; margin: 0; }
.contact-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.contact-method { display: flex; align-items: center; gap: 9px; padding: 10px 18px; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--r-full); font-weight: 600; font-size: .855rem; color: var(--off-black); transition: all var(--trans-fast); }
.contact-method:hover { background: var(--off-black); color: #fff; border-color: var(--off-black); }
.contact-method svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; transition: fill var(--trans-fast); }
.contact-method:hover svg { fill: var(--gold-light); }

/* === INLINE FORM SECTION === */
.inline-form-section { background: var(--gray-100); }
.inline-form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* === CTA SECTION === */
.cta-section { background: var(--off-black); padding: var(--section-pad) 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,160,23,.12) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { color: #fff; position: relative; }
.cta-section h2 em { font-style: normal; color: var(--gold-light); }
.cta-section p { color: rgba(255,255,255,.55); max-width: 520px; margin: 16px auto 36px; font-size: 1.1rem; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: #fff; color: var(--off-black); font-weight: 700; }
.btn-white:hover { background: #f0f0f0; transform: scale(1.02); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-method-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--gray-100); border-radius: var(--r-lg); margin-bottom: 14px; border: 1px solid var(--gray-200); transition: all var(--trans-fast); cursor: pointer; text-decoration: none; }
.contact-method-card:hover { background: #fff; box-shadow: var(--shadow); border-color: var(--gray-400); }
.contact-method-card .cm-icon { width: 46px; height: 46px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-card h4 { font-size: .95rem; margin-bottom: 3px; }
.contact-method-card p { font-size: .82rem; margin-bottom: 4px; }
.contact-method-card a { font-weight: 700; color: var(--gold); font-size: .9rem; }

/* === PAGE HERO (service pages) === */
.page-hero { background: var(--off-black); padding: clamp(52px, 7vw, 96px) 0; color: #fff; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.4); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero .breadcrumb span { color: var(--gold-light); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 28px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-img { border-radius: var(--r-xl); overflow: hidden; }
.page-hero-img img { width: 100%; height: 300px; object-fit: cover; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.35); border-radius: var(--r-full); padding: 7px 16px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }

/* === FEATURES/SERVICE PAGE CARDS === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.feature-card { background: var(--gray-100); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--gray-200); transition: all var(--trans); }
.feature-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--gray-400); }
.feature-icon { width: 46px; height: 46px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card h4 { font-size: .95rem; margin-bottom: 8px; }
.feature-card p { font-size: .855rem; margin: 0; }

/* === CHECKLIST === */
.checklist { margin: 20px 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--gray-200); font-size: .9rem; color: var(--gray-800); }
.checklist li:last-child { border: none; }
.checklist li::before { content: ''; width: 20px; height: 20px; background: var(--green); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; flex-shrink: 0; margin-top: 2px; }

/* === TRUST ROW === */
.trust-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 28px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); margin: 40px 0; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 600; color: var(--gray-600); }
.trust-item svg { width: 18px; height: 18px; fill: var(--gold); }

/* === FOOTER === */
.footer { background: var(--off-black); }
.footer-main { padding: clamp(52px, 7vw, 80px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 260px repeat(3, 1fr); gap: 40px; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.75; margin-top: 14px; }
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-social { width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.1); transition: all var(--trans-fast); }
.footer-social:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,.6); }
.footer-social:hover svg { fill: #000; }
.footer-col h5 { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color var(--trans-fast); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color var(--trans-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* === FLOATING CTA === */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.floating-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: all var(--trans-fast); cursor: pointer; border: none; text-decoration: none; }
.floating-btn:hover { transform: scale(1.12); }
.floating-btn-call { background: var(--green); }
.floating-btn-text { background: var(--orange); }
.floating-btn-chat { background: var(--off-black); border: 1px solid rgba(255,255,255,.15); }
.floating-btn svg { width: 22px; height: 22px; fill: #fff; }

/* === SECTION LABELS (old .section-label compatibility) === */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; }
.text-center .section-sub { margin: 0 auto; }

/* === SERVICE AREAS PAGE === */
.area-detail { padding: clamp(52px, 7vw, 88px) 0; border-bottom: 1px solid var(--gray-200); }
.area-detail:nth-child(even) { background: var(--gray-100); }
.area-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.area-detail:nth-child(even) .area-detail-grid { direction: rtl; }
.area-detail:nth-child(even) .area-detail-grid > * { direction: ltr; }
.area-icon-lg { width: 56px; height: 56px; background: var(--off-black); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.area-icon-lg svg { width: 28px; height: 28px; fill: var(--gold-light); }
.area-detail h2 { color: var(--off-black); margin-bottom: 12px; }
.area-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,160,23,.08); color: var(--gold); border: 1px solid rgba(212,160,23,.25); border-radius: var(--r-full); padding: 4px 12px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.area-services { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.area-service-chip { background: var(--gray-100); color: var(--off-black); border-radius: var(--r-full); padding: 5px 13px; font-size: .75rem; font-weight: 600; border: 1px solid var(--gray-200); }
.area-img-wrap { border-radius: var(--r-xl); overflow: hidden; }
.area-img-wrap img { width: 100%; height: 380px; object-fit: cover; }

/* === BREADCRUMB BAR === */
.breadcrumb-bar { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: 11px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--gray-600); }
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-400); }
.breadcrumb .current { color: var(--off-black); font-weight: 600; }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.96); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
/* Stagger delays */
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .19s; }
.d4 { transition-delay: .26s; }
.d5 { transition-delay: .33s; }
.d6 { transition-delay: .40s; }
/* Also keep fade-up class for service pages */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === UTILITY === */
.w-full { width: 100%; }
.mt-8 { margin-top: 32px; }
.mt-4 { margin-top: 16px; }
.mb-8 { margin-bottom: 32px; }
.bg-light { background: var(--gray-100); }

/* === FORM SPINNER === */
@keyframes spin { to { transform: rotate(360deg); } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-tile.tile-wide { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .inline-form-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .area-detail-grid { grid-template-columns: 1fr; }
  .area-detail:nth-child(even) .area-detail-grid { direction: ltr; }
  .area-img-wrap { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 52px; }
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: calc(var(--nav-h) + 48px + 36px);
    left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    padding: 12px 16px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    z-index: 999; height: auto; overflow-y: auto; gap: 2px;
  }
  .nav-menu.mobile-open .nav-link { font-size: .95rem; padding: 13px 16px; border-radius: var(--r-sm); }
  .dropdown { display: none !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-bento { grid-template-columns: 1fr; }
  .service-tile.tile-tall { grid-row: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-strip .container { flex-direction: column; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-video-content h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar .container { justify-content: center; }
  .floating-cta { bottom: 16px; right: 16px; }
  .why-img img { height: 360px; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .process-track { grid-template-columns: 1fr; }
}

/* === REAL LOGO STYLES === */
/* Nav: icon-only mark + wordmark text */
.nav-logo { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 38px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
.nav-logo-wordmark {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-wordmark em {
  font-style: normal;
  background: linear-gradient(135deg, #fbbf24, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer: full logo (gold, with LION RANKERS text) */
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: auto; width: 172px; object-fit: contain; display: block; }

/* Hero logo stamp (large icon above headline) */
.hero-logo-stamp { margin-bottom: 20px; animation: logoIn 1s var(--ease) forwards; }
.hero-logo-stamp img {
  height: 84px;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(212,160,23,.45));
}
@keyframes logoIn { from { opacity: 0; transform: translateY(-18px) scale(.92); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Nav ALWAYS dark — remove the separate light variant */
.navbar {
  background: rgba(0,0,0,.18) !important;
  border-bottom-color: rgba(255,255,255,.06) !important;
}
.navbar.scrolled {
  background: rgba(4,4,4,.93) !important;
  border-bottom-color: rgba(255,255,255,.1) !important;
  box-shadow: 0 1px 32px rgba(0,0,0,.4) !important;
}
/* Always use white text in nav */
.nav-link { color: rgba(255,255,255,.72) !important; }
.nav-link:hover, .nav-link.active { color: #fff !important; background: rgba(255,255,255,.1) !important; }
.nav-phone { color: #fff !important; }
.nav-toggle span { background: #fff !important; }
.dropdown { background: rgba(8,8,8,.96) !important; border-color: rgba(255,255,255,.1) !important; }
.dropdown a { color: rgba(255,255,255,.72) !important; }
.dropdown a:hover { background: rgba(255,255,255,.08) !important; color: #fff !important; }
.dd-title { color: #fff !important; }
