/* ============================================================
   SKM DRIVING SCHOOL — Design System
   Body     : White #FFFFFF
   Header   : White #FFFFFF
   Accent   : Yellow #FEE100
   Display  : Barlow Condensed
   Body     : Plus Jakarta Sans

   FONT WEIGHT SYSTEM:
   Hero title          → --fw-hero:    700  (confident, not heavy)
   Section titles      → --fw-section: 500  (refined, editorial)
   Sub-headings        → --fw-heading: 600  (mid weight)
   Body / UI text      → --fw-body:    400
   Labels / Buttons    → --fw-strong:  700
   Stats / Numbers     → --fw-number:  900  (impact for numerics only)
   Badges / Chips      → --fw-badge:   800
============================================================ */

/* ── :root Tokens ── */
:root {

  /* ── Font Families ── */
  --font-display: 'Barlow Condensed', 'Arial Black', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* ── Font Sizes — Fluid Type Scale ── */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* ── Font Weights — Named Semantic Tokens ── */
  --fw-body: 400;
  --fw-medium: 500;
  --fw-heading: 600;
  --fw-strong: 700;
  --fw-hero: 700;
  --fw-badge: 800;
  --fw-number: 900;

  /* ── Line Heights ── */
  --lh-tight: 1.04;
  --lh-heading: 1.12;
  --lh-base: 1.6;
  --lh-relaxed: 1.75;

  /* ── Letter Spacing ── */
  --ls-tight: -0.02em;
  --ls-normal: 0em;
  --ls-wide: 0.03em;
  --ls-wider: 0.08em;
  --ls-widest: 0.12em;

  /* ── 4px Spacing ── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Yellow Palette ── */
  --yellow: #FEE100;
  --yellow-hover: #FED800;
  --yellow-active: #FCCF00;
  --yellow-nav: #e6bf00;
  --yellow-nav-hover: #e7bd00;
  --yellow-light: #FFFDE6;
  --yellow-pale: #FFF8B0;
  --yellow-border: rgba(254, 225, 0, 0.35);
  --yellow-glow: rgba(254, 225, 0, 0.30);
  --yellow-shadow: rgba(254, 225, 0, 0.40);

  /* ── Neutrals ── */
  --black: #111111;
  --grey-900: #1C1C1C;
  --grey-800: #2E2E2E;
  --grey-700: #444444;
  --grey-600: #585858;
  --grey-500: #777777;
  --grey-400: #9A9A9A;
  --grey-300: #C2C2C2;
  --grey-200: #E0E0E0;
  --grey-100: #F4F4F4;
  --grey-50: #FAFAFA;
  --white: #FFFFFF;

  /* ── Semantic Roles ── */
  --color-bg: var(--white);
  --color-surface: var(--grey-50);
  --color-surface-2: var(--grey-100);
  --color-text: var(--black);
  --color-text-muted: var(--grey-600);
  --color-text-faint: var(--grey-400);
  --color-text-inverse: var(--white);
  --color-border: rgba(0, 0, 0, 0.08);
  --color-divider: rgba(0, 0, 0, 0.06);

  /* ── Radius ── */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* ── Transitions ── */
  --ease: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: 320ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Layout ── */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1300px;
  --header-h: 90px;
}

/* ============================================================
   BASE RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: var(--color-text);
  background-color: var(--white);
  line-height: var(--lh-base);
  min-height: 100dvh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: var(--lh-heading);
}

p,
li,
figcaption {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  text-wrap: pretty;
  max-width: 72ch;
}

a,
button,
[role="button"] {
  transition:
    color var(--ease), background var(--ease),
    border-color var(--ease), box-shadow var(--ease),
    transform var(--ease), opacity var(--ease);
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--yellow-glow);
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PAGE UTILITIES
============================================================ */
.section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
  padding-inline: var(--space-6);
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.container--default {
  max-width: var(--content-default);
  margin-inline: auto;
}

.container--narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
}

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--yellow-nav);
  margin-bottom: var(--space-3);
}

/* ── Section Title — 500 weight for all sections ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 1.8vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-title .highlight {
  color: var(--yellow-nav);
}

/* ── Section Desc ── */
.section-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: var(--lh-relaxed);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--accent {
  border-top: 3px solid var(--yellow);
}

/* ── Icon Badge ── */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.icon-badge i {
  width: 22px;
  height: 22px;
  color: var(--yellow-nav);
}

/* ── Global Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 2px 10px var(--yellow-glow);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 18px var(--yellow-shadow);
  transform: translateY(-1px);
}

.btn-primary:active {
  background: var(--yellow-active);
  transform: translateY(0);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--grey-800);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow-nav);
  border: 1.5px solid var(--yellow-border);
}

.btn-outline:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--yellow-nav-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}

.btn-ghost:hover {
  color: var(--color-text);
  border-color: var(--grey-300);
  background: var(--grey-50);
}

/* ── Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.tag--yellow {
  background: var(--yellow-light);
  color: var(--yellow-nav);
  border: 1px solid var(--yellow-border);
}

.tag--dark {
  background: var(--black);
  color: var(--yellow);
}

.tag--grey {
  background: var(--grey-100);
  color: var(--grey-600);
  border: 1px solid var(--color-border);
}

hr.divider {
  height: 1px;
  background: var(--color-divider);
  border: none;
  margin-block: var(--space-8);
}

.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-4);
  background: var(--yellow);
  color: var(--black);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 9999;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.ann-bar {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.ann-bar i {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: var(--white);
  border-bottom: 1.5px solid var(--grey-200);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
}

.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-8);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ── Nav ── */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  flex-wrap: nowrap;
}

.nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--grey-600);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  white-space: nowrap;
  letter-spacing: var(--ls-normal);
  text-decoration: none;
  background: transparent;
}

.nav-link:hover {
  color: var(--yellow-nav-hover);
}

.nav-link.active {
  color: var(--yellow-nav);
  font-weight: var(--fw-heading);
}

/* ── Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ── Call Us ── */
.btn-call {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  cursor: pointer;
}

.call-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--yellow-glow);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.call-icon-wrap i {
  width: 16px;
  height: 16px;
  color: var(--black);
}

.btn-call:hover .call-icon-wrap {
  background: var(--yellow-hover);
  box-shadow: 0 4px 14px var(--yellow-glow);
  transform: scale(1.06);
}

