/*
Theme Name:   DriveElite Child
Theme URI:    https://driveelite.in
Description:  DriveElite Child Theme based on Twenty Twenty-One
Author:       DriveElite
Author URI:   https://driveelite.in
Template:     twentytwentyone
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         driving-school, child-theme
Text Domain:  driveelite-child
*/

/* ═══════════════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════════════ */
:root {
  --ink:       #0a0a0f;
  --paper:     #f5f2eb;
  --accent:    #e8320a;
  --accent2:   #f5a623;
  --mid:       #1c1c28;
  --muted:     #6b6b7a;
  --light:     #eae7de;
  --white:     #ffffff;

  --f-display: 'Bebas Neue', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'Space Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  overflow-x: hidden;
  cursor: none;
}

/* Hide TwentyTwentyOne defaults we override */
.wp-block-group.has-background,
.site-header,
.site-footer,
body > #page { all: unset; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ═══════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════ */
.de-cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: multiply;
}
.de-cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease-out-expo), width .3s, height .3s, border-color .3s;
}
body:has(a:hover) .de-cursor { width: 8px; height: 8px; }
body:has(a:hover) .de-cursor-ring { width: 56px; height: 56px; border-color: var(--accent); }
body:has(button:hover) .de-cursor-ring { width: 56px; height: 56px; border-color: var(--accent); }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.de-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: transparent;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.de-nav.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  padding: 12px 48px;
}
.de-nav-logo {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}
.de-nav-logo span { color: var(--accent); }
.de-nav-links { display: flex; gap: 36px; list-style: none; }
.de-nav-links a {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  position: relative;
  transition: color .2s;
}
.de-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease-out-expo);
}
.de-nav-links a:hover { color: var(--white); }
.de-nav-links a:hover::after,
.de-nav-links a.current-menu-item::after { width: 100%; }
.de-nav-links a.current-menu-item { color: var(--white); }
.de-nav-cta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent2);
  border: none;
  padding: 10px 22px;
  cursor: none;
  font-weight: 700;
  transition: background .2s, transform .2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  text-decoration: none;
  display: inline-block;
}
.de-nav-cta:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }

/* Mobile hamburger */
.de-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.de-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: .3s;
}
.de-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.de-mobile-menu.open { display: flex; }
.de-mobile-menu a {
  font-family: var(--f-display);
  font-size: 52px;
  color: var(--white);
  letter-spacing: 2px;
  text-decoration: none;
  transition: color .2s;
}
.de-mobile-menu a:hover { color: var(--accent); }
.de-mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 36px;
  cursor: none;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.de-hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.de-road-lines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  pointer-events: none;
  overflow: hidden;
}
.de-road-lines svg { width: 100%; height: 100%; }
.de-lane-dashes {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  height: 6px;
  display: flex;
  gap: 0;
  animation: dashMove 1.2s linear infinite;
  overflow: hidden;
}
@keyframes dashMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-80px); }
}
.de-lane-dash {
  flex-shrink: 0;
  width: 60px; height: 6px;
  background: var(--accent2);
  margin-right: 20px;
  opacity: .8;
}
.de-speedometer-bg {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.de-speedometer-bg::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.de-speedometer-bg::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(232,50,10,.12);
  box-shadow: inset 0 0 80px rgba(232,50,10,.05);
}
.de-arc-ring {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  width: 540px; height: 540px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: conic-gradient(from -135deg, var(--accent) 0%, var(--accent2) 60%, transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: arcSpin 8s linear infinite;
  pointer-events: none;
  opacity: .3;
}
@keyframes arcSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
.de-hero-car {
  position: absolute;
  right: 80px; bottom: 140px;
  width: 480px;
  animation: carFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(232,50,10,.3));
}
@keyframes carFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
.de-particles { position: absolute; inset: 0; pointer-events: none; }
.de-particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--accent2);
  border-radius: 50%;
  animation: particleFly var(--dur) linear infinite;
  animation-delay: var(--delay);
  left: var(--x);
  top: var(--y);
  opacity: 0;
}
@keyframes particleFly {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-200px) translateX(40px); opacity: 0; }
}
.de-hero-content {
  position: relative; z-index: 10;
  padding: 0 48px;
  max-width: 680px;
}
.de-hero-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out-expo) .3s forwards;
}
.de-hero-tag::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--accent);
}
.de-hero-title {
  font-family: var(--f-display);
  font-size: clamp(72px, 9vw, 120px);
  line-height: .9;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out-expo) .5s forwards;
}
.de-hero-title .accent { color: var(--accent); }
.de-hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.3);
  color: transparent;
}
.de-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out-expo) .7s forwards;
}
.de-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out-expo) .9s forwards;
}
.de-btn-primary {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 18px 36px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .3s var(--ease-out-expo);
}
.de-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent2);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform .4s var(--ease-out-expo);
}
.de-btn-primary:hover::before { transform: translateX(0) skewX(-12deg); }
.de-btn-primary:hover { transform: translateY(-2px); }
.de-btn-primary span { position: relative; z-index: 1; color: var(--white); }
.de-btn-ghost {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 18px 36px;
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  cursor: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, border-color .2s, transform .2s;
}
.de-btn-ghost:hover { color: var(--white); border-color: var(--white); transform: translateY(-2px); }
.de-btn-ghost svg { transition: transform .3s; }
.de-btn-ghost:hover svg { transform: translateX(4px); }

