/*
 ┌──────────────────────────────────────────────────────────────────┐
 │  K99X HERO — CINEMATIC DARK × AUCTION FIRE                      │
 │  Palette : #0c0f14 black-charcoal, #ff6b00 burning orange,      │
 │            #1a1f2e deep navy accent, cream text                  │
 │  Fonts   : Bebas Neue (numerics & caps) + Outfit (body)         │
 │  Concept : Dealer bidding war — your car, their competition      │
 └──────────────────────────────────────────────────────────────────┘
*/

:root {
  --black:       #000000;
  --black2:      #e6ebfa;
  --black3:      #eef1f7;
  --black4:      #e4e9f2;
  --fire:        #ff6b00;
  --fire2:       #e85d00;
  --fire3:       #ff9a4d;
  --fire-glow:   rgba(255,107,0,.15);
  --fire-dim:    rgba(255,107,0,.08);
  --cream:       #0d1b3e;
  --cream2:      #1e3461;
  --muted:       #4a6494;
  --muted2:      #7a96c4;
  --border:      rgba(13,27,62,.1);
  --border2:     rgba(13,27,62,.06);
  --green:       #16a34a;
  --green-dim:   rgba(22,163,74,.1);
  --r:           10px;
  --r-lg:        18px;
  --r-xl:        26px;
  --navy:        #012273;
  --navy2:       #1a3461;
  --navy3:       #243d72;
  --white:       #ffffff;
  --light-bg:    #e7ecf6;
  --primary-gradient: linear-gradient(135deg, #0b0129 0%, #13016b 60%, #1a0050 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;

  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   NAVBAR  (matches original site styles)
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; height: 68px; padding: 0 44px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(13,27,62,.1);
  box-shadow: 0 2px 16px rgba(13,27,62,.08);
}

.logo img { height: 50px; width: auto; }

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  display: flex; align-items: center; gap: 7px;
  color: var(--navy); font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 8px 15px; border-radius: 8px;
  transition: all .2s; letter-spacing: .2px;
}
.nav-links a .material-symbols-outlined { font-size: 18px; opacity: .7; }
.nav-links a:hover { color: var(--navy); background: rgba(13,27,62,.06); }
.nav-links a:hover .material-symbols-outlined { opacity: 1; }
.nav-links a.active { background-color: rgba(18, 105, 226, 0.1);color: #1269e2; }

.nav-right  { display: flex; align-items: center; gap: 10px; margin: 10px; }
.nav-actions{ display: flex; gap: 10px; align-items: center; }

.nav-notification {
  position: relative; width: 38px; height: 38px;
  border-radius: 8px; background: transparent; border: 1px solid rgba(13,27,62,.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted); transition: all .2s;
}
.nav-notification:hover { background: rgba(13,27,62,.06); color: var(--navy); }
.nav-notification .material-symbols-outlined { font-size: 20px; }
.nav-notification-dot {
  position: absolute; top: 7px; right: 7px;
  width: 8px; height: 8px; background: var(--fire);
  border: 2px solid #ffffff; border-radius: 50%;
}

.btn-signin {
  color: var(--muted); font-size: 14px; font-weight: 600;
  background: none; border: 1.5px solid rgba(13,27,62,.2);
  padding: 8px 18px; border-radius: 8px; cursor: pointer;
  font-family: inherit; transition: all .25s;
}
.btn-signin:hover { border-color: var(--fire); color: var(--fire); }
.btn-signin.active{    color: var(--fire) !important;border:1.5px solid var(--fire) !important}
.btn-register {
  background: var(--fire); color: #ffffff;
  font-size: 14px; font-weight: 700; padding: 9px 20px;
  border: none; border-radius: 8px; cursor: pointer;
  font-family: inherit; transition: all .25s;
  box-shadow: 0 4px 14px rgba(255,107,0,.3);
}
.btn-register:hover {
  background: #e05a00; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,0,.45);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,27,62,.1);
   z-index: 999;
  transform: translateY(-110%); transition: transform .35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.nav-links-mobile { list-style: none; }
.nav-links-mobile li { border-bottom: 1px solid rgba(13,27,62,.07); }
.nav-links-mobile a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 8px; color: var(--muted); font-size: 15px;
  text-decoration: none; transition: color .2s;
}
.nav-links-mobile a:hover { color: var(--fire); }
.nav-links-mobile a svg { width: 18px; height: 18px; }
.mobile-user-section { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(13,27,62,.1); display: flex; align-items: center; gap: 12px; }
.nav-user-avatar { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg,var(--fire),#c85000); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; }
.nav-user-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.nav-user-welcome { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════
   HERO LAYOUT — FULL VIEWPORT SPLIT
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  max-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  background: var(--primary-gradient);
  overflow: hidden;
}

/* ── Background atmosphere ── */
.hero-atmosphere {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
/* Warm orange glow from right side */
.hero-atmosphere::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse 80% 100% at 100% 50%,
    rgba(255,107,0,.06) 0%,
    rgba(255,107,0,.02) 40%,
    transparent 70%);
}
/* Navy tint on left */
.hero-atmosphere::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse 60% 80% at 0% 60%,
    rgba(13,27,62,.04) 0%, transparent 70%);
}

/* Fine noise texture overlay */
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

/* Diagonal divider line between columns */
.hero-divider {
  position: absolute; top: 0; bottom: 0; z-index: 2;
  left: calc(55% - 1px); width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,107,0,.1) 20%,
    rgba(255,107,0,.2)  50%,
    rgba(255,107,0,.1) 80%,
    transparent 100%);
  pointer-events: none;
}

/* ── LEFT COLUMN ── */
.hero-left {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 36px 48px 36px 64px;
}

/* ── RIGHT COLUMN ── */
.hero-right {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  padding: 36px 48px 36px 36px;
}

/* ══════════════════════════════════════════
   LEFT SIDE  CONTENT
══════════════════════════════════════════ */

/* Top kicker label */
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  animation: fadeUp .6s ease .1s both;
}
.kicker-live {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,107,0,.1);
  border: 1px solid rgba(255,107,0,.3);
  padding: 6px 13px; border-radius: 30px;
  font-size: 12px; font-weight: 700; color: var(--fire);
  letter-spacing: .5px; text-transform: uppercase;
}
.kicker-live .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fire);
  animation: pulseRing 1.8s ease-in-out infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0   rgba(255,107,0,.7); }
  60%  { box-shadow: 0 0 0 8px rgba(255,107,0,0);  }
  100% { box-shadow: 0 0 0 0   rgba(255,107,0,0);  }
}
.kicker-stat {
  font-size: 12.5px; font-weight: 600; color: var(--white);
}
.kicker-stat strong { color: var(--white); }

/* Giant Bebas headline */
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: .95; letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 18px;
  animation: fadeUp .7s ease .2s both;
}
.hero-headline .line-fire {
  display: block;
  color: var(--fire);
  text-shadow:
    0 0 20px rgba(255,107,0,.3),
    0 0 40px rgba(255,107,0,.1);
}
.hero-headline .line-ghost {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  font-style: normal;
}
.hero-headline .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--navy) 60%, rgba(13,27,62,.5));
  -webkit-background-clip: text; background-clip: text;
  color: #ffffff;
}

/* Subheadline Outfit body */
.hero-sub {
  font-size: 15px; font-weight: 400; line-height: 1.65;
  color: var(--white); 
  margin-bottom: 24px;
  animation: fadeUp .7s ease .32s both;
}
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-sub .fire-text { color: var(--fire); font-weight: 600; }