.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.call-hint {
  font-size: 10px;
  font-weight: var(--fw-heading);
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.call-num {
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  color: var(--black);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}

.btn-call:hover .call-num {
  color: var(--yellow-nav);
}

/* ── Book Now ── */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 2px 10px var(--yellow-glow);
  white-space: nowrap;
  text-decoration: none;
}

.btn-book:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 18px var(--yellow-shadow);
  transform: translateY(-1px);
}

.btn-book:active {
  background: var(--yellow-active);
  transform: translateY(0);
  box-shadow: 0 1px 6px var(--yellow-glow);
}

.btn-book i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Hamburger ── */
.btn-menu {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  color: var(--grey-700);
  background: var(--grey-100);
  flex-shrink: 0;
  border: none;
}

.btn-menu i {
  width: 20px;
  height: 20px;
}

.btn-menu:hover {
  background: var(--yellow-light);
  color: var(--yellow-nav);
}

/* ============================================================
   MOBILE NAV DRAWER
============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
}

.mobile-nav.open {
  display: flex;
}

.mob-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mob-panel {
  position: relative;
  z-index: 1;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--white);
  border-right: 2.5px solid var(--yellow);
  padding: var(--space-5) var(--space-5) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.mob-logo {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  background: var(--grey-100);
  flex-shrink: 0;
}

.mob-close i {
  width: 17px;
  height: 17px;
}

.mob-close:hover {
  color: var(--yellow-nav);
  background: var(--yellow-light);
}

.mob-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mob-links a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--grey-700);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.mob-links a:hover {
  color: var(--yellow-nav-hover);
  background: var(--yellow-light);
}

.mob-links a.active {
  color: var(--yellow-nav);
  background: var(--yellow-pale);
  font-weight: var(--fw-heading);
}

.mob-links a i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-400);
}

.mob-links a:hover i,
.mob-links a.active i {
  color: var(--yellow-hover);
}

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.btn-book.mob-book {
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
}

.btn-call-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: 1.5px solid var(--yellow-border);
  border-radius: var(--radius-lg);
  color: var(--yellow-nav);
  font-size: var(--text-sm);
  font-weight: var(--fw-heading);
  background: var(--yellow-light);
  text-decoration: none;
}

.btn-call-mob i {
  width: 15px;
  height: 15px;
  color: var(--yellow-hover);
}

.btn-call-mob:hover {
  background: var(--yellow-pale);
  border-color: var(--yellow-hover);
  color: var(--yellow-nav-hover);
}
/* ============================================================
   HEADER RESPONSIVE - FINAL FIX
============================================================ */

/* ---------- Large tablets / small desktops ---------- */
@media (max-width: 1140px) {
  .header-inner {
    padding-inline: var(--space-5);
    gap: var(--space-5);
  }

  .logo-img {
    height: 72px;
    max-width: 180px;
  }

  .header-nav ul {
    gap: 0;
  }

  .nav-link {
    padding: var(--space-2) clamp(0.4rem, 0.5vw, var(--space-3));
    font-size: clamp(0.78rem, 0.5rem + 0.6vw, 0.9rem);
  }

  .header-actions {
    gap: var(--space-3);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book {
    padding: var(--space-2) var(--space-4);
  }
}

/* ---------- Tablet / mobile ---------- */
@media (max-width: 960px) {
  :root {
    --header-h: 75px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding-inline: 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
  }

  .header-nav,
  .btn-call {
    display: none !important;
  }

  .header-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    z-index: 2;
  }

  .logo-img {
    height: 65px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 2;
  }

  .btn-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    background: var(--grey-100);
    color: var(--grey-700);
    border: none;
    z-index: 3;
  }

  .btn-menu i,
  .btn-menu svg {
    width: 18px;
    height: 18px;
  }

  /* Header icon-only booking button */
  .header-actions > .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--yellow-glow);
  }

  .header-actions > .btn-book .book-lbl {
    display: none;
  }

  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* Drawer CTA button */
  .btn-book.mob-book {
    width: 100%;
    min-height: 48px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    margin: 0;
    border-radius: 14px;
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 6px 18px rgba(254, 225, 0, 0.28);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book.mob-book .book-lbl {
    display: inline;
  }

  .btn-book.mob-book i,
  .btn-book.mob-book svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    padding-inline: 0.95rem;
  }

  .btn-menu {
    left: 0.95rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 11px;
  }

  .header-actions > .btn-book {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 11px;
  }

  .btn-menu i,
  .btn-menu svg,
  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 17px;
    height: 17px;
  }

  .logo-img {
    height: 60px;
    max-width: 126px;
  }

  .mob-panel {
    width: min(300px, 88vw);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book.mob-book {
    min-height: 46px;
    padding: 0.85rem 1rem;
    border-radius: 13px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    padding-inline: 0.8rem;
  }

  .btn-menu {
    left: 0.8rem;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 10px;
  }

  .header-actions > .btn-book {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 10px;
  }

  .btn-menu i,
  .btn-menu svg,
  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 16px;
    height: 16px;
  }

  .logo-img {
    height: 60px;
    max-width: 112px;
  }

  .mob-panel {
    width: min(280px, 90vw);
    padding: var(--space-4) var(--space-4) var(--space-6);
  }

  .mob-logo {
    height: 60px;
    max-width: 115px;
  }

  .btn-book.mob-book {
    min-height: 44px;
    padding: 0.82rem 0.95rem;
    border-radius: 12px;
  }
}


.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.lead-popup.show {
  display: flex;
}

.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.64);
  backdrop-filter: blur(8px);
}

.lead-popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.lead-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.lead-popup-close:hover {
  transform: scale(1.06);
}

.lead-popup-form-panel {
  padding: 1rem 1rem 0.95rem;
  background: #ffffff;
}

.lead-popup-header {
  margin-bottom: 0.8rem;
  padding-right: 2.2rem;
}

.lead-popup-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(254, 225, 0, 0.18);
  border: 1px solid rgba(254, 225, 0, 0.22);
  color: #111111;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lead-popup-title {
  margin: 0.45rem 0 0.22rem;
  font-family: var(--font-display, "Barlow Condensed", sans-serif);
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  line-height: 0.96;
  font-weight: 700;
  color: #111111;
}

.lead-popup-title span {
  color: #fee100;
}

.lead-popup-subtitle {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.6);
  max-width: 38ch;
}