/* Stats bar */
.de-hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--mid);
  display: flex;
  border-top: 1px solid rgba(255,255,255,.06);
  z-index: 10;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out-expo) 1.1s forwards;
}
.de-stat-item {
  flex: 1;
  padding: 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.de-stat-item:last-child { border-right: none; }
.de-stat-item:hover { background: rgba(232,50,10,.06); }
.de-stat-item:hover .de-stat-num { color: var(--accent); }
.de-stat-num {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--white);
  letter-spacing: 1px;
  transition: color .2s;
}
.de-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════ */
.de-page-hero {
  padding: 160px 48px 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.de-page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(232,50,10,.1);
  pointer-events: none;
}
.de-page-hero-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.de-page-hero-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.de-page-hero-title {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: .9;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.de-page-hero-title em { font-style: normal; color: var(--accent); }
.de-page-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  max-width: 480px;
}

/* ═══════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════ */
.de-marquee-section {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
}
.de-marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.de-marquee-item {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.de-marquee-item::after {
  content: '◆';
  font-size: 8px;
  opacity: .6;
}

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════ */
.de-section-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.de-section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.de-section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: .92;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 70px;
}
.de-section-title em { font-style: normal; color: var(--accent); }

/* ═══════════════════════════════════════════════════
   COURSES SECTION
═══════════════════════════════════════════════════ */
.de-courses-section {
  padding: 120px 48px;
  background: var(--paper);
  position: relative;
}
.de-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.de-course-card {
  background: var(--white);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .4s var(--ease-out-expo), box-shadow .4s;
  cursor: none;
}
.de-course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform .5s var(--ease-in-out);
  z-index: 0;
}
.de-course-card:hover::before { transform: translateY(0); }
.de-course-card:hover { box-shadow: 0 32px 64px rgba(0,0,0,.2); z-index: 2; }
.de-course-card:hover .de-course-num,
.de-course-card:hover .de-course-name,
.de-course-card:hover .de-course-desc { color: var(--white); }
.de-course-card:hover .de-course-icon-wrap { background: var(--accent); }
.de-course-card:hover .de-course-price { color: var(--accent2); }
.de-course-card:hover .de-course-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.de-course-card:hover .de-course-arrow { color: var(--accent); transform: translateX(6px); }
.de-course-card > * { position: relative; z-index: 1; }
.de-course-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 28px;
  transition: color .3s;
}
.de-course-icon-wrap {
  width: 56px; height: 56px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: background .3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.de-course-icon-wrap svg { width: 26px; height: 26px; }
.de-course-name {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: .5px;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color .3s;
}
.de-course-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color .3s;
}
.de-course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.de-course-price {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--ink);
  transition: color .3s;
}
.de-course-price small { font-size: 14px; opacity: .6; font-family: var(--f-body); }
.de-course-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--light);
  color: var(--muted);
  transition: background .3s, color .3s;
}
.de-course-arrow {
  font-size: 20px;
  color: var(--muted);
  transition: color .3s, transform .3s;
}

/* ═══════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════ */
.de-why-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.de-why-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -2px;
  height: 80px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