/* Proof bar — 3 stats in a row */
.hero-proof {
  display: flex; align-items: stretch; gap: 0;
  margin-bottom: 24px;
  border: 1px solid rgba(13,27,62,.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #f8faff;
  animation: fadeUp .7s ease .42s both;
}
.proof-item {
  flex: 1; padding: 14px 18px;
  border-right: 1px solid rgba(13,27,62,.1);
  position: relative;
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; line-height: 1; letter-spacing: .5px;
  color: var(--fire); margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 3px;
}
.proof-num sup { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; }
.proof-label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .5px; }

/* Primary CTA */
.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp .7s ease .52s both;
}
.btn-start-auction {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px; font-weight: 700; letter-spacing: .3px;
  color: #ffffff; background: var(--fire);
  border: none; padding: 14px 28px;
  border-radius: var(--r); cursor: pointer;
  transition: all .25s; position: relative; overflow: hidden;
  box-shadow: 0 6px 20px rgba(255,107,0,.35);
}
.btn-start-auction::after {
  content: '';
  position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-15deg);
  transition: left .5s ease;
}
.btn-start-auction:hover::after { left: 130%; }
.btn-start-auction:hover {
  background: #e05a00; transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,0,.45);
}
.btn-start-auction svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-how-it-works {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--white); background: none;
  border: 1.5px solid #ffffff;
  padding: 13px 22px; border-radius: var(--r);
  cursor: pointer; transition: all .25s;
}
.btn-how-it-works:hover { color: var(--fire); border-color: rgba(255,107,0,.4); }
.btn-how-it-works svg { width: 16px; height: 16px; }

/* Trust pills strip */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
  animation: fadeUp .7s ease .62s both;
}
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 30px;
  background: var(--black4);
  border: 1px solid #ffffff;
  font-size: 12px; font-weight: 600; color: var(--navy);
  transition: border-color .2s;
}
.trust-pill:hover { border-color: rgba(255,107,0,.3); }
.trust-pill svg { width: 12px; height: 12px; color: var(--green); flex-shrink: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   RIGHT SIDE — AUCTION SELL PANEL
══════════════════════════════════════════ */
.sell-panel {
  width: 100%; max-width: 415px;
  animation: slideInRight .85s cubic-bezier(.16,.84,.44,1) .35s both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sell-card {
  border-radius: var(--r-xl);
  border: 1px solid rgba(13,27,62,.12);
  background: #ffffff;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,107,0,.04) inset,
    0 20px 60px rgba(13,27,62,.12),
    0 0 40px rgba(255,107,0,.03);
}

/* ── Sell card header ── */
.sc-top {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(13,27,62,.1);
  background: linear-gradient(135deg, rgba(255,107,0,.05) 0%, rgba(248,250,255,.8) 60%);
  position: relative;
}
.sc-top::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%; background: radial-gradient(ellipse at top right, rgba(255,107,0,.06), transparent 70%);
  pointer-events: none;
}
.sc-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,107,0,.8); margin-bottom: 6px;
}
.sc-eyebrow .orange-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire); animation: pulseRing 1.8s ease-in-out infinite;
}
.sc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1px;
  color: var(--navy); line-height: 1.1; margin-bottom: 4px;
}
.sc-sub { font-size: 12.5px; color: var(--muted); line-height: 1.5; }


/* ── Form fields ── */
.sc-form { padding: 12px 24px 20px; }

.sc-field { margin-bottom: 11px; }
.sc-field label {
  display: block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--muted); margin-bottom: 6px;
}
.sc-input {
  width: 100%; padding: 11px 14px;
  background: #f5f8ff;
  border: 1.5px solid rgba(13,27,62,.15);
  border-radius: var(--r);
  color: var(--navy); font-size: 16px; font-weight: 500;
  font-family: 'Outfit', monospace;
  letter-spacing: 2px; text-transform: uppercase;
  outline: none; transition: all .22s;
}
.sc-input::placeholder {
  color: rgba(13,27,62,.3); letter-spacing: .5px;
  text-transform: none; font-size: 15px; font-weight: 400;
}
.sc-input:focus {
  background: #ffffff;
  border-color: rgba(255,107,0,.6);
  box-shadow: 0 0 0 3px rgba(255,107,0,.1);
  letter-spacing: 3px;
}

.sc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.sc-select {
  width: 100%; padding: 11px 14px;
  background: #f5f8ff;
  border: 1.5px solid rgba(13,27,62,.15);
  border-radius: var(--r);
  color: rgba(13,27,62,.75); font-size: 14.5px; font-family: inherit;
  outline: none; appearance: none; cursor: pointer; transition: all .22s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='rgba(13,27,62,0.3)' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.sc-select:focus { border-color: rgba(255,107,0,.5); }
.sc-select option { background: #ffffff; color: var(--navy); }

.sc-divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: 1px; margin: 12px 0 11px;
}
.sc-divider::before, .sc-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(13,27,62,.1);
}

/* Big submit CTA */
.btn-list-car {
  width: 100%; padding: 14px 20px;
  background: linear-gradient(135deg, var(--fire) 0%, #cc4a00 100%);
  color: #ffffff; font-family: 'Bebas Neue', sans-serif;
  font-size: 19px; letter-spacing: 1.5px;
  border: none; border-radius: var(--r); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s; position: relative; overflow: hidden;
  box-shadow: 0 6px 24px rgba(255,107,0,.4);
}
.btn-list-car::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s ease;
}
.btn-list-car:hover::before { left: 150%; }
.btn-list-car:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(255,107,0,.6);
  background: linear-gradient(135deg, var(--fire2) 0%, var(--fire) 100%);
}
.btn-list-car svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Guarantee note */
.guarantee-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 10px; padding: 10px 12px;
  background: rgba(22,163,74,.06);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: 10px;
}
.guarantee-row svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.guarantee-row p { font-size: 11.5px; color: var(--muted); line-height: 1.55; }
.guarantee-row p strong { color: #16a34a; font-weight: 600; }

/* ══════════════════════════════════════════
   FLOATING AMBIENT CARDS (right background)
══════════════════════════════════════════ */
.ambient-card {
  position: absolute; z-index: 1; pointer-events: none;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(13,27,62,.1);
  border-radius: 12px; padding: 11px 15px;
  display: flex; align-items: center; gap: 11px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(13,27,62,.1);
  animation: floatDrift 6s ease-in-out infinite;
}
.ambient-card .ac-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,107,0,.08); border: 1px solid rgba(255,107,0,.2);
  display: flex; align-items: center; justify-content: center;
}
.ambient-card .ac-icon svg { width: 16px; height: 16px; color: var(--fire); }
.ambient-card .ac-label { font-size: 10.5px; color: var(--muted); line-height: 1; margin-bottom: 3px; }
.ambient-card .ac-value {
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: .5px;
  color: var(--navy); line-height: 1;
}
.ac1 { top: 90px; right: 32px; animation-delay: 0s; }
.ac2 { bottom: 110px; left: 10px; animation-delay: 1.5s; animation-duration: 7s; }
.ac3 { top: 50%; right: 24px; transform: translateY(-50%); animation-delay: .8s; animation-duration: 5.5s; }

