/* ==========================================================================
   Anand Motor Training Centre — design language
   ========================================================================== */

:root {
  --orange: #ff7a1e;
  --orange-deep: #e85f00;
  --orange-light: #ffb020;
  --black: #0d0d0d;
  --charcoal: #232326;
  --white: #ffffff;
  --gray-50: #f7f7f8;
  --gray-100: #f0f0f1;
  --gray-200: #e2e2e4;
  --gray-400: #b3b3b8;
  --gray-600: #6f6f75;
  --text: #14141a;
  --text-muted: #6a6a70;
  --container: 1240px;
  --font-display: "Archivo", "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 18px;
}
.eyebrow--center { text-align: center; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--orange); color: var(--black); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--white); color: var(--black); }

.btn-outline { border-color: var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline--dark { border-color: var(--black); color: var(--black); }
.btn-outline--dark:hover { background: var(--black); color: var(--white); }

.btn-small { padding: 12px 20px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--black);
}
.link-arrow svg { width: 18px; height: 18px; color: var(--orange); transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------------- Navbar ---------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  height: 38px;
  width: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}
.logo-accent { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }

.navbar-right { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); margin: 0 auto; transition: all .25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--gray-200);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--gray-100); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero-bg-ring {
  position: absolute;
  top: -160px;
  right: -220px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gray-100), transparent 70%);
  z-index: 0;
}
.hero-dot {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(255,122,30,0.45);
  z-index: 3;
}
.hero-dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 100%;
  width: 2px; height: 46px;
  background: linear-gradient(var(--orange), transparent);
  transform: translateX(-50%);
}
.dot-top { top: 40px; right: 30%; }
.dot-bottom { bottom: 60px; left: 6%; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
  min-height: 480px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}

.hero-copy {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 34px;
}
.hero-copy strong { color: var(--text); font-weight: 800; }

.hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.ring-graphic {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 26px solid var(--gray-100);
  border-top-color: var(--orange);
  border-right-color: var(--orange-light);
  transform: rotate(-35deg);
}
.hero-car {
  position: relative;
  width: 108%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(20,20,20,0.18));
}

.hero-contact {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--black);
}
.hero-phone svg { width: 20px; height: 20px; color: var(--orange); }
.hero-area { font-size: 13px; color: var(--text-muted); font-weight: 600; letter-spacing: .02em; }

/* ---------------- Stats ---------------- */
.stats { position: relative; padding: 90px 0 100px; }
.stats-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange);
  margin: 0 auto 46px;
  box-shadow: 0 8px 18px rgba(255,122,30,0.4);
  position: relative;
}
.stats-dot::before {
  content: "";
  position: absolute; left: 50%; bottom: 100%;
  width: 2px; height: 44px;
  background: linear-gradient(transparent, var(--orange));
  transform: translateX(-50%);
}
.stats-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 44px;
}
.stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 34px;
  border-left: 1px solid var(--gray-200);
}
.stat:first-child { padding-left: 0; border-left: none; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.stat-caption { display: block; font-size: 14px; color: var(--text-muted); font-weight: 600; }

/* ---------------- Category / Training ---------------- */
.category { position: relative; }
.category-block {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.giant-letter {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(220px, 30vw, 420px);
  line-height: 1;
  color: var(--gray-100);
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.giant-letter--right { left: auto; right: 4%; }

.category-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.category-grid--reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.category-grid--reverse .category-copy { direction: ltr; }

.category-copy { max-width: 440px; }
.category-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.category-desc { font-size: 16px; line-height: 1.65; color: var(--text-muted); margin: 0 0 26px; }
.category-meta { display: flex; gap: 30px; margin-bottom: 26px; }
.category-meta > div { display: flex; flex-direction: column; }
.meta-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 700; margin-bottom: 6px; }
.meta-value { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--black); }

.category-vehicle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(48vw, 720px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 26px 34px rgba(20,20,20,0.16));
}
.vehicle-right { right: -4%; }
.vehicle-left { left: -4%; }

.category-block--p { background: var(--gray-50); }