.de-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 48px;
}
.de-why-left { padding-right: 80px; }
.de-why-left .de-section-title { color: var(--white); margin-bottom: 48px; }
.de-why-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  margin-bottom: 48px;
}
.de-why-features { display: flex; flex-direction: column; gap: 0; }
.de-feature-row {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: flex-start;
  position: relative;
  cursor: none;
  transition: padding-left .3s var(--ease-out-expo);
}
.de-feature-row:hover { padding-left: 12px; }
.de-feature-row:hover .de-feature-icon { background: var(--accent); }
.de-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.de-feature-icon svg { width: 20px; height: 20px; color: var(--accent2); }
.de-feature-title {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.de-feature-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.4);
  font-weight: 300;
}
.de-why-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.de-big-stat-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.de-big-stat-card:hover { background: rgba(232,50,10,.07); }
.de-big-stat-card:first-child { flex: 1.5; }
.de-big-stat-num {
  font-family: var(--f-display);
  font-size: clamp(72px, 8vw, 100px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  position: relative;
}
.de-big-stat-num .unit {
  font-size: .5em;
  color: var(--accent);
  vertical-align: super;
}
.de-big-stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 8px;
}
.de-big-stat-decor {
  position: absolute;
  right: -20px; bottom: -20px;
  font-family: var(--f-display);
  font-size: 160px;
  color: rgba(255,255,255,.02);
  line-height: 1;
  user-select: none;
}