@keyframes floatDrift {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-14px); }
}
.ac3 { animation: floatDrift3 5.5s ease-in-out .8s infinite; }
@keyframes floatDrift3 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 14px)); }
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-divider { display: none; }
  .hero-left  { padding: 48px 36px 36px; }
  .hero-right { padding: 0 36px 56px; }
  .sell-panel { max-width: 100%; }
  .ac1, .ac2, .ac3 { display: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-left  { padding: 56px 22px 36px; }
  .hero-right { padding: 0 22px 60px; }
  .hero-headline { font-size: clamp(60px, 14vw, 86px); }
  .hero-proof { flex-wrap: wrap; }
  .proof-item { min-width: calc(50% - 1px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 8px; }
  .sc-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 56px; }
  .proof-num { font-size: 30px; }
}

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */
section { padding: 90px 60px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--fire); margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 400;
  color: var(--navy); margin-bottom: 12px; letter-spacing: 1px;
}
.section-header h2.light-color {color: var(--white);}
.section-header p {
  color: var(--muted); max-width: 550px; margin: 0 auto;
  font-size: 15px; line-height: 1.7;
}
.section-header p.light-color{color: var(--muted2);}
/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   AUCTION CALENDAR SECTION
══════════════════════════════════════════ */
.auction-section { background: var(--black3); }
.tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 36px; }
.tab-btn {
  padding: 12px 28px; background: #ffffff; border: 1.5px solid var(--border);
  color: var(--muted); font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all .25s;
}
.tab-btn:first-child { border-radius: var(--r) 0 0 var(--r); border-right: none; }
.tab-btn:last-child { border-radius: 0 var(--r) var(--r) 0; }
.tab-btn.active { background: var(--fire); color: #fff; border-color: var(--fire); }
.tab-btn .live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #fff; margin-right: 6px; animation: pulseRing 1.6s infinite;
}
.auction-table-wrap {
  overflow-x: auto; border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(13,27,62,.06); background: #ffffff;
}
table { width: 100%; border-collapse: collapse; min-width: 780px; }
thead { background: var(--navy); }
thead th {
  padding: 14px 18px; text-align: left; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--white); border-bottom: 1px solid var(--border); white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border2); transition: background .2s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--black2); }
tbody td { padding: 16px 18px; font-size: 14px; color: var(--navy); vertical-align: middle; }
.lot-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,107,0,.1); color: var(--fire); font-weight: 700;
  font-size: 13px; width: 38px; height: 38px; border-radius: 8px;
}
.seller-info { display: flex; align-items: center; gap: 10px; }
.seller-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.seller-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.seller-sub { font-size: 12px; color: var(--muted); }
.vehicle-count { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy); }
.vehicle-count svg { color: var(--fire); }
.location-cell { color: var(--muted); font-size: 13px; }
.location-cell strong { color: var(--navy); font-size: 14px; display: block; margin-bottom: 2px; }
.date-range { font-size: 13px; color: var(--muted); }
.date-range strong { color: var(--navy); display: block; font-size: 14px; }
.btn-bid {
  padding: 6px 20px;
  
}

.btn-download {
  background: linear-gradient(135deg, var(--fire), #c85000);
  color: #fff; font-size: 13px; font-weight: 700; padding: 9px 20px;
  border: none; border-radius: 6px; cursor: pointer; font-family: inherit;
  transition: transform .15s, box-shadow .25s; white-space: nowrap;
}
.btn-download:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,0,.35); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.auction-search { margin: 18px auto 0; max-width: 520px; display: flex; justify-content: center; }
.search-box {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 14px; background: #ffffff;
  border: 1.5px solid var(--border); box-shadow: 0 4px 14px rgba(13,27,62,.06);
  margin-bottom: 10px;
}
.search-box span { font-size: 20px; color: var(--muted); }
.search-box input {
  width: 100%; border: none; outline: none; background: transparent;
  font-size: 15px; color: var(--navy); font-family: inherit;
}
.search-box input::placeholder { color: var(--muted2); }