/* ---------------- Large vehicle statements ---------------- */
.statement {
  position: relative;
  padding: 130px 0 220px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.statement--alt { background: var(--white); color: var(--text); }
.statement-inner { position: relative; z-index: 2; }
.statement-inner--right { display: flex; justify-content: flex-end; }
.statement-copy { max-width: 520px; }
.statement--alt .statement-copy { margin-left: auto; text-align: right; }
.statement-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.statement-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.statement--alt .statement-title .outline { -webkit-text-stroke-color: var(--black); }
.statement-desc { font-size: 17px; line-height: 1.7; opacity: 0.78; max-width: 460px; }
.statement--alt .statement-copy .statement-desc { margin-left: auto; }

.statement-vehicle {
  position: absolute;
  bottom: -40px;
  right: -4%;
  width: auto;
  max-width: min(60vw, 900px);
  height: auto;
  max-height: 560px;
  z-index: 1;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35));
}
.statement-vehicle--left { right: auto; left: -4%; }
.statement-vehicle.vehicle-flip { transform: scaleX(-1); }

/* ---------------- Mobile showcase ---------------- */
.mobile-showcase { padding: 120px 0; background: var(--gray-50); overflow: hidden; }
.mobile-showcase-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.mobile-huge {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--gray-200);
}

.phone-stack { position: relative; display: flex; align-items: flex-end; gap: 30px; justify-content: center; }

.phone-frame {
  background: var(--black);
  border-radius: 46px;
  padding: 14px;
  box-shadow: 0 40px 60px rgba(0,0,0,0.22);
  position: relative;
}
.phone-frame--lg { width: 260px; height: 540px; }
.phone-frame--sm { width: 200px; height: 420px; margin-bottom: -20px; }
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 20px;
  background: var(--black);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-screen--light { background: var(--gray-50); }

.mini-nav { display: flex; align-items: center; justify-content: space-between; padding: 26px 16px 10px; }
.mini-logo { font-family: var(--font-display); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.mini-logo b { color: var(--orange); }
.mini-burger { display: flex; flex-direction: column; gap: 3px; }
.mini-burger i { width: 14px; height: 2px; background: var(--black); display: block; }

.mini-hero { position: relative; padding: 10px 16px; flex: 1; }
.mini-eyebrow { font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--orange-deep); margin: 0 0 8px; }
.mini-title { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 900; font-size: 20px; line-height: 1.15; text-transform: uppercase; margin: 0; max-width: 150px; }
.mini-title span { -webkit-text-stroke: 1px var(--black); color: transparent; }
.mini-ring {
  position: absolute; right: 14px; top: 168px;
  width: 84px; height: 84px; border-radius: 50%;
  border: 10px solid var(--gray-100); border-top-color: var(--orange);
  z-index: 0;
}
.mini-btn {
  position: absolute; bottom: 18px; left: 16px;
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  padding: 10px 14px; border-radius: 999px;
}

.mini-stats { padding: 30px 18px; }
.mini-stats-label { font-family: var(--font-display); font-size: 11px; font-weight: 800; text-transform: uppercase; margin: 0 0 18px; }
.mini-stat { display: flex; flex-direction: column; padding: 12px 0; border-top: 1px solid var(--gray-200); }
.mini-stat b { font-family: var(--font-display); font-size: 16px; font-weight: 900; }
.mini-stat span { font-size: 10px; color: var(--text-muted); font-weight: 600; }
.mini-book {
  margin-top: 18px;
  background: var(--orange);
  color: var(--black);
  text-align: center;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  padding: 12px; border-radius: 999px;
}

/* ---------------- About ---------------- */
.about { padding: 120px 0; position: relative; }
.about-inner { max-width: 760px; position: relative; }
.about-line {
  position: absolute; left: -32px; top: 0;
  width: 2px; height: 100%;
  background: linear-gradient(var(--orange), var(--gray-200));
}
.about-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.about-copy { font-size: 17px; line-height: 1.75; color: var(--text-muted); }
.about-copy strong { color: var(--text); }

/* ---------------- Why us ---------------- */
.why-us { padding: 100px 0 130px; background: var(--gray-50); }
.why-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  margin: 0 0 60px;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-item {
  padding: 0 30px;
  border-left: 1px solid var(--gray-200);
}
.why-item:first-child { border-left: none; padding-left: 0; }
.why-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 20px;
}
.why-item h3 { font-family: var(--font-display); font-size: 19px; font-weight: 800; text-transform: uppercase; margin: 0 0 10px; }
.why-item p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ---------------- CTA / Booking ---------------- */
.cta {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--black);
  overflow: hidden;
}
.cta-dot {
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.cta-copy { font-size: 17px; font-weight: 600; margin: 0 0 36px; }
.cta-ctas { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 64px; }

.booking-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  text-align: left;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--text);
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
.form-note { font-size: 12.5px; color: var(--text-muted); margin: 16px 0 0; text-align: center; }