/* ═══════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════ */
.de-process-section {
  padding: 120px 48px;
  background: var(--light);
  position: relative;
}
.de-process-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
.de-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.de-steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 20px);
  opacity: .4;
  z-index: 0;
}
.de-step-item {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.de-step-dot {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: border-color .3s, background .3s, transform .3s var(--ease-out-expo);
}
.de-step-item:hover .de-step-dot { border-color: var(--accent); background: var(--accent); transform: scale(1.12); }
.de-step-item:hover .de-step-dot svg { color: var(--white); }
.de-step-dot svg { width: 24px; height: 24px; color: var(--accent); transition: color .3s; }
.de-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 10px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.de-step-title {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.de-step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   INSTRUCTORS
═══════════════════════════════════════════════════ */
.de-instructors-section {
  padding: 120px 48px;
  background: var(--paper);
}
.de-instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.de-instructor-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
}
.de-instructor-img {
  width: 100%; height: 320px;
  background: var(--light);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.de-instructor-avatar {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.de-instructor-card:nth-child(1) .de-instructor-avatar { background: linear-gradient(160deg, #1a1d27 0%, #e8320a22 100%); }
.de-instructor-card:nth-child(2) .de-instructor-avatar { background: linear-gradient(160deg, #1a1d27 0%, #f5a62322 100%); }
.de-instructor-card:nth-child(3) .de-instructor-avatar { background: linear-gradient(160deg, #1a1d27 0%, #3a3aff22 100%); }
.de-instructor-card:nth-child(4) .de-instructor-avatar { background: linear-gradient(160deg, #1a1d27 0%, #e8320a22 100%); }
.de-instructor-info { padding: 28px 28px 32px; }
.de-instructor-name {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--ink);
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.de-instructor-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.de-instructor-meta { display: flex; gap: 20px; }
.de-instructor-meta-item { display: flex; flex-direction: column; gap: 2px; }
.de-meta-val {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
}
.de-meta-key {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.de-instructor-overlay {
  position: absolute;
  inset: 0;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .5s var(--ease-in-out);
  z-index: 2;
}
.de-instructor-card:hover .de-instructor-overlay { transform: translateY(0); }
.de-instructor-overlay-name {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--white);
  letter-spacing: 1px;
}
.de-instructor-overlay-quote {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  text-align: center;
  max-width: 240px;
  line-height: 1.6;
  font-weight: 300;
}
.de-instructor-overlay-link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  text-decoration: none;
  margin-top: 8px;
  cursor: none;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.de-testimonials-section {
  padding: 120px 48px;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.de-testimonials-section .de-section-title { color: var(--white); }
.de-testimonials-section .de-section-title em { color: var(--accent); }
.de-testimonials-track {
  display: flex;
  gap: 24px;
  margin-top: 64px;
  animation: testimonialSlide 30s linear infinite;
  width: max-content;
}
.de-testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonialSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.de-testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 40px;
  position: relative;
  transition: background .3s;
}
.de-testimonial-card:hover { background: rgba(232,50,10,.08); }
.de-quote-mark {
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--accent);
  line-height: .6;
  margin-bottom: 16px;
  opacity: .4;
}
.de-testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  font-weight: 300;
  margin-bottom: 28px;
}
.de-testimonial-author { display: flex; align-items: center; gap: 14px; }
.de-author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.de-author-name {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--white);
  letter-spacing: .5px;
}
.de-author-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.de-stars { display: flex; gap: 3px; margin-bottom: 16px;color: var(--accent) !important; }
.de-star { color: var(--accent2); font-size: 14px; }

/* ═══════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════ */
.de-cta-section {
  padding: 100px 48px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.de-cta-section::before {
  content: 'DRIVE';
  position: absolute;
  font-family: var(--f-display);
  font-size: 320px;
  color: rgba(255,255,255,.07);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.de-cta-title {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 96px);
  color: var(--white);
  line-height: .92;
  letter-spacing: 1px;
  margin-bottom: 24px;
  position: relative;
}
.de-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  margin-bottom: 48px;
  position: relative;
}
.de-btn-white {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 20px 48px;
  background: var(--white);
  color: var(--accent);
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .3s var(--ease-out-expo), background .2s;
}
.de-btn-white:hover { transform: scale(1.04); background: var(--ink); color: var(--white); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.de-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 48px 36px;
}
.de-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.de-footer-logo {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
}
.de-footer-logo span { color: var(--accent); }
.de-footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.35);
  font-weight: 300;
  margin-bottom: 28px;
}
.de-footer-col-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.de-footer-links { display: flex; flex-direction: column; gap: 10px; }
.de-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.de-footer-links a:hover { color: var(--white); padding-left: 6px; }
.de-footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.de-footer-copy {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.25);
}
.de-social-links { display: flex; gap: 12px; }
.de-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: 14px;
  transition: border-color .2s, color .2s, background .2s;
  cursor: none;
}
.de-social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,50,10,.08); }

/* ═══════════════════════════════════════════════════
   PACKAGES PAGE
═══════════════════════════════════════════════════ */
.de-packages-section {
  padding: 100px 48px;
  background: var(--paper);
}
.de-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.de-pkg-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out-expo), box-shadow .4s;
}
.de-pkg-card.featured {
  background: var(--ink);
  border-color: transparent;
}
.de-pkg-card.featured .de-pkg-name,
.de-pkg-card.featured .de-pkg-price,
.de-pkg-card.featured .de-pkg-period,
.de-pkg-card.featured .de-pkg-feature { color: var(--white); }
.de-pkg-card.featured .de-pkg-desc { color: rgba(255,255,255,.5); }
.de-pkg-card.featured .de-pkg-divider { background: rgba(255,255,255,.08); }
.de-pkg-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%);
}
.de-pkg-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.de-pkg-name {
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--ink);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.de-pkg-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.de-pkg-divider {
  height: 1px;
  background: rgba(0,0,0,.07);
  margin-bottom: 28px;
}
.de-pkg-price {
  font-family: var(--f-display);
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
}
.de-pkg-period {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 32px;
}
.de-pkg-features { margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.de-pkg-feature {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.de-pkg-feature::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(232,50,10,.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.de-pkg-card.featured .de-pkg-feature::before { background: rgba(255,255,255,.1); }
.de-pkg-cta {
  display: block;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background .2s, transform .2s;
}
.de-pkg-cta:hover { background: var(--ink); transform: translateY(-2px); }
.de-pkg-card.featured .de-pkg-cta { background: var(--accent); }
.de-pkg-card.featured .de-pkg-cta:hover { background: var(--accent2); }

/* Comparison table */
.de-comparison-section {
  padding: 80px 48px 120px;
  background: var(--light);
}
.de-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 60px;
}
.de-comparison-table th {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--ink);
  padding: 20px 24px;
  text-align: left;
  background: var(--white);
  border-bottom: 2px solid var(--accent);
}
.de-comparison-table th:first-child { font-size: 14px; font-family: var(--f-mono); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.de-comparison-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: var(--white);
}
.de-comparison-table tr:nth-child(even) td { background: var(--light); }
.de-comparison-table td:first-child { color: var(--ink); font-weight: 500; }
.de-check { color: var(--accent); font-size: 18px; }
.de-dash { color: rgba(0,0,0,.2); }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */
.de-about-story {
  padding: 100px 48px;
  background: var(--paper);
}
.de-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.de-about-text .de-section-label { margin-bottom: 20px; }
.de-about-text h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: .95;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 28px;
}
.de-about-text h2 em { font-style: normal; color: var(--accent); }
.de-about-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}
.de-about-visual {
  position: relative;
}
.de-about-visual-inner {
  background: var(--ink);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.de-about-visual-inner svg { width: 80%; opacity: .8; }
.de-about-visual::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--accent);
  z-index: -1;
}
.de-about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 60px;
}
.de-about-stat {
  padding: 40px 24px;
  border-right: 1px solid rgba(0,0,0,.08);
}
.de-about-stat:last-child { border-right: none; }
.de-about-stat-num {
  font-family: var(--f-display);
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.de-about-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.de-values-section {
  padding: 100px 48px;
  background: var(--ink);
}
.de-values-section .de-section-title { color: var(--white); }
.de-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.de-value-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 48px 40px;
  transition: background .3s;
}
.de-value-card:hover { background: rgba(232,50,10,.07); }
.de-value-icon {
  width: 52px; height: 52px;
  background: rgba(232,50,10,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.de-value-icon svg { width: 24px; height: 24px; color: var(--accent); }
.de-value-title {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.de-value-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
}

.de-team-section {
  padding: 100px 48px;
  background: var(--paper);
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.de-contact-section {
  padding: 100px 48px;
  background: var(--paper);
}
.de-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 60px;
}
.de-contact-info h3 {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 20px;
}
.de-contact-info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}
.de-contact-items { display: flex; flex-direction: column; gap: 28px; }
.de-contact-item { display: flex; gap: 20px; align-items: flex-start; }
.de-contact-icon {
  width: 48px; height: 48px;
  background: rgba(232,50,10,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.de-contact-icon svg { width: 20px; height: 20px; color: var(--accent); }
.de-contact-item-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.de-contact-item-val {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.de-contact-item-val a { color: var(--ink); text-decoration: none; transition: color .2s; }
.de-contact-item-val a:hover { color: var(--accent); }

/* Contact Form */
.de-contact-form { background: var(--white); padding: 48px; border: 1px solid rgba(0,0,0,.06); }
.de-contact-form h3 {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 32px;
}
.de-form-group { margin-bottom: 24px; }
.de-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.de-form-group label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.de-form-group input,
.de-form-group select,
.de-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--light);
  border: 1px solid transparent;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
  outline: none;
  appearance: none;
}
.de-form-group input:focus,
.de-form-group select:focus,
.de-form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.de-form-group textarea { height: 140px; resize: vertical; }
.de-form-submit {
  width: 100%;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background .2s, transform .2s;
}
.de-form-submit:hover { background: var(--ink); transform: translateY(-2px); }

/* Map embed */
.de-map-section {
  height: 420px;
  background: var(--mid);
  position: relative;
  overflow: hidden;
}
.de-map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(80%) contrast(1.1); }
.de-map-overlay {
  position: absolute;
  bottom: 32px; left: 48px;
  background: var(--ink);
  padding: 20px 28px;
  border-left: 3px solid var(--accent);
}
.de-map-overlay-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.de-map-overlay-addr {
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.de-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
.de-reveal.de-visible { opacity: 1; transform: translateY(0); }
.de-reveal-delay-1 { transition-delay: .1s; }
.de-reveal-delay-2 { transition-delay: .2s; }
.de-reveal-delay-3 { transition-delay: .3s; }
.de-reveal-delay-4 { transition-delay: .4s; }
.de-count-up { display: inline-block; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .de-nav { padding: 16px 24px; }
  .de-nav-links { display: none; }
  .de-hamburger { display: flex; }
  .de-hero-car { width: 340px; right: 20px; }
  .de-hero-content { max-width: 100%; }
  .de-courses-grid,
  .de-packages-grid { grid-template-columns: 1fr 1fr; }
  .de-why-inner { grid-template-columns: 1fr; gap: 60px; }
  .de-why-left { padding-right: 0; }
  .de-steps-grid { grid-template-columns: 1fr 1fr; gap: 48px 20px; }
  .de-steps-grid::before { display: none; }
  .de-instructors-grid { grid-template-columns: 1fr 1fr; }
  .de-footer-grid { grid-template-columns: 1fr 1fr; }
  .de-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .de-about-stats-row { grid-template-columns: 1fr 1fr; }
  .de-contact-grid { grid-template-columns: 1fr; }
  .de-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .de-hero, .de-courses-section, .de-why-section, .de-process-section,
  .de-instructors-section, .de-testimonials-section, .de-cta-section { padding: 80px 24px; }
  .de-nav { padding: 14px 24px; }
  .de-hero-car { display: none; }
  .de-hero-stats { flex-direction: column; }
  .de-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .de-courses-grid,
  .de-packages-grid,
  .de-steps-grid,
  .de-instructors-grid,
  .de-values-grid { grid-template-columns: 1fr; }
  .de-footer-grid { grid-template-columns: 1fr; }
  .de-arc-ring, .de-speedometer-bg { display: none; }
  .de-form-row { grid-template-columns: 1fr; }
  .de-about-stats-row { grid-template-columns: 1fr 1fr; }
  .de-contact-form { padding: 28px 20px; }
  .de-packages-section, .de-comparison-section,
  .de-about-story, .de-values-section, .de-team-section,
  .de-contact-section { padding: 80px 24px; }
  .de-page-hero { padding: 130px 24px 60px; }
}
.page-template-portfolio .gg-gridder-list-47 {
    width: 32% !important;
}