/* ══════════════════════════════════════════
   VIDEO LISTINGS SECTION
══════════════════════════════════════════ */
.videos-section { background: #ffffff; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.video-card {
  background: #ffffff; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(13,27,62,.06);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.video-card:hover { transform: translateY(-5px); border-color: var(--fire); box-shadow: 0 14px 44px rgba(13,27,62,.12); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer; }
.thumb-bg { width: 100%; height: 100%; transition: transform .4s; }
.video-card:hover .thumb-bg { transform: scale(1.06); }
.thumb-1 { background: linear-gradient(135deg,#1a2a3a,#2b4265,#1a2535); }
.thumb-2 { background: linear-gradient(135deg,#3a2020,#5a3030,#402424); }
.thumb-3 { background: linear-gradient(135deg,#1e3320,#2d5530,#243d26); }
.thumb-4 { background: linear-gradient(135deg,#362e18,#504a22,#3d3418); }
.thumb-5 { background: linear-gradient(135deg,#1e1e35,#2e2e5a,#252540); }
.thumb-6 { background: linear-gradient(135deg,#3a2038,#5a3058,#402440); }
.thumb-7 { background: linear-gradient(135deg,#1e3535,#2d5555,#243d3d); }
.thumb-8 { background: linear-gradient(135deg,#2e2e1e,#4a4a28,#38381e); }
.thumb-car {
  position: absolute; bottom: 25%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 40%; border: 2px solid rgba(255,255,255,.10);
  border-radius: 40% 40% 8% 8%;
}
.thumb-car::before {
  content: ''; position: absolute; top: -55%; left: 18%; right: 18%; height: 60%;
  border: 2px solid rgba(255,255,255,.10); border-bottom: none; border-radius: 50% 50% 0 0;
}
.play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.play-circle {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,107,0,.90); display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s; box-shadow: 0 4px 18px rgba(255,107,0,.45);
}
.video-card:hover .play-circle { background: var(--fire); transform: scale(1.12); }
.play-circle svg { width: 18px; height: 18px; margin-left: 3px; fill: #fff; }
.duration-tag {
  position: absolute; bottom: 8px; right: 8px; z-index: 2;
  background: rgba(0,0,0,.72); color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 7px; border-radius: 4px; backdrop-filter: blur(4px);
}
.views-tag {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(0,0,0,.68); color: rgba(255,255,255,.78); font-size: 11px;
  padding: 3px 7px; border-radius: 4px; backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 4px;
}
.views-tag svg { width: 12px; height: 12px; }
.video-info { padding: 16px; }
.video-info .car-name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.video-info .car-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.video-info .car-year{
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  white-space: nowrap;
}

.video-info .car-location{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.price-tag { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--fire); margin-bottom: 12px; }
.price-tag span { font-size: 12px; color: var(--muted); font-weight: 400; }
.car-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.meta-pill {
  background: var(--black2); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 20px; font-size: 11px;
  color: var(--muted); display: flex; align-items: center; gap: 2px;
}
.meta-pill svg { width: 11px; height: 11px; color: var(--fire); }
/* CTA button */
.btn-details {
  width: 100%; padding: 11px; border-radius: 10px; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif; font-size: 14.5px; letter-spacing: 1.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(13,27,62,.15);
  color: var(--navy); transition: all .25s;
}
.btn-details svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .25s; }
.btn-details:hover {
  background: var(--fire); border-color: var(--fire);
  color: #fff; box-shadow: 0 6px 22px rgba(255,107,0,.38);
}
.btn-details:hover svg { transform: translateX(3px); }

/* ─── View All CTA ─── */
.view-all-wrap {
  text-align: center; margin-top: 56px; position: relative;
}
.view-all-wrap::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 360px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,.25), transparent);
  pointer-events: none;
}
.btn-view-all {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 44px; font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 2px;
  background: var(--navy); color: #fff;
  border: none; border-radius: 50px; cursor: pointer; transition: all .3s;
  box-shadow: 0 6px 28px rgba(13,27,62,.2);
}
.btn-view-all:hover {
  background: var(--fire); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,107,0,.42);
}
.btn-view-all svg { width: 18px; height: 18px; transition: transform .25s; }
.btn-view-all:hover svg { transform: translateX(5px); }


/* Video modal */
.video-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.92); z-index: 10000;
  align-items: center; justify-content: center; opacity: 0; transition: opacity .35s ease;
}
.video-modal.active { display: flex; opacity: 1; }
.video-modal-content {
  position: relative; width: 90%; max-width: 1200px; aspect-ratio: 16/9;
  background: #000; border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5); transform: scale(.92); transition: transform .35s ease;
}
.video-modal.active .video-modal-content { transform: scale(1); }
.video-modal iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute; top: -48px; right: 0; background: transparent; border: none;
  color: #fff; font-size: 32px; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .15s;
}
.video-modal-close:hover { background: rgba(255,255,255,.15); transform: rotate(90deg); }

/* ══════════════════════════════════════════
   REGISTRATION SECTION
══════════════════════════════════════════ */
.registration-section { background: var(--primary-gradient); padding: 100px 60px; }
.registration-container { max-width: 900px; margin: 0 auto; }
.registration-card {
  background: #ffffff; border-radius: 20px; padding: 48px 40px;
  box-shadow: 0 14px 44px rgba(13,27,62,.1); border: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.form-label .required { color: #ef4444; margin-left: 2px; }
.form-input {
  padding: 14px 16px; font-size: 16px; font-family: inherit; font-weight: 500;
  color: var(--navy); background: var(--black2); border: 2px solid transparent;
  border-radius: var(--r-sm, 8px); outline: none; transition: all .25s;
}
.form-input:focus { background: #ffffff; border-color: var(--fire); box-shadow: 0 0 0 4px rgba(255,107,0,.08); }
.form-input.error { border-color: #ef4444; background: #fef2f2; }
.form-input:disabled { background: var(--black3); color: var(--muted); cursor: not-allowed; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a6494' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.phone-group { position: relative; }
.phone-prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-weight: 600; color: var(--muted); pointer-events: none; z-index: 1;
}
.form-input.with-prefix { padding-left: 56px; }
.verify-wrapper { display: flex; gap: 12px; align-items: flex-end; }
.verify-wrapper .form-group { flex: 1; }
.btn-verify {
  padding: 14px 24px; font-size: 14px; font-weight: 700; font-family: inherit;
  color: #fff; background: var(--fire); border: none; border-radius: 8px;
  cursor: pointer; transition: all .25s; white-space: nowrap; height: 50px;
}
.btn-verify:hover { background: var(--fire2); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255,107,0,.3); }
.btn-verify:disabled { background: var(--border); color: var(--muted); cursor: not-allowed; transform: none; }
.btn-verify.verified { background: #22c55e; cursor: default; color: #ffffff; }
.btn-verify.verified:hover { transform: none; box-shadow: none; }
.otp-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.65); z-index: 10001; align-items: center; justify-content: center;
}
.otp-modal.active { display: flex; }
.otp-modal-content {
  background: #ffffff; border-radius: 20px; padding: 40px 36px;
  max-width: 440px; width: 90%; box-shadow: 0 14px 44px rgba(13,27,62,.18);
  animation: modalSlide .3s ease;
}
@keyframes modalSlide { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
.otp-modal-header { text-align: center; margin-bottom: 28px; }
.otp-modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--navy); margin-bottom: 8px; }
.otp-modal-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.otp-inputs { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.otp-input {
  width: 56px; height: 64px; font-size: 26px; font-weight: 700; text-align: center;
  color: var(--navy); background: var(--black2); border: 2px solid transparent;
  border-radius: 8px; outline: none; transition: all .25s; font-family: inherit;
}
.otp-input:focus { background: #fff; border-color: var(--fire); box-shadow: 0 0 0 4px rgba(255,107,0,.08); }
.otp-input.filled { background: rgba(255,107,0,.08); border-color: var(--fire); color: var(--fire); }
.otp-resend { text-align: center; margin-bottom: 20px; font-size: 13px; color: var(--muted); }
.otp-resend button { background: none; border: none; color: var(--fire); font-weight: 600; cursor: pointer; text-decoration: underline; font-family: inherit; font-size: 13px; }
.otp-resend button:disabled { color: var(--muted); cursor: not-allowed; text-decoration: none; }
.otp-actions { display: flex; gap: 12px; }
.btn-otp-cancel {
  flex: 1; padding: 14px; font-size: 15px; font-weight: 600; background: transparent;
  border: 2px solid var(--border); color: var(--muted); border-radius: 8px; cursor: pointer;
  font-family: inherit; transition: all .25s;
}
.btn-otp-cancel:hover { border-color: var(--fire); color: var(--fire); background: rgba(255,107,0,.05); }
.btn-otp-verify {
  flex: 1; padding: 14px; font-size: 15px; font-weight: 700; background: var(--fire);
  border: none; color: #fff; border-radius: 8px; cursor: pointer;
  font-family: inherit; transition: all .25s;
}
.btn-otp-verify:hover { background: var(--fire2); transform: translateY(-2px); }
.btn-otp-verify:disabled { background: var(--border); color: var(--muted); cursor: not-allowed; transform: none; }
.registration-type { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.type-option { position: relative; }
.type-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.type-label {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: #f5f7fb; border: 1.5px solid transparent; border-radius: 10px;
  cursor: pointer; transition: all .22s;
}
.type-option input[type="radio"]:checked + .type-label { background: rgba(255,107,0,.06); border-color: var(--fire); box-shadow: 0 0 0 3px rgba(255,107,0,.08); }
.type-icon {
  width: 32px; height: 32px; border-radius: 8px; background: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .22s; color: var(--muted); border: 1px solid rgba(13,27,62,.08);
}
.type-option input[type="radio"]:checked + .type-label .type-icon { background: var(--fire); color: #fff; border-color: var(--fire); }
.type-icon svg { width: 16px; height: 16px; }
.type-name { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.type-desc { font-size: 11px; color: var(--muted); }

.form-actions { margin-top: 32px; display: flex; gap: 16px; }
.btn-submit {
  flex: 1; padding: 16px; font-size: 16px; font-weight: 700; font-family: inherit;
  color: #fff; background: var(--fire); border: none; border-radius: var(--r);
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--fire2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,.3); }
.btn-submit:disabled { background: var(--border); color: var(--white); cursor: not-allowed; transform: none; }
.btn-submit svg { width: 20px; height: 20px; }
.error-message { display: none; font-size: 12px; color: #ef4444; margin-top: 6px; font-weight: 500; }
.error-message.show { display: block; }
.success-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px;
  background: #dcfce7; color: #22c55e; border-radius: 20px;
  font-size: 12px; font-weight: 600; margin-top: 6px;
}
.success-badge svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   HOW IT WORKS SECTION
══════════════════════════════════════════ */
.how-it-works-section { background: #ffffff; padding: 100px 60px; }
.how-it-works-container { max-width: 1200px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 60px; }
.step-card {
  position: relative; background: #ffffff; border-radius: 20px; padding: 40px 32px;
  text-align: center; border: 2px solid var(--border);
  transition: all .4s ease; box-shadow: 0 2px 8px rgba(13,27,62,.06);
}
.step-card:hover { transform: translateY(-8px); border-color: var(--fire); box-shadow: 0 14px 44px rgba(13,27,62,.12); }
.step-number {
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--fire2));
  color: #fff; font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255,107,0,.35); border: 4px solid #ffffff;
}
.step-icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: rgba(255,107,0,.08); border-radius: 20px;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.step-card:hover .step-icon { background: var(--fire); transform: scale(1.1); }
.step-icon svg { width: 40px; height: 40px; stroke: var(--fire); transition: stroke .3s; }
.step-card:hover .step-icon svg { stroke: #fff; }
.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--navy); margin-bottom: 12px; }
.step-description { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-connector {
  position: absolute; top: 50%; right: -40px; width: 40px; height: 2px;
  background: var(--border); z-index: 0;
}
.step-connector::after {
  content: '→'; position: absolute; top: 50%; right: -8px;
  transform: translateY(-50%); color: var(--fire); font-size: 20px; font-weight: 700;
}
.steps-grid .step-card:last-child .step-connector { display: none; }

/* ══════════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════════ */
.testimonials-section { background: var(--black2); padding: 90px 60px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; box-shadow: 0 2px 8px rgba(13,27,62,.06);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.testimonial-card:hover { border-color: var(--fire); transform: translateY(-4px); box-shadow: 0 6px 24px rgba(13,27,62,.1); }
.quote-mark { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--fire); opacity: .22; line-height: .8; margin-bottom: 10px; }
.stars { color: var(--fire); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--navy); font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; font-weight: 700; font-size: 16px; color: #fff; display: flex; align-items: center; justify-content: center; }
.author-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.author-detail { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.faq-section { background: #ffffff; padding: 90px 60px; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--r);
  margin-bottom: 12px; overflow: hidden; transition: border-color .3s, box-shadow .3s;
  background: #ffffff;
}
.faq-item.open { border-color: var(--fire); box-shadow: 0 2px 14px rgba(255,107,0,.1); }
.faq-question {
  width: 100%; background: #ffffff; border: none; color: var(--navy);
  padding: 18px 22px; font-size: 15px; font-weight: 600; text-align: left;
  cursor: pointer; font-family: inherit; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; transition: background .25s;
}
.faq-question:hover { background: var(--navy); color: var(--white); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,107,0,.08); border: 1.5px solid rgba(255,107,0,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .3s, border-color .3s;
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--fire); transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--fire); border-color: var(--fire); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 22px 18px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--primary-gradient); border-top: 4px solid var(--fire); padding: 64px 60px 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.321);
}
.footer-brand .logo { margin-bottom: 14px; display: block; }
.footer-brand .logo img { height: 50px; }
.footer-brand p { color: var(--white); font-size: 13px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; transition: all .25s;
  text-decoration: none;
}
.social-link:hover { background: rgba(255,107,0,.15); border-color: var(--fire); color: var(--fire); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; color: var(--white); }
.footer-col li span{vertical-align: bottom;color: var(--fire)}
.footer-col a { color:  var(--white); font-size: 16px; text-decoration: none; transition: color .25s; }
.footer-col a:hover { color: var(--fire3); }
.footer-col li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-col li span{
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--fire);
}

.footer-col li{
  line-height: 1.6;
}
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer-bottom p { color:  var(--white); font-size: 12px; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color:  var(--white); font-size: 12px; text-decoration: none; transition: color .25s; }
.footer-bottom-links a:hover { color: var(--fire3); }

/* ══════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(2,1fr); }
  section { padding: 70px 36px; }
  .registration-section, .how-it-works-section { padding: 70px 36px; }
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 22px; }
  .registration-section, .how-it-works-section { padding: 60px 22px; }
  .video-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 22px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 40px; }
  .step-connector { display: none; }
  .registration-card { padding: 32px 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .verify-wrapper { flex-direction: column; align-items: stretch; }
  .btn-verify { width: 100%; height: auto; }
  .registration-type { grid-template-columns: 1fr; }
  .otp-modal-content { padding: 28px 20px; }
  .otp-input { width: 48px; height: 56px; font-size: 22px; }
}
@media (max-width: 480px) {
  .tabs { flex-direction: column; align-items: center; }
  .tab-btn:first-child { border-radius: var(--r) var(--r) 0 0; border-right: 1.5px solid var(--border); border-bottom: none; }
  .tab-btn:last-child { border-radius: 0 0 var(--r) var(--r); }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }


/* ══ About Us HERO ══ */

.about-hero {
  min-height: 88vh;
  padding-top: 68px;
  background: var(--primary-gradient);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,107,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb-1 {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,107,0,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(100,60,255,.1) 0%, transparent 70%);
  bottom: -80px; left: 10%;
}

.about-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,.12); border: 1px solid rgba(255,107,0,.3);
  padding: 7px 14px; border-radius: 30px;
  font-size: 11px; font-weight: 700; color: var(--fire);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 22px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fire);
  animation: pulseRing 1.8s ease-in-out infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,.7); }
  60%  { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  line-height: .95; letter-spacing: 1px;
  color: #fff; margin-bottom: 20px;
}
.hero-title .fire { color: var(--fire); text-shadow: 0 0 30px rgba(255,107,0,.4); }
.hero-title .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255);
}

.hero-desc {
  font-size: 16px; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,.75); margin-bottom: 32px;
}
.hero-desc strong { color: #fff; font-weight: 700; }
.hero-desc .fire-text { color: var(--fire3); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fire); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  border: none; padding: 14px 28px; border-radius: var(--r);
  cursor: pointer; transition: all .25s;
  box-shadow: 0 6px 20px rgba(255,107,0,.35);
  text-decoration: none;
}
.btn-primary:hover { background: #e05a00; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,0,.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.3); padding: 13px 24px; border-radius: var(--r);
  cursor: pointer; transition: all .25s; text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,107,0,.5); color: var(--fire3); }

/* Hero right — stat stack */
.hero-stats-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 18px;
  transition: transform .25s, border-color .25s;
}
.stat-card:hover { transform: translateX(4px); border-color: rgba(255,107,0,.3); }
.stat-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px; background: var(--fire-glow);
  border: 1px solid rgba(255,107,0,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--fire); font-size: 22px;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; line-height: 1; color: #fff; letter-spacing: .5px;
}
.stat-number span { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--fire); }
.stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: .5px; margin-top: 3px; }