/* ---------------- Contact ---------------- */
.contact { padding: 120px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.contact-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  margin: 0 0 34px;
}
.contact-list { list-style: none; margin: 0; padding: 0; max-width: 480px; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 16px;
  font-weight: 700;
}
.contact-list li:last-child { border-bottom: 1px solid var(--gray-200); }
.contact-label { color: var(--text-muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.contact-list a:hover { color: var(--orange-deep); }

.social-links { display: flex; align-items: center; gap: 10px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.social-links a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.social-links svg { width: 16px; height: 16px; }
.social-links--footer a { border-color: rgba(255,255,255,0.25); color: var(--white); }

.contact-mark {
  position: relative;
  width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.giant-letter--mark {
  position: static;
  transform: none;
  font-size: 220px;
  color: var(--gray-100);
}
.ring-graphic.ring-graphic--small {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 220px; height: 220px;
  border: 16px solid var(--gray-100);
  border-top-color: var(--orange);
}

/* ---------------- Footer ---------------- */
.site-footer { background: var(--black); color: var(--white); padding: 60px 0 30px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.logo--footer .logo-text { color: var(--white); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; font-weight: 600; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 13px;
  opacity: 0.75;
}
.footer-credit { display: flex; align-items: center; gap: 8px; }
.footer-credit img { border-radius: 6px; }
.footer-credit a { font-weight: 700; opacity: 1; }
.footer-credit a:hover { color: var(--orange); }

/* ---------------- Back to top ---------------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 90;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); color: var(--black); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 320px; }
  .ring-graphic { width: 320px; height: 320px; }
  .category-grid, .category-grid--reverse { grid-template-columns: 1fr; direction: ltr; }
  .category-vehicle { position: relative; top: auto; transform: none; width: 100%; margin-top: 40px; }
  .vehicle-right, .vehicle-left { right: auto; left: auto; }
  .giant-letter { font-size: 200px; opacity: .7; }
  .statement-vehicle { max-width: 78vw; max-height: 420px; }
  .why-list { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .why-item:nth-child(3) { border-left: none; padding-left: 0; }
  .mobile-showcase-inner { grid-template-columns: 1fr; text-align: center; }
  .phone-stack { margin-top: 40px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-mark { margin: 0 auto; }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .navbar-right .btn-small { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { height: 68px; }

  .hero { padding: 56px 0 70px; }
  .hero-bg-ring { width: 420px; height: 420px; top: -120px; right: -160px; }
  .hero-title { font-size: clamp(34px, 11vw, 54px); }
  .hero-copy { font-size: 15.5px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .hero-contact { flex-direction: column; align-items: flex-start; }
  .hero-dot { display: none; }

  .stats-row { flex-direction: column; gap: 26px; }
  .stat { border-left: none; padding: 0; border-top: 1px solid var(--gray-200); padding-top: 20px; }
  .stat:first-child { border-top: none; padding-top: 0; }

  .category-block { padding: 64px 0; }
  .category-title { font-size: clamp(30px, 9vw, 44px); }
  .giant-letter { font-size: 140px; top: 30px; transform: none; }

  .statement { padding: 80px 0 260px; }
  .statement--alt .statement-copy, .statement--alt .statement-copy .statement-desc { text-align: left; margin-left: 0; }
  .statement-inner--right { justify-content: flex-start; }
  .statement-vehicle { max-width: 88vw; max-height: 300px; bottom: -20px; }

  .category-block--p .vehicle-left { display: none; }

  .mobile-showcase { padding: 80px 0; }
  .phone-stack { flex-direction: column; align-items: center; gap: 60px; }
  .phone-frame--sm { margin-bottom: 0; }

  .about { padding: 80px 0; }
  .about-line { left: -20px; }

  .why-list { grid-template-columns: 1fr; }
  .why-item { border-left: none !important; padding-left: 0 !important; border-top: 1px solid var(--gray-200); padding-top: 30px; }
  .why-item:first-child { border-top: none; padding-top: 0; }

  .cta { padding: 80px 0 70px; }
  .cta-ctas .btn { width: 100%; justify-content: center; }
  .cta-ctas { flex-direction: column; }
  .booking-form { padding: 26px 20px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }

  .contact { padding: 80px 0; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