.lead-popup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.lead-field-full {
  grid-column: 1 / -1;
}

.lead-field label {
  font-size: 0.77rem;
  font-weight: 700;
  color: #111111;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fafafa;
  color: #111111;
  border-radius: 11px;
  padding: 0.66rem 0.88rem;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-field textarea {
  resize: vertical;
  min-height: 82px;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: #fee100;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(254, 225, 0, 0.12);
}

.lead-error {
  min-height: 0.75rem;
  font-size: 0.7rem;
  color: #c0392b;
}

.lead-field.invalid input,
.lead-field.invalid select,
.lead-field.invalid textarea {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}

.lead-submit {
  grid-column: 1 / -1;
  min-height: 46px;
  margin-top: 0.05rem;
}

.lead-popup-side {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.78)),
    url("../images/driving-school/Driving-school-image-2.png") center center / cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
}

.lead-popup-side-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(254, 225, 0, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
}

.lead-popup-side-content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding-top: 0.1rem;
}

.lead-popup-side-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(254, 225, 0, 0.14);
  border: 1px solid rgba(254, 225, 0, 0.22);
  color: #fee100;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lead-popup-side h3 {
  margin: 0.7rem 0 0.28rem;
  font-family: var(--font-display, "Barlow Condensed", sans-serif);
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1;
  color: #ffffff;
}

.lead-popup-side p {
  margin: 0 0 0.75rem;
  font-size: 0.83rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  max-width: 26ch;
}

.lead-popup-points {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-popup-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
}

.lead-popup-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fee100;
}
@media (max-width: 760px) {
  .lead-popup {
    padding: 10px;
    align-items: center;
    justify-content: center;
  }

  .lead-popup-card {
    width: min(100%, 360px);
    height: 88vh;
    height: min(600px, 88dvh);
    min-height: 0;
    max-height: 88dvh;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }

  .lead-popup-form-panel {
    order: 1;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 18px 16px 16px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .lead-popup-header {
    margin-bottom: 12px;
    padding-right: 42px;
  }

  .lead-popup-pill {
    min-height: 24px;
    padding: 0.2rem 0.58rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .lead-popup-title {
    margin: 0.35rem 0 0.15rem;
    font-size: 1.45rem;
    line-height: 0.98;
  }

  .lead-popup-subtitle {
    font-size: 0.76rem;
    line-height: 1.35;
    max-width: 100%;
  }

  .lead-popup-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-field {
    gap: 4px;
  }

  .lead-field-full {
    grid-column: auto;
  }

  .lead-field label {
    font-size: 0.72rem;
  }

  .lead-field input,
  .lead-field select,
  .lead-field textarea {
    padding: 10px 12px;
    font-size: 0.86rem;
    border-radius: 10px;
  }

  .lead-field textarea {
    min-height: 76px;
  }

  .lead-error {
    min-height: 0.72rem;
    font-size: 0.64rem;
  }

  .lead-submit {
    grid-column: auto;
    min-height: 42px;
    margin-top: 2px;
  }

  .lead-popup-side {
    order: 2;
    position: relative;
    flex: 0 0 52px;
    height: 52px;
    min-height: 52px;
    width: 100%;
    padding: 8px 12px;
    align-items: center;
    justify-content: flex-start;
    background-position: center;
    background-size: cover;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lead-popup-side-overlay {
    position: absolute;
    inset: 0;
  }

  .lead-popup-side-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .lead-popup-side-tag {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0.18rem 0.54rem;
    border-radius: 999px;
    background: rgba(254, 225, 0, 0.14);
    border: 1px solid rgba(254, 225, 0, 0.22);
    color: #fee100;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
  }

  .lead-popup-side h3,
  .lead-popup-side p,
  .lead-popup-points {
    display: none;
  }

  .lead-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    z-index: 20;
  }

  .lead-popup-close i {
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .lead-popup {
    padding: 8px;
  }

  .lead-popup-card {
    width: min(100%, 340px);
    height: 82vh;
    height: min(560px, 82dvh);
    min-height: 0;
    max-height: 82dvh;
    border-radius: 18px;
  }

  .lead-popup-form-panel {
    padding: 16px 14px 14px;
  }

  .lead-popup-header {
    margin-bottom: 10px;
    padding-right: 38px;
  }

  .lead-popup-pill {
    min-height: 22px;
    padding: 0.16rem 0.5rem;
    font-size: 0.54rem;
  }

  .lead-popup-title {
    font-size: 1.28rem;
  }

  .lead-popup-subtitle {
    font-size: 0.7rem;
    line-height: 1.28;
  }

  .lead-field label {
    font-size: 0.68rem;
  }

  .lead-field input,
  .lead-field select,
  .lead-field textarea {
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .lead-field textarea {
    min-height: 70px;
  }

  .lead-submit {
    min-height: 40px;
  }

  .lead-popup-side {
    height: 48px;
    min-height: 48px;
    flex-basis: 48px;
    padding: 7px 10px;
  }

  .lead-popup-side-tag {
    min-height: 20px;
    padding: 0.14rem 0.46rem;
    font-size: 0.52rem;
  }

  .lead-popup-close {
    width: 30px;
    height: 30px;
    top: 8px;
    right: 8px;
    z-index: 20;
  }

  .lead-popup-close i {
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .lead-popup {
    padding: 6px;
  }

  .lead-popup-card {
    width: min(100%, 312px);
    height: 80vh;
    height: min(520px, 80dvh);
    min-height: 0;
    max-height: 80dvh;
    border-radius: 16px;
  }

  .lead-popup-form-panel {
    padding: 10px 10px 10px;
  }

  .lead-popup-header {
    padding-right: 34px;
  }

  .lead-popup-title {
    font-size: 1.16rem;
  }

  .lead-popup-subtitle {
    font-size: 0.66rem;
  }

  .lead-field input,
  .lead-field select,
  .lead-field textarea {
    padding: 4px 10px;
    font-size: 0.78rem;
    border-radius: 9px;
  }

  .lead-field textarea {
    min-height: 66px;
  }

  .lead-submit {
    min-height: 38px;
  }

  .lead-popup-side {
    height: 44px;
    min-height: 44px;
    flex-basis: 44px;
    padding: 6px 9px;
  }

  .lead-popup-side-tag {
    min-height: 18px;
    padding: 0.12rem 0.4rem;
    font-size: 0.48rem;
  }

  .lead-popup-close {
    width: 28px;
    height: 28px;
    top: 7px;
    right: 7px;
    z-index: 20;
  }

  .lead-popup-close i {
    font-size: 0.64rem;
  }
}
/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 44px - 90px);
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-bg-accent {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 460px;
  height: 460px;
  background: var(--yellow);
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  opacity: 0.96;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 5vh, 4.5rem);
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2vh, 1.5rem);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--grey-600);
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(254, 225, 0, 0.28);
}

/* Hero h1 — fw-hero: 700 */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.5rem + 2.6vw, 4.4rem);
  font-weight: var(--fw-hero);
  line-height: var(--lh-tight);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  border-radius: 3px;
  opacity: 0.4;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.78rem + 0.4vw, 1rem);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  max-width: 44ch;
  line-height: var(--lh-relaxed);
  margin: 0;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
  font-weight: var(--fw-number);
  color: var(--black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-heading);
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(0, 0, 0, 0.10);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hero-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-strong);
  line-height: 1;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(254, 225, 0, 0.38);
  transition:
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-book i,
.hero-btn-book svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-btn-book:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  box-shadow: 0 6px 24px rgba(254, 225, 0, 0.48);
  transform: translateY(-2px);
}