/* ══ SECTION COMMONS ══ */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fire-dim); border: 1px solid rgba(255,107,0,.2);
  padding: 6px 14px; border-radius: 30px;
  font-size: 11px; font-weight: 700; color: var(--fire);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1; letter-spacing: .8px; color: var(--navy);
  margin-bottom: 16px;
}
.section-title .fire { color: var(--fire); }
.section-sub {
  font-size: 16px; line-height: 1.7; color: var(--muted);
  max-width: 560px;
}
/* ===== HERO FIRST LOAD ANIMATION (FASTER) ===== */

.about-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .6s ease-out forwards;
  animation-delay: .1s;
}

/* Stagger content */
.hero-badge { 
  opacity: 0; 
  transform: translateY(15px);
  animation: heroFadeUp .5s ease-out forwards;
  animation-delay: .2s;
}

.hero-title span {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .5s ease-out forwards;
}

.hero-title span:nth-child(1) { animation-delay: .3s; }
.hero-title span:nth-child(2) { animation-delay: .4s; }
.hero-title span:nth-child(3) { animation-delay: .5s; }

.hero-desc {
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeUp .5s ease-out forwards;
  animation-delay: .6s;
}

.hero-ctas {
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeUp .5s ease-out forwards;
  animation-delay: .7s;
}

.hero-stats-stack {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .6s ease-out forwards;
  animation-delay: .8s;
}

/* Keyframes */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══ INTRO / STORY SECTION ══ */
.story-section { padding: 100px 0; background: var(--light-bg); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-visual {
  position: relative;
}
.story-visual-inner {
  border-radius: var(--r-xl);
  background: var(--primary-gradient);
  padding: 40px; position: relative; overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
}
.story-visual-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.story-big-text {
  position: absolute; top: 20px; left: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px; line-height: 1;
  color: rgba(255,107,0,.08); letter-spacing: -2px; white-space: nowrap;
}
.story-badges { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.story-badge-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 14px 18px;
  backdrop-filter: blur(10px);
}
.sbi-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,107,0,.2); display: flex; align-items: center; justify-content: center;
  color: var(--fire); font-size: 18px; flex-shrink: 0;
}
.sbi-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }
.sbi-sub { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }

.story-floating {
  position: absolute; top: -20px; right: -20px;
  background: #fff; border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(13,27,62,.12);
  border: 1px solid rgba(13,27,62,.06);
  display: flex; align-items: center; gap: 12px;
}
.sf-icon { font-size: 24px; }
.sf-val { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--fire); }
.sf-label { font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: .5px; }

.story-content .section-sub { max-width: 100%; margin-bottom: 28px; }
.story-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.story-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--navy2);
  line-height: 1.5;
}
.sl-check {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background: var(--green-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 13px;
}

/* ══ WHAT WE DO ══ */
.what-we-do { padding: 100px 0; background: #fff; }
.wwd-header { text-align: center; margin-bottom: 60px; }
.wwd-header .section-sub { margin: 0 auto; text-align: center; }

.wwd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.wwd-card {
  border: 1px solid rgba(13,27,62,.09);
  border-radius: var(--r-xl); padding: 32px 26px;
  background: var(--light-bg);
  transition: all .3s; position: relative; overflow: hidden;
}
.wwd-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--fire); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.wwd-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,27,62,.1); border-color: rgba(255,107,0,.15); }
.wwd-card:hover::before { transform: scaleX(1); }

.wwd-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; background: var(--fire-dim);
  border: 1px solid rgba(255,107,0,.15);
  color: var(--fire);
}
.wwd-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.wwd-desc { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ══ TRUST / PROCESS ══ */
.trust-section { padding: 100px 0; background: var(--primary-gradient); position: relative; overflow: hidden; }
.trust-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,107,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.trust-orb {
  position: absolute; pointer-events: none;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.1) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.trust-inner { position: relative; z-index: 2; }
.trust-header { text-align: center; margin-bottom: 60px; }
.trust-header .section-title { color: #fff; }
.trust-header .section-sub { color: rgba(255,255,255,.6); margin: 0 auto; text-align: center; }
.trust-header .section-tag { background: rgba(255,107,0,.12); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, rgba(255,107,0,.3), rgba(255,107,0,.7), rgba(255,107,0,.3));
  z-index: 0;
}

.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 99; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255); border: 2px solid rgba(255,107,0,);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--fire); font-size: 28px;
  position: relative; transition: all .3s;
}
.step-circle:hover { background: rgba(255,107,0,.6); transform: scale(1.05); }
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--fire); color: #fff;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.55); }

/* ══ MISSION ══ */
.mission-section { padding: 100px 0; background: var(--light-bg); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.mission-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.mission-card {
  border-radius: var(--r-lg); padding: 28px 22px;
  border: 1px solid rgba(13,27,62,.09);
  background: #fff; transition: all .3s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(13,27,62,.1); }
.mission-card.full { grid-column: span 2; background: var(--primary-gradient); border-color: transparent; }
.mc-icon { font-size: 32px; margin-bottom: 12px; }
.mc-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.mc-title.white { color: #fff; }
.mc-desc { font-size: 13px; line-height: 1.6; color: var(--muted); }
.mc-desc.white-muted { color: rgba(255,255,255,.65); }

.mission-content .section-sub { max-width: 100%; margin-bottom: 32px; }
.mission-list { display: flex; flex-direction: column; gap: 18px; }
.mission-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid rgba(13,27,62,.08);
  transition: all .25s;
}
.mission-item:hover { border-color: rgba(255,107,0,.2); transform: translateX(4px); }
.mi-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: var(--fire-dim); display: flex; align-items: center; justify-content: center;
  color: var(--fire); font-size: 20px;
}
.mi-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.mi-desc { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* ══ WHO WE SERVE ══ */
.serve-section { padding: 100px 0; background: #fff; }
.serve-header { text-align: center; margin-bottom: 60px; }
.serve-header .section-sub { margin: 0 auto; text-align: center; }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.serve-card {
  border-radius: var(--r-xl); padding: 36px 24px; text-align: center;
  border: 1px solid rgba(13,27,62,.09); background: var(--light-bg);
  transition: all .3s; position: relative; overflow: hidden;
}
.serve-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,27,62,.1); }
.serve-card::after {
  content: '';
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, var(--fire-dim), transparent);
  transition: opacity .3s;
}
.serve-card:hover::after { opacity: 1; }
.serve-emoji { font-size: 44px; margin-bottom: 16px; }
.serve-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.serve-desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.serve-tag {
  display: inline-block; margin-top: 16px;
  padding: 5px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  background: var(--fire-dim); color: var(--fire);
  border: 1px solid rgba(255,107,0,.15);
}

/* ══ WHY CHOOSE US ══ */
.why-section { padding: 100px 0; background: var(--light-bg); }
.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-sub { margin: 0 auto; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.why-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 32px; border: 1px solid rgba(13,27,62,.08);
  display: flex; gap: 18px; align-items: flex-start;
  transition: all .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(13,27,62,.1); border-color: rgba(255,107,0,.15); }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; line-height: 1; color: var(--fire);
  opacity: .25; flex-shrink: 0; width: 40px; text-align: center;
  transition: opacity .3s;
}
.why-card:hover .why-num { opacity: .6; }
.why-body {}
.why-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-desc { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ══ CTA BANNER ══ */
.cta-section { padding: 80px 0; background: var(--primary-gradient); position: relative; overflow: hidden; }
.cta-orb {
  position: absolute; width: 700px; height: 700px; pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cta-inner {
  position: relative; z-index: 2; text-align: center;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95; color: #fff; letter-spacing: 1px; margin-bottom: 16px;
}
.cta-title .fire { color: var(--fire); text-shadow: 0 0 30px rgba(255,107,0,.4); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }



/* ══ REVEAL ANIMATION ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .hero-stats-stack { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .stat-card { flex: 1; min-width: 160px; }
  .story-grid, .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { order: -1; }
  .wwd-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .section-wrap { padding: 0 24px; }
  .story-section, .what-we-do, .trust-section, .mission-section, .serve-section, .why-section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .wwd-grid, .serve-grid, .mission-visual { grid-template-columns: 1fr; }
  .mission-card.full { grid-column: span 1; }
  .hero-title { font-size: 48px; }
}

/* ═══════════════════════════════════
   MAIN LOGIN LAYOUT — CENTERED
═══════════════════════════════════ */
.login-wrapper {
  position: relative; z-index: 10;
  min-height: calc(100vh - 68px);
  padding: 88px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black3);
}


/* ── CENTER PANEL — LOGIN CARD ── */
.login-right {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  animation: fadeUp .75s cubic-bezier(.16,.84,.44,1) .2s both;
}

.login-card {
  width: 100%; max-width: 420px;
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid rgba(13,27,62,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.22), 0 0 0 1px rgba(255,107,0,.04) inset, 0 0 50px rgba(255,107,0,.04);
  overflow: hidden;
}

/* Card header */
.card-header {
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(13,27,62,.08);
  background: linear-gradient(135deg, rgba(255,107,0,.05) 0%, rgba(248,250,255,.9) 60%);
  position: relative;
}
.card-header::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
  background: radial-gradient(ellipse at top right, rgba(255,107,0,.06), transparent 70%);
  pointer-events: none;
}
.card-eyebrow {
  display: flex; align-items: center;justify-content: center; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,107,0,.85); margin-bottom: 6px;
}
.card-eyebrow .orange-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire); animation: pulseRing 1.8s ease-in-out infinite;
}
.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 1px;
  color: var(--navy); line-height: 1.1; margin-bottom: 4px;
  text-align: center;
}
.card-sub { font-size: 12.5px; color: var(--muted); line-height: 1.5;text-align: center; }

/* Card form body */
.card-body { padding: 22px 28px 26px; }