.hero-btn-book:active {
  background: var(--yellow-active);
  border-color: var(--yellow-active);
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(254, 225, 0, 0.28);
}

.hero-btn-courses {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-strong);
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition:
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-courses i,
.hero-btn-courses svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-btn-courses:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hero-btn-courses:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: var(--fw-heading);
  color: var(--grey-600);
  letter-spacing: var(--ls-wide);
}

.hero-trust-item i,
.hero-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* ── Right Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 0;
}

.hero-car-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-car-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.20));
  animation: heroFloat 4.5s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-car-shadow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(254, 225, 0, 0.50) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: heroGlow 4.5s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 0.50;
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    opacity: 0.72;
    transform: translateX(-50%) scaleX(0.86);
  }
}

.hero-badge {
  position: absolute;
  top: 16%;
  left: -16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 108px;
  padding: 0.75rem 1.1rem;
  background: var(--yellow);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(254, 225, 0, 0.42), 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: badgeBob 3.2s ease-in-out infinite;
}

@keyframes badgeBob {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0px);
  }

  50% {
    transform: rotate(-2deg) translateY(-6px);
  }
}

.hero-badge-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: rgba(0, 0, 0, 0.55);
}

.hero-badge-price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.8vw, 2.1rem);
  font-weight: var(--fw-number);
  color: var(--black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.hero-badge-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--fw-heading);
  color: rgba(0, 0, 0, 0.50);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.hero-chip {
  position: absolute;
  bottom: 12%;
  right: -8px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-heading);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  animation: chipBob 3.8s ease-in-out infinite;
}

@keyframes chipBob {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.hero-chip i,
.hero-chip svg {
  width: 13px;
  height: 13px;
  color: var(--yellow);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  transition: opacity 300ms ease;
}

.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--yellow) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

/* ── Hero Responsive ── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding-inline: 2rem;
    gap: 1.5rem;
  }

  .hero-bg-accent {
    width: 340px;
    height: 340px;
    top: -50px;
    right: -50px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 1.2rem + 2.4vw, 3.6rem);
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-inline: 1.25rem;
    padding-block: 3rem 2rem;
    gap: 1.75rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    order: 1;
    gap: 1.1rem;
  }

  .hero-visual {
    order: 2;
    height: 52vw;
    min-height: 210px;
    max-height: 310px;
  }

  .hero-car-wrap {
    max-width: 88%;
  }

  .hero-label,
  .hero-stats,
  .hero-ctas,
  .hero-trust {
    justify-content: center;
  }

  .hero-desc {
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .hero-bg-accent {
    width: 200px;
    height: 200px;
    top: -20px;
    right: -20px;
    opacity: 0.80;
  }

  .hero-badge {
    top: 8px;
    left: 8px;
  }

  .hero-chip {
    bottom: 8px;
    right: 8px;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    width: 100%;
    gap: 1rem;
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-btn-book,
  .hero-btn-courses {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: 1rem;
  }
}
/* ============================================================
   ABOUT US SECTION
============================================================ */
.about {
  background: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ── LEFT VISUAL ───────────────────────── */
.about-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-img-main {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-secondary {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 3;
  width: 240px;
  height: 175px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  border: 6px solid var(--white);
  background: var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-exp-badge {
  position: absolute;
  top: 26px;
  right: 8px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.15rem;
  background: var(--yellow);
  border-radius: 14px;
  box-shadow:
    0 10px 24px rgba(254, 225, 0, 0.34),
    0 8px 18px rgba(0, 0, 0, 0.08);
}

.about-exp-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: var(--fw-badge);
  color: var(--black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.about-exp-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-strong);
  color: rgba(0, 0, 0, 0.66);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  line-height: 1.35;
}

.about-deco-bar {
  position: absolute;
  top: 54px;
  left: -14px;
  z-index: 1;
  width: 6px;
  height: 255px;
  background: var(--yellow);
  border-radius: 999px;
  opacity: 0.9;
}

/* ── RIGHT CONTENT ─────────────────────── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--grey-600);
}

.about-label-line {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 1.8vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 13ch;
}

.about-highlight {
  color: var(--yellow-nav);
  position: relative;
  display: inline-block;
}

.about-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  opacity: 0.4;
}

.about-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 56ch;
  margin: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.6rem;
}

.about-hl {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.about-hl i,
.about-hl svg {
  width: 18px;
  height: 18px;
  color: var(--yellow-nav);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-hl div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-hl strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-strong);
  color: var(--black);
  line-height: 1.2;
}

.about-hl span {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: var(--fw-body);
  color: var(--grey-500);
  line-height: 1.45;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 1.75rem;
  background: var(--black);
  border-radius: 16px;
  width: fit-content;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
  font-weight: var(--fw-number);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-heading);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  white-space: nowrap;
}

.about-cta {
  display: flex;
  align-items: center;
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-strong);
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(254, 225, 0, 0.35);
  transition:
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-yellow i,
.btn-yellow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-yellow:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 225, 0, 0.42);
}

.btn-yellow:hover i,
.btn-yellow:hover svg {
  transform: translateX(4px);
}

.btn-yellow:active {
  background: var(--yellow-active);
  border-color: var(--yellow-active);
  transform: translateY(0);
}

/* ── About Responsive ───────────────────── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-inline: 2rem;
  }

  .about-visual {
    min-height: 560px;
  }

  .about-img-main {
    width: min(100%, 420px);
    height: 470px;
  }

  .about-img-secondary {
    width: 220px;
    height: 160px;
    bottom: 18px;
  }

  .about-title {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    padding-inline: 1.25rem;
    text-align: center;
  }

  .about-visual {
    min-height: auto;
    max-width: 500px;
    margin-inline: auto;
    display: grid;
    gap: 1rem;
  }

  .about-img-main {
    width: 100%;
    height: 360px;
    margin-inline: auto;
  }

  .about-img-secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    height: 185px;
    margin-left: auto;
    border-width: 5px;
  }

  .about-exp-badge {
    top: 14px;
    right: 14px;
    padding: 0.72rem 1rem;
  }

  .about-exp-num {
    font-size: 1.9rem;
  }

  .about-deco-bar {
    display: none;
  }

  .about-content {
    align-items: center;
  }

  .about-label {
    justify-content: center;
  }

  .about-title {
    max-width: 16ch;
  }

  .about-desc {
    text-align: center;
    max-width: 100%;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    text-align: left;
    width: 100%;
    max-width: 360px;
  }

  .about-stats {
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-img-main {
    height: 300px;
    border-radius: 20px;
  }

  .about-img-secondary {
    width: 78%;
    height: 160px;
    border-radius: 16px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .about-highlights {
    max-width: 100%;
  }

  .about-exp-badge {
    right: 10px;
  }
}
/* ============================================================
   WHY CHOOSE US SECTION
============================================================ */
.why {
  background: var(--grey-50);
  overflow: hidden;
}

/* ── Header ── */
.why-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Bento Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

/* ── Base Card ── */
.why-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── Large card spans 2 columns ── */
.why-card--large {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* Yellow variant */
.why-card--yellow {
  background: var(--yellow);
  border-color: var(--yellow-hover);
}

.why-card--yellow .why-card-title {
  color: var(--black);
}

.why-card--yellow .why-card-desc {
  color: rgba(0, 0, 0, 0.65);
}

.why-card--yellow .why-card-icon {
  background: rgba(0, 0, 0, 0.10);
}

.why-card--yellow .why-card-icon i {
  color: var(--black);
}

/* Dark variant */
.why-card--dark {
  background: var(--black);
  border-color: var(--grey-800);
}

.why-card--dark:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

/* ── Card Icon ── */
.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-icon i {
  width: 22px;
  height: 22px;
  color: var(--yellow-nav);
}

/* ── Card Text ── */
.why-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-normal);
  margin: 0;
}

.why-card-title--inv {
  color: var(--white);
}

.why-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  margin: 0;
}

.why-card-desc--inv {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Inline Tag ── */
.why-card-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: auto;
  padding-top: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-heading);
  color: var(--yellow-nav);
  letter-spacing: var(--ls-wide);
}

.why-card-tag i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Big Stat Number (dark cards) ── */
.why-big-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 2.5vw, 4.5rem);
  font-weight: var(--fw-number);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  margin-top: auto;
}

.why-big-pct {
  font-size: 0.55em;
  font-weight: var(--fw-badge);
  vertical-align: super;
  color: var(--yellow);
}

/* ── Large card stat pill ── */
.why-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--space-4) var(--space-5);
  background: rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  min-width: 100px;
  align-self: center;
}

.why-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: var(--fw-number);
  color: var(--black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.why-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-strong);
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  white-space: nowrap;
  text-align: center;
}

/* ── Bottom CTA ── */
.why-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

/* ============================================================
   WHY — RESPONSIVE
============================================================ */

/* Tablet: 2 columns, large card full width */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card--large {
    grid-column: span 2;
  }
}

/* Mobile: single column */
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .why-card--large {
    grid-column: span 1;
    flex-direction: column;
  }

  .why-card-stat {
    align-self: flex-start;
    flex-direction: row;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
  }

  .why-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-cta .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   DRIVING SERVICES SECTION
============================================================ */
.services {
  background: var(--white);
}

/* ── Header ── */
.services-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── 3-column grid ── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

/* ── Base card ── */
.srv-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease), transform var(--ease);
  height: 100%;
}

.srv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── Featured card (Driving Training) ── */
.srv-card--featured {
  border: 2px solid var(--yellow);
  background: var(--yellow-light);
  position: relative;
}

.srv-card--featured:hover {
  box-shadow: 0 8px 32px var(--yellow-glow);
}

/* ── Card top row ── */
.srv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

/* ── Icon wrap ── */
.srv-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-icon-wrap i {
  width: 24px;
  height: 24px;
  color: var(--yellow-nav);
}

.srv-card--featured .srv-icon-wrap {
  background: var(--yellow);
  border-color: var(--yellow-hover);
}

.srv-card--featured .srv-icon-wrap i {
  color: var(--black);
}

/* ── Badges ── */
.srv-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-badge);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 3px var(--space-3);
  border-radius: var(--radius-full);
}

.srv-badge--yellow {
  background: var(--yellow);
  color: var(--black);
  border: 1px solid var(--yellow-hover);
}

.srv-badge--grey {
  background: var(--grey-100);
  color: var(--grey-600);
  border: 1px solid var(--color-border);
}

.srv-badge--dark {
  background: var(--black);
  color: var(--yellow);
}

/* ── Card content ── */
.srv-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.srv-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-normal);
  margin: 0;
}

.srv-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  margin: 0;
}

/* ── Included classes ── */
.srv-classes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.srv-classes-label,
.srv-packs-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--grey-500);
}

.srv-classes-label i,
.srv-packs-label i {
  width: 13px;
  height: 13px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

.srv-class-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
}

.srv-class-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-700);
  line-height: 1.5;
  max-width: 100%;
}

.srv-class-list li i {
  width: 15px;
  height: 15px;
  color: var(--yellow-nav);
  flex-shrink: 0;
  margin-top: 2px;
}

.srv-class-list li strong {
  font-weight: var(--fw-strong);
  color: var(--black);
}