/* Tab switcher: Sign In / Register */
.auth-tabs {
  display: flex; gap: 0;
  background: #f0f4fb;
  border-radius: var(--r);
  padding: 4px;
  margin-bottom: 22px;
}
.auth-tab {
  flex: 1; padding: 9px 0; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .3px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-family: inherit; transition: all .22s;
}
.auth-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(13,27,62,.12);
}
.auth-tab:not(.active):hover { color: var(--navy); }

/* Form field */
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--muted); margin-bottom: 6px;
}
.field-wrap { position: relative; }
.field-wrap .field-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: rgba(13,27,62,.3); font-size: 18px; pointer-events: none;
  transition: color .22s;
}
.sc-input {
  width: 100%; padding: 11px 14px 11px 42px;
  background: #f5f8ff;
  border: 1.5px solid rgba(13,27,62,.15);
  border-radius: var(--r);
  color: var(--navy); font-size: 16px; font-weight: 500;
  font-family: 'Outfit', sans-serif;
  outline: none; transition: all .22s;
}
.sc-input::placeholder {
  color: rgba(13,27,62,.3); font-size: 15px; font-weight: 400; letter-spacing: 0;
}
.sc-input:focus {
  background: #fff;
  border-color: rgba(255,107,0,.6);
  box-shadow: 0 0 0 3px rgba(255,107,0,.1);
}
.sc-input:focus + .field-icon,
.field-wrap:focus-within .field-icon { color: var(--fire); }
.field-wrap .toggle-password {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--muted); font-size: 18px; transition: color .2s;
}
.field-wrap .toggle-password:hover { color: var(--fire); }
.sc-input.has-toggle { padding-right: 42px; }

/* Mobile field — special */
.mobile-wrap { display: flex; gap: 8px; }
.mobile-prefix {
  display: flex; align-items: center;
  padding: 0 12px; background: #f0f4fb;
  border: 1.5px solid rgba(13,27,62,.15);
  border-radius: var(--r); font-size: 14px; font-weight: 700;
  color: var(--navy); white-space: nowrap; letter-spacing: .5px;
  gap: 6px; flex-shrink: 0;
}
.flag-icon { font-size: 18px; }
.mobile-wrap .sc-input { flex: 1; padding-left: 14px; }

/* OTP row */
.otp-row {
  display: flex; gap: 10px; margin-top: 16px;
}
.otp-box {
  flex: 1; aspect-ratio: 1 / 1; max-height: 54px;
  background: #f5f8ff; border: 1.5px solid rgba(13,27,62,.15);
  border-radius: var(--r); font-size: 24px; font-weight: 700;
  color: var(--navy); text-align: center; outline: none;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0;
  transition: all .22s;
}
.otp-box:focus { border-color: var(--fire); box-shadow: 0 0 0 3px rgba(255,107,0,.12); background: #fff; }
.otp-box.filled { border-color: rgba(255,107,0,.5); background: rgba(255,107,0,.04); }

/* Divider */
.or-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0; font-size: 11px; font-weight: 600;
  color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase;
}
.or-divider::before, .or-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(13,27,62,.1);
}

/* Social login */
.social-row { display: flex; gap: 8px; margin-bottom: 18px; }
.btn-social {
  flex: 1; padding: 10px; border-radius: var(--r);
  border: 1.5px solid rgba(13,27,62,.12);
  background: #fff; cursor: pointer; transition: all .22s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--navy); font-family: inherit;
}
.btn-social:hover { border-color: var(--fire); background: rgba(255,107,0,.04); color: var(--fire); }
.btn-social img { width: 18px; height: 18px; }

/* Remember & forgot */
.form-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.checkbox-wrap {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--muted); user-select: none;
}
.checkbox-wrap input[type="checkbox"] { display: none; }
.custom-check {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid rgba(13,27,62,.2);
  background: #f5f8ff; flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; transition: all .2s;
}
.checkbox-wrap input:checked ~ .custom-check {
  background: var(--fire); border-color: var(--fire);
}
.checkbox-wrap input:checked ~ .custom-check::after {
  content: '';
  width: 4px; height: 8px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}
.forgot-link {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.forgot-link:hover { color: var(--fire); }

/* Primary submit button */
.btn-submit {
  width: 100%; padding: 13px;
  background: var(--fire); color: #fff;
  font-size: 15px; font-weight: 700; font-family: inherit;
  border: none; border-radius: var(--r); cursor: pointer;
  letter-spacing: .3px; transition: all .25s;
  box-shadow: 0 6px 20px rgba(255,107,0,.35);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  position: relative; overflow: hidden;
}
.btn-submit::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-15deg); transition: left .5s ease;
}
.btn-submit:hover::after { left: 130%; }
.btn-submit:hover { background: var(--fire2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,0,.45); }
.btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

/* OTP timer row */
.otp-timer-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; font-size: 12.5px; color: var(--muted);
}
.resend-btn {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 12.5px; font-weight: 700; color: var(--fire); padding: 0;
  transition: opacity .2s;
}
.resend-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Signup prompt */
.signup-prompt {
  text-align: center; margin-top: 16px;
  font-size: 13px; color: var(--muted);
}
.signup-prompt a { color: var(--fire); font-weight: 700; text-decoration: none; }
.signup-prompt a:hover { text-decoration: underline; }

/* Toggle steps (phone → otp) */
.step { display: none; }
.step.active { display: block; }

/* Verified badge */
.verified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--green);
  background: var(--green-dim); border: 1px solid rgba(22,163,74,.2);
  padding: 4px 10px; border-radius: 30px;
  animation: fadeUp .4s ease both;
}

/* Security note */
.security-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: var(--muted); margin-top: 14px;
  justify-content: center;
}
.security-note .material-symbols-outlined { font-size: 14px; }

/* Card footer */
.card-footer {
  padding: 14px 28px;
  background: #f8faff;
  border-top: 1px solid rgba(13,27,62,.07);
  display: flex; justify-content: center; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--muted);
}
.card-footer strong { color: var(--navy); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0   rgba(255,107,0,.7); }
  60%  { box-shadow: 0 0 0 8px rgba(255,107,0,0);  }
  100% { box-shadow: 0 0 0 0   rgba(255,107,0,0);  }
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block; flex-shrink: 0;
}

/* Error shake */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.shake { animation: shake .4s ease; border-color: #ef4444 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-register { display: none; }
  .login-wrapper { padding: 88px 16px 40px; }
}
@media (max-width: 480px) {
  .login-card { border-radius: var(--r-lg); }
  .card-header, .card-body { padding-left: 20px; padding-right: 20px; }
}
/* ── INSPECTION LOGIN MODAL ── */
.vc-login-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(1, 0, 30, 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.vc-login-overlay.open { opacity: 1; visibility: visible; }

.vc-login-modal {
  background: #fff; border-radius: 24px;
  width: 100%; max-width: 520px;
  box-shadow: 0 32px 80px rgba(1,0,30,.3), 0 0 0 1px rgba(255,107,0,.06) inset;
  overflow: hidden;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1), opacity 0.3s ease;
  opacity: 0;
}
.vc-login-overlay.open .vc-login-modal { transform: translateY(0) scale(1); opacity: 1; }