/* ── Touch class packs ── */
.srv-packs {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.srv-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.srv-pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: var(--space-3) var(--space-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.srv-pack:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
}

.srv-pack--active {
  border-color: var(--yellow);
  background: var(--yellow-light);
  box-shadow: 0 2px 12px var(--yellow-glow);
}

.srv-pack-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
  font-weight: var(--fw-number);
  color: var(--black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.srv-pack--active .srv-pack-num {
  color: var(--yellow-nav);
}

.srv-pack-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-heading);
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.srv-pack-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--fw-strong);
  color: var(--grey-400);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.srv-pack--active .srv-pack-tag {
  color: var(--yellow-nav);
}

/* ── RTO Services mini grid ── */
.srv-rto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.srv-rto-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-heading);
  color: var(--grey-700);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.srv-rto-item:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-border);
  color: var(--black);
}

.srv-rto-item i {
  width: 14px;
  height: 14px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* ── CTA buttons ── */
.srv-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-lg);
  text-decoration: none;
  margin-top: auto;
  transition: background var(--ease), border-color var(--ease),
    box-shadow var(--ease), transform var(--ease), color var(--ease);
}

.srv-cta i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.srv-cta:hover i {
  transform: translateX(4px);
}

.srv-cta--primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.srv-cta--primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  box-shadow: 0 6px 22px var(--yellow-shadow);
  transform: translateY(-1px);
}

.srv-cta--primary:active {
  background: var(--yellow-active);
  transform: translateY(0);
}

.srv-cta--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--color-border);
}

.srv-cta--outline:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--yellow-nav);
}

/* ── Bottom strip ── */
.srv-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: var(--space-5) var(--space-8);
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.srv-bottom-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--grey-700);
}

.srv-bottom-text i {
  width: 20px;
  height: 20px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES — RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .srv-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .srv-card--featured {
    grid-column: span 1;
  }

  .srv-rto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4) var(--space-5);
  }

  .srv-bottom .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   HOW IT WORKS SECTION
============================================================ */
.hiw {
  background: var(--grey-50);
}

/* ── Header ── */
.hiw-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Steps grid ── */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}

/* ── Single step card ── */
.hiw-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}

/* ── Step top row: number + connector line ── */
.hiw-step-top {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Step number circle */
.hiw-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-number);
  color: var(--grey-400);
  letter-spacing: var(--ls-tight);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color var(--ease), color var(--ease);
}

.hiw-step:hover .hiw-step-num {
  border-color: var(--yellow);
  color: var(--yellow-nav);
}

/* Yellow last step number */
.hiw-step-num--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

/* Connector line between steps */
.hiw-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--grey-200) 0%, var(--grey-200) 100%);
  background-size: 8px 2px;
  background-image: repeating-linear-gradient(to right,
      var(--grey-300) 0px,
      var(--grey-300) 4px,
      transparent 4px,
      transparent 10px);
  position: relative;
  top: 0;
}

/* ── Step icon ── */
.hiw-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.hiw-icon-wrap i {
  width: 22px;
  height: 22px;
  color: var(--grey-500);
  transition: color var(--ease);
}

.hiw-step:hover .hiw-icon-wrap {
  background: var(--yellow-light);
  border-color: var(--yellow-border);
  box-shadow: 0 4px 14px var(--yellow-glow);
}

.hiw-step:hover .hiw-icon-wrap i {
  color: var(--yellow-nav);
}

/* Yellow icon (last step) */
.hiw-icon-wrap--yellow {
  background: var(--yellow);
  border-color: var(--yellow-hover);
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.hiw-icon-wrap--yellow i {
  color: var(--black) !important;
}

.hiw-step:hover .hiw-icon-wrap--yellow {
  background: var(--yellow-hover);
  box-shadow: 0 6px 22px var(--yellow-shadow);
}

/* ── Step body ── */
.hiw-step-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.hiw-step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-normal);
  margin: 0;
}

.hiw-step-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  margin: 0;
}

/* ── Step bottom tag ── */
.hiw-step-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-heading);
  color: var(--grey-500);
  letter-spacing: var(--ls-wide);
  margin-top: auto;
}

.hiw-step-tag i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--grey-400);
}

/* Yellow tag (last step) */
.hiw-step-tag--yellow {
  color: var(--yellow-nav);
  font-weight: var(--fw-strong);
}

.hiw-step-tag--yellow i {
  color: var(--yellow-nav);
}

/* ── Bottom CTA banner ── */
.hiw-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: var(--space-6) var(--space-8);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.hiw-banner-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
  min-width: 240px;
}

.hiw-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
  /* solid yellow — no opacity mixing */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.hiw-banner-icon i {
  width: 22px;
  height: 22px;
  color: var(--black);
  /* black icon on yellow */
}

.hiw-banner-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hiw-banner-text strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--white);
  line-height: 1.2;
}

.hiw-banner-text span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: rgba(255, 255, 255, 0.50);
  max-width: 100%;
}

.hiw-banner-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Contact Us ghost button — visible on dark background */
.hiw-banner-ctas .btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.80);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.hiw-banner-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

/* ============================================================
   HOW IT WORKS — RESPONSIVE
============================================================ */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-8);
  }

  /* Hide connectors on last of each row */
  .hiw-step:nth-child(2) .hiw-connector,
  .hiw-step:nth-child(4) .hiw-connector {
    display: none;
  }
}

/* Mobile: single column */
@media (max-width: 640px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  /* Hide all connectors on mobile */
  .hiw-connector {
    display: none;
  }

  .hiw-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-5);
    gap: var(--space-4);
  }

  .hiw-banner-ctas {
    width: 100%;
    flex-direction: column;
  }

  .hiw-banner-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   TESTIMONIALS — BASE
============================================================ */
.testi {
  background: var(--white);
}

.testi-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-8);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.testi-tabs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px;
  background: var(--grey-100);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.testi-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 0;
  background: transparent;
  padding: var(--space-3) var(--space-4);
  border-radius: calc(var(--radius-xl) - 4px);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--grey-600);
  cursor: pointer;
  transition: all var(--ease);
}

.testi-tab i {
  width: 18px;
  height: 18px;
}

.testi-tab--active {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

.testi-tab-count {
  margin-left: var(--space-1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--yellow-soft);
  color: var(--yellow-nav);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
}

.testi-arrows {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
}

.testi-arrow i {
  width: 18px;
  height: 18px;
  color: var(--black);
}

.testi-arrow:hover {
  background: var(--yellow-soft);
  border-color: var(--yellow);
}


/* summary */
.testi-summary {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-6);
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
  transition: opacity 300ms ease;
}

.testi-summary-score {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.testi-big-score {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 2vw, 3.5rem);
  font-weight: var(--fw-number);
  color: var(--black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.testi-summary-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.testi-summary-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testi-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star-icon {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  color: #d8d8d8;
}

.star-icon.full {
  color: #f5c518;
}

.star-icon.half::before {
  content: "★";
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  color: #f5c518;
}

.testi-summary-label {
  font-size: var(--text-sm);
  color: var(--grey-600);
  font-weight: var(--fw-medium);
}

.testi-summary-divider {
  width: 1px;
  height: 56px;
  background: var(--color-border);
  flex-shrink: 0;
}

.testi-summary-tags {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.testi-stag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--grey-700);
  font-weight: var(--fw-medium);
}

.testi-stag i {
  width: 16px;
  height: 16px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

.testi-swiper-outer {
  position: relative;
  padding-bottom: 42px;
}

.testi-swiper {
  overflow: hidden;
}

.testi-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testi-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.testi-card-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.testi-card-stars .star-icon {
  font-size: 18px;
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--grey-500);
  font-weight: var(--fw-semibold);
}

.testi-verified i {
  width: 16px;
  height: 16px;
  color: var(--grey-500);
}

.testi-quote {
  margin: 0;
  padding-left: var(--space-4);
  border-left: 3px solid var(--yellow);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--grey-700);
}

.testi-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testi-author-info strong {
  font-size: var(--text-base);
  color: var(--black);
}

.testi-author-info span {
  font-size: var(--text-sm);
  color: var(--grey-500);
}

.testi-course-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  background: var(--yellow);
  color: var(--black);
  flex-shrink: 0;
  white-space: nowrap;
}

.testi-course-tag--grey {
  background: var(--grey-100);
  color: var(--grey-600);
  border: 1px solid var(--color-border);
}

/* ── Swiper dots ── */
.testi-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--grey-300);
  opacity: 1;
  border: none;
  cursor: pointer;
  transition: background var(--ease), width var(--ease), transform var(--ease);
  display: inline-block;
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ── Footer strip ── */
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.testi-footer-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--grey-700);
}

.testi-footer-text i {
  width: 20px;
  height: 20px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .testi-controls {
    gap: var(--space-3);
  }

  .testi-tabs {
    width: 100%;
  }

  .testi-tab {
    flex: 1;
    justify-content: center;
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }

  .testi-tab-count {
    display: none;
  }

  .testi-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .testi-summary-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 640px) {
  .testi-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .testi-card {
    padding: var(--space-4);
  }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq {
  background: var(--grey-50);
}

.faq-header {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--yellow-border);
  box-shadow: 0 8px 24px var(--yellow-glow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--space-5);
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-strong);
  color: var(--black);
  line-height: 1.5;
}

.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.faq-icon i {
  width: 17px;
  height: 17px;
  color: var(--grey-600);
  transition: color var(--ease), transform var(--ease);
}

.faq-item.active .faq-icon {
  background: var(--yellow);
  border-color: var(--yellow);
}

.faq-item.active .faq-icon i {
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 var(--space-5) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 640px) {
  .faq-question {
    padding: var(--space-4);
  }

  .faq-answer p {
    padding: 0 var(--space-4) var(--space-4);
  }

  .faq-question span:first-child {
    font-size: var(--text-sm);
  }

  .faq-icon {
    width: 34px;
    height: 34px;
  }
}
/* ──────────────────────────────────────────────────────────
   CENTERED CTA – full updated version
────────────────────────────────────────────────────────── */
.cta-centered {
  position: relative;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.76) 36%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 50% 18%, rgba(254, 225, 0, 0.12) 0%, rgba(254, 225, 0, 0) 42%),
    url("../images/cta-banner.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.cta-centered__container {
  max-width: var(--content-wide, 1300px);
  margin-inline: auto;
  padding-inline: var(--space-5, 1.25rem);
  position: relative;
  z-index: 2;
}

.cta-centered__inner {
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5, 1.25rem);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

/* badge */
.cta-centered__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2, 0.5rem);
  background: rgba(254, 225, 0, 0.10);
  border: 1px solid rgba(254, 225, 0, 0.16);
  padding: 0.42rem 1rem;
  border-radius: var(--radius-full, 9999px);
  font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
  font-size: var(--text-xs, 0.75rem);
  font-weight: var(--fw-strong, 700);
  letter-spacing: var(--ls-wider, 0.08em);
  text-transform: uppercase;
  color: var(--yellow, #FEE100);
  backdrop-filter: blur(6px);
}