.vc-lm-header {
  padding: 28px 32px 20px;
  background: linear-gradient(135deg, rgba(255,107,0,.05) 0%, rgba(248,250,255,.9) 60%);
  border-bottom: 1px solid rgba(13,27,62,.08);
  position: relative;
}
.vc-lm-header::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
  background: radial-gradient(ellipse at top right, rgba(255,107,0,.07), transparent 70%);
  pointer-events: none;
}
.vc-lm-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,107,0,.85); margin-bottom: 8px;
}
.vc-lm-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ff6b00;
  animation: pulseRing 1.8s ease-in-out infinite;
}
.vc-lm-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px;
  letter-spacing: 1px; color: #012273; text-align: center; margin-bottom: 6px;
}
.vc-lm-sub { font-size: 13px; color: #4a6494; text-align: center; line-height: 1.5; }

.vc-lm-close {
  position: absolute; top: 18px; right: 20px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(13,27,62,.06); border: 1px solid rgba(13,27,62,.1);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #4a6494; font-size: 20px; transition: all 0.2s;
  font-family: inherit; z-index: 2; line-height: 1;
}
.vc-lm-close:hover {
  background: rgba(255,107,0,.1); border-color: rgba(255,107,0,.3);
  color: #ff6b00; transform: rotate(90deg);
}

.vc-lm-body { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 14px; }

.vc-login-option {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px; border-radius: 16px;
  border: 1.5px solid rgba(13,27,62,.1);
  background: #f7f9fd; cursor: pointer;
  text-decoration: none; transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.vc-login-option::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: #ff6b00; border-radius: 4px 0 0 4px;
  transform: scaleY(0); transition: transform 0.25s ease;
}
.vc-login-option:hover {
  border-color: rgba(255,107,0,.4); background: #fff;
  box-shadow: 0 8px 28px rgba(255,107,0,.1); transform: translateX(4px);
}
.vc-login-option:hover::before { transform: scaleY(1); }

.vc-login-option.vendor-opt::before { background: #2563eb; }
.vc-login-option.vendor-opt:hover { border-color: rgba(37,99,235,.4); box-shadow: 0 8px 28px rgba(37,99,235,.1); }

.vc-login-option.client-opt::before { background: #16a34a; }
.vc-login-option.client-opt:hover { border-color: rgba(22,163,74,.4); box-shadow: 0 8px 28px rgba(22,163,74,.1); }

.vc-lo-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 26px;
  transition: all 0.25s ease; border: 1.5px solid transparent;
}
.vc-lo-icon.valuator { background: rgba(255,107,0,.08); border-color: rgba(255,107,0,.2); color: #ff6b00; }
.vc-lo-icon.vendor   { background: rgba(37,99,235,.08);  border-color: rgba(37,99,235,.2);  color: #2563eb; }
.vc-lo-icon.client   { background: rgba(22,163,74,.08);  border-color: rgba(22,163,74,.2);  color: #16a34a; }

.vc-login-option:hover .vc-lo-icon.valuator { background: #ff6b00; border-color: #ff6b00; color: #fff; }
.vc-login-option:hover .vc-lo-icon.vendor   { background: #2563eb; border-color: #2563eb; color: #fff; }
.vc-login-option:hover .vc-lo-icon.client   { background: #16a34a; border-color: #16a34a; color: #fff; }

.vc-lo-text { flex: 1; }
.vc-lo-label { font-size: 16px; font-weight: 700; color: #012273; margin-bottom: 3px; }
.vc-lo-desc  { font-size: 12.5px; color: #4a6494; line-height: 1.45; }

.vc-lo-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(13,27,62,.05); border: 1px solid rgba(13,27,62,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #4a6494; font-size: 18px; transition: all 0.25s;
}
.vc-login-option:hover        .vc-lo-arrow { background: #ff6b00; border-color: #ff6b00; color: #fff; transform: translateX(3px); }
.vc-login-option.vendor-opt:hover .vc-lo-arrow { background: #2563eb; border-color: #2563eb; }
.vc-login-option.client-opt:hover .vc-lo-arrow { background: #16a34a; border-color: #16a34a; }

.vc-lm-divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; color: #4a6494;
  letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.45; margin: 0 4px;
}
.vc-lm-divider::before, .vc-lm-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(13,27,62,.1);
}

.vc-lm-footer {
  padding: 14px 32px 18px;
  border-top: 1px solid rgba(13,27,62,.07); background: #f8faff;
  display: flex; align-items: center; justify-content: center;
  gap: 7px; font-size: 11.5px; color: #4a6494;
}
.vc-lm-footer .material-symbols-outlined { font-size: 15px; color: #16a34a; }

@media (max-width: 600px) {
  .vc-login-modal { border-radius: 18px; }
  .vc-lm-header, .vc-lm-body, .vc-lm-footer { padding-left: 20px; padding-right: 20px; }
  .vc-lo-icon { width: 46px; height: 46px; font-size: 22px; }
  .vc-lo-label { font-size: 14.5px; }
}

/* Global button loading (spinner only) */
.btn-loading {
  position: relative;
  color: transparent !important;
}
.btn-loading > * { opacity: 0 !important; }
.btn-loading > .btn-spinner { opacity: 1 !important; }
.btn-loading .btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--btn-loading-track, rgba(255, 255, 255, 0.35));
  border-top-color: var(--btn-loading-spin, #ffffff);
  transform: translate(-50%, -50%);
  animation: btn-spin 0.6s linear infinite;
}
.btn-loading:hover {
  transform: none !important;
  box-shadow: none !important;
}

@keyframes btn-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =================================================
   GLOBAL TOOLTIP
   ================================================= */
[data-tooltip] {
  position: relative;
}
[data-tooltip]:not(.btn-loading)::before,
[data-tooltip]:not(.btn-loading)::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
[data-tooltip]:not(.btn-loading)::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  background: var(--tooltip-bg, #0d1b3e);
  color: var(--tooltip-text, #ffffff);
  border: 1px solid var(--tooltip-border, rgba(0, 0, 0, 0.1));
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  line-height: 1.3;
  white-space: pre-line;
  text-align: center;
  max-width: 240px;
  box-shadow: 0 6px 16px rgba(1, 0, 30, 0.2);
}
[data-tooltip]:not(.btn-loading)::after {
  content: '';
  bottom: calc(100% + 2px);
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--tooltip-bg, #0d1b3e);
  border-left: 1px solid var(--tooltip-border, rgba(0, 0, 0, 0.1));
  border-bottom: 1px solid var(--tooltip-border, rgba(0, 0, 0, 0.1));
}

@media (hover: hover) {
  [data-tooltip]:not(.btn-loading):hover::before,
  [data-tooltip]:not(.btn-loading):hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
[data-tooltip]:not(.btn-loading):focus::before,
[data-tooltip]:not(.btn-loading):focus::after,
[data-tooltip]:not(.btn-loading):focus-visible::before,
[data-tooltip]:not(.btn-loading):focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* CarsRight homepage section spacing */
.cr-hero {
  padding: var(--nav-h) 0 0 !important;
}

.cr-reveal-section,
.cr-videos,
.cr-checks,
.cr-steps,
.cr-stories,
.cr-faq {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.vl-show-more {
  text-align: right !important;
}

.vl-show-btn {
  width: 44px;
  height: 44px;
  justify-content: center;
  padding: 0 !important;
  border-radius: 50% !important;
}

.vl-show-btn .material-icons-round {
  font-size: 22px !important;
}

/* Positions */
[data-tooltip-pos="bottom"]::before {
  top: calc(100% + 8px);
  bottom: auto;
  transform: translateX(-50%) translateY(-4px);
}
[data-tooltip-pos="bottom"]::after {
  top: calc(100% + 2px);
  bottom: auto;
  transform: translateX(-50%) rotate(45deg);
}
[data-tooltip-pos="left"]::before {
  right: calc(100% + 8px);
  left: auto;
  bottom: 50%;
  transform: translateY(50%) translateX(4px);
  text-align: left;
}
[data-tooltip-pos="left"]::after {
  right: calc(100% + 2px);
  left: auto;
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}
[data-tooltip-pos="right"]::before {
  left: calc(100% + 8px);
  bottom: 50%;
  transform: translateY(50%) translateX(-4px);
  text-align: left;
}
[data-tooltip-pos="right"]::after {
  left: calc(100% + 2px);
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}