.cta-centered__badge i,
.cta-centered__badge svg {
  width: 13px;
  height: 13px;
  color: var(--yellow, #FEE100);
  flex-shrink: 0;
}

/* title */
.cta-centered__title {
  font-family: var(--font-display, "Barlow Condensed", sans-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-medium, 500);
  color: var(--white, #ffffff);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.cta-centered__title .highlight {
  color: var(--yellow, #FEE100);
}

/* description */
.cta-centered__desc {
  font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
  font-size: var(--text-base, 1rem);
  font-weight: var(--fw-body, 400);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}

/* stats row */
.cta-centered__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6, 1.5rem);
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin-block: var(--space-2, 0.5rem);
  padding: 1rem 1.8rem;
  border-radius: var(--radius-xl, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 110px;
}

.cta-stat__num {
  font-family: var(--font-display, "Barlow Condensed", sans-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: var(--fw-number, 900);
  color: var(--yellow, #FEE100);
  line-height: 1;
  letter-spacing: -0.01em;
}

.cta-stat__label {
  font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
  font-size: 10px;
  font-weight: var(--fw-heading, 600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.cta-stat__divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
}

/* buttons */
.cta-centered__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4, 1rem);
  flex-wrap: wrap;
  margin-block: var(--space-2, 0.5rem);
}

.cta-centered__buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-lg, 0.75rem);
  font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
  font-size: 0.95rem;
  font-weight: var(--fw-strong, 700);
  text-decoration: none;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-centered__buttons .btn i,
.cta-centered__buttons .btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.cta-btn--primary {
  background: var(--yellow, #FEE100);
  color: var(--black, #111111);
  border: 1px solid var(--yellow, #FEE100);
  box-shadow: 0 6px 18px rgba(254, 225, 0, 0.28);
}

.cta-btn--primary:hover {
  background: var(--yellow-hover, #FED800);
  border-color: var(--yellow-hover, #FED800);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(254, 225, 0, 0.36);
}

.cta-btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white, #ffffff);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.cta-btn--outline:hover {
  background: rgba(254, 225, 0, 0.12);
  color: var(--yellow, #FEE100);
  border-color: var(--yellow, #FEE100);
  transform: translateY(-2px);
}

/* trust row */
.cta-centered__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5, 1.25rem);
  flex-wrap: wrap;
  margin-top: var(--space-2, 0.5rem);
}

.cta-centered__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
  font-size: var(--text-xs, 0.75rem);
  font-weight: var(--fw-heading, 600);
  color: rgba(255, 255, 255, 0.72);
}

.cta-centered__trust i,
.cta-centered__trust svg {
  width: 14px;
  height: 14px;
  color: var(--yellow, #FEE100);
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 768px) {
  .cta-centered__inner {
    padding-block: 4rem;
  }

  .cta-centered__title {
    max-width: 100%;
  }

  .cta-centered__stats {
    gap: 1rem;
    padding: 0.9rem 1rem;
    width: 100%;
    justify-content: center;
  }

  .cta-stat__divider {
    display: none;
  }

  .cta-stat {
    min-width: 90px;
  }

  .cta-centered__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-centered__buttons .btn {
    width: 100%;
  }

  .cta-centered__trust {
    gap: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .cta-centered__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    text-align: center;
  }

  .cta-stat {
    min-width: 0;
  }

  .cta-centered__desc {
    font-size: 0.95rem;
  }
}

/* ============================================================
   FLOATING ACTION BUTTONS
   WhatsApp (bottom-left) + Back to Top (bottom-right)
============================================================ */

/* Shared base */
.fab-whatsapp,
.fab-backtotop {
  position: fixed;
  bottom: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 220ms ease;
}

/* ---- WhatsApp ---- */
.fab-whatsapp {
  left: 1.5rem;
  background: #25D366;
  color: #ffffff;
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.fab-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.30);
}

/* Tooltip */
.fab-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #111111;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--fw-strong);
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.fab-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #111111;
}

.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
}

/* ---- Back to Top ---- */
.fab-backtotop {
  right: 1.5rem;
  background: var(--yellow);
  color: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.fab-backtotop svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fab-backtotop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-backtotop:hover {
  background: var(--yellow-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px var(--yellow-shadow);
}

.fab-backtotop:active {
  background: var(--yellow-active);
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px var(--yellow-glow);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .fab-whatsapp,
  .fab-backtotop {
    bottom: 1.25rem;
    width: 48px;
    height: 48px;
  }

  .fab-whatsapp {
    left: 1.25rem;
  }

  .fab-backtotop {
    right: 1.25rem;
  }

  .fab-whatsapp svg {
    width: 23px;
    height: 23px;
  }

  .fab-backtotop svg {
    width: 18px;
    height: 18px;
  }

  .fab-tooltip {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   FOOTER WITH FLOATING CTA
════════════════════════════════════════════ */
.site-footer {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  z-index: 1;
}

/* floating CTA */
.footer-cta-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: -95px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  align-items: center;
  background: #fee100;
  border-radius: 22px;
  padding: 1.6rem 2rem;
  box-shadow:
    0 20px 55px rgba(254, 225, 0, 0.26),
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.footer-cta-left {
  min-width: 0;
}

.footer-cta-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.footer-cta-title {
  margin: 0;
  font-size: clamp(1.7rem, 1.1rem + 1.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #111111;
}

.footer-cta-text {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.60);
  max-width: 60ch;
}

.footer-cta-right {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-cta-actions .btn {
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.28s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, box-shadow, background-color, border-color, color;
}

.footer-cta-actions .btn-primary {
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.footer-cta-actions .btn-primary:hover {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.footer-cta-phone {
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.footer-cta-phone:hover {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.footer-cta-btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* footer body */
.site-footer-main {
  position: relative;
  background: #050505;
  padding-top: clamp(8rem, 11vw, 10rem);
  padding-bottom: 1.4rem;
  overflow: hidden;
}

.site-footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(254, 225, 0, 0.18), transparent 35%);
  pointer-events: none;
}

.site-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr 1fr;
  gap: clamp(1.8rem, 3vw, 3.4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-title {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 1.2rem + 0.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-brand-desc {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  max-width: 34ch;
}

.footer-col-title {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: 0.6rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fee100;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #fee100;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #fee100;
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.28s ease;
}

.footer-socials a:hover {
  background: #fee100;
  border-color: #fee100;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(254, 225, 0, 0.20);
}

.footer-socials a i {
  font-size: 17px;
  line-height: 1;
}

.footer-contact-list {
  display: grid;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(254, 225, 0, 0.07);
  border: 1px solid rgba(254, 225, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fee100;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item small {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.55;
}

.footer-contact-item a:hover {
  color: #fee100;
}

.site-footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.8rem;
  margin-top: 0.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom-text {
  margin: 0;
  padding-inline: 1rem;
  max-width: 900px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom-text a {
  color: #fee100;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-bottom-text a:hover {
  color: #fff06a;
}
/* responsive */
@media (max-width: 1100px) {
  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta-title,
  .footer-cta-text {
    max-width: 100%;
  }

  .footer-cta-right,
  .footer-cta-actions {
    justify-content: center;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-cta-wrap {
    margin-bottom: -68px;
  }

  .footer-cta {
    border-radius: 18px;
    padding: 1.25rem;
  }

  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

  .site-footer-main {
    padding-top: 7.6rem;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-cta-wrap {
    margin-bottom: -58px;
  }

  .footer-cta-title {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .footer-cta-text,
  .footer-links a,
  .footer-contact-item a,
  .footer-contact-item span,
  .footer-brand-desc {
    font-size: 0.96rem;
  }

  .footer-col-title {
    font-size: 0.92rem;
  }

  .site-footer-main {
    padding-top: 7rem;
  }
}


@media (max-width: 768px) {
  .site-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-text {
    font-size: 0.92rem;
  }
}