/* ==========================================================================
   AutomatiQ Câmbios - Clean Executive Theme (Minimalist & Pure Mobile Responsive)
   Colors: #FFFFFF (White), #F8FAFC (Soft Light), #0511F2 (Electric Blue), #030A8C (Deep Navy), #0F172A (Slate)
   ========================================================================== */

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

:root {
  --color-brand-blue: #0511F2;
  --color-brand-blue-hover: #030DBE;
  --color-brand-navy: #030A8C;
  --color-brand-navy-dark: #020659;
  --color-brand-light-blue: #EFF6FF;
  
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F8FAFC;
  --color-bg-subtle: #F1F5F9;
  --color-bg-card: #FFFFFF;
  
  --color-text-main: #0F172A;
  --color-text-body: #334155;
  --color-text-muted: #64748B;
  --color-text-subtle: #94A3B8;
  
  --color-border: #E2E8F0;
  --color-border-hover: #CBD5E1;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 12px 32px -4px rgba(3, 10, 140, 0.08);

  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --container-max: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg-white);
  color: var(--color-text-body);
  line-height: 1.6;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  letter-spacing: -0.025em;
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   1. MINIMALIST CORPORATE HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
  padding: 0.4rem 0;

}

.nav-link:hover, .nav-link.active {
  color: var(--color-brand-blue);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-corporate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary-blue {
  background: var(--color-brand-blue);
  color: #FFFFFF;
}

.btn-primary-blue:hover {
  background: var(--color-brand-blue-hover);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: #FFFFFF;
  color: var(--color-brand-navy);
  border: 1.5px solid var(--color-brand-navy);
}

.btn-outline-navy:hover {
  background: var(--color-brand-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-light-bg {
  background: var(--color-bg-subtle);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-light-bg:hover {
  background: var(--color-border);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  color: var(--color-text-main);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #FFFFFF;
  z-index: 998;
  padding: 2rem 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  border-top: 1px solid var(--color-border);
}

.mobile-drawer.active {
  display: flex;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  text-decoration: none;
  display: block;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ==========================================================================
   2. CLEAN MINIMALIST HERO (NO BADGES)
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-light) 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1.12;
  color: var(--color-brand-navy);
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--color-brand-blue);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  height: 380px;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   3. INTERACTIVE TRANSMISSIONS TAB SECTION
   ========================================================================== */
.tech-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
}

.tech-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.8rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.tech-tab-btn {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.tech-tab-btn.active {
  background: var(--color-brand-blue);
  color: #FFFFFF;
  border-color: var(--color-brand-blue);
}

.tech-tab-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.tab-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--color-border);
}

.tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-title {
  font-size: 1.8rem;
  color: var(--color-brand-navy);
  margin-bottom: 0.85rem;
}

.tab-desc {
  font-size: 1.02rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.tab-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.tab-spec-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-brand-navy);
}

.tab-check-icon {
  color: var(--color-brand-blue);
  font-weight: 900;
}

/* ==========================================================================
   4. SECTIONS & GRIDS
   ========================================================================== */
.section-padding {
  padding: 5rem 0;
}

.section-padding-alt {
  padding: 5rem 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-title-dark {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  color: var(--color-brand-navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-desc-muted {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* DIAGNOSTIC WIZARD */
.wizard-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.wizard-option input {
  display: none;
}

.wizard-option label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  font-weight: 600;
  color: var(--color-text-main);
  user-select: none;
  font-size: 0.92rem;
}

.wizard-option input:checked + label {
  background: var(--color-brand-light-blue);
  border-color: var(--color-brand-blue);
  color: var(--color-brand-blue);
}

.wiz-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-brand-blue);
  background: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-blue);
  flex-shrink: 0;
}

.wizard-summary {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wiz-res-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  margin-bottom: 0.2rem;
}

.wiz-res-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-p {
  font-size: 1.02rem;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.diff-item {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.diff-icon-dot {
  width: 8px;
  height: 8px;
  background: var(--color-brand-blue);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.diff-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  line-height: 1.35;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card-clean:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
}

.service-icon-box-light {
  width: 48px;
  height: 48px;
  background: var(--color-brand-light-blue);
  border: 1px solid var(--color-border-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  margin-bottom: 1.4rem;
}

.service-title-clean {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-desc-clean {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

/* FREE TOWING BANNER */
.towing-banner-clean {
  background: linear-gradient(135deg, var(--color-brand-navy) 0%, var(--color-brand-blue) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.towing-title-white {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.towing-subtitle-white {
  font-size: 1.15rem;
  color: #DBEAFE;
  font-weight: 600;
}

.towing-note-light {
  font-size: 0.85rem;
  color: #BFDBFE;
  margin-top: 0.4rem;
}

/* BRANDS SECTION */
.brands-section-light {
  padding: 3rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee-container {
  overflow: hidden;
  display: flex;
  gap: 2.5rem;
  position: relative;
  user-select: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: marqueeScroll 26s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-img-clean {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: var(--transition-fast);
}

.brand-img-clean:hover {
  filter: grayscale(0%) opacity(1);
}

/* WORKSHOP GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 230px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-card-caption {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
  color: #FFFFFF;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.05);
}

.gallery-card:hover .gallery-card-caption {
  opacity: 1;
}

/* REVIEWS SECTION */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.review-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-gold {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.review-text-clean {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.review-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-brand-navy);
}

.review-car {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* CONTACT & MAP */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card-light {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.c-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.c-info-icon {
  width: 42px;
  height: 42px;
  background: var(--color-brand-light-blue);
  border: 1px solid var(--color-border-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  flex-shrink: 0;
}

.c-info-lbl {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.c-info-val {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--color-brand-navy);
}

.contact-form-clean {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-lbl-clean {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: 0.3rem;
}

.form-inp-clean, .form-txt-clean {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-inp-clean:focus, .form-txt-clean:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--color-brand-blue);
}

.map-card-clean {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 350px;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-md);
}

.map-iframe-clean {
  width: 100%;
  height: 100%;
  border: none;
}

/* FOOTER */
.main-footer-navy {
  background: var(--color-brand-navy);
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo-clean {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.1rem;
}

.footer-txt-light {
  color: #CBD5E1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title-white {
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.footer-links-clean {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link-item:hover {
  color: #FFFFFF;
}

.footer-bottom-clean {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94A3B8;
  flex-wrap: wrap;
  gap: 1rem;
}

/* FLOATING WHATSAPP */
.floating-whatsapp-clean {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition-normal);
}

.floating-whatsapp-clean:hover {
  transform: scale(1.08);
}

/* ========================================================================== 
   6. RESPONSIVE SYSTEM V2
   ========================================================================== */

:root {
  --color-border-blue: #BFDBFE;
  --header-height: 80px;
  --page-gutter: clamp(1rem, 3.5vw, 2rem);
}

html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

button,
input,
textarea,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(5, 17, 242, 0.28);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.container {
  padding-inline: var(--page-gutter);
}

.hero-content > *,
.tech-tab-card > *,
.wizard-grid > *,
.about-grid > *,
.diff-grid > *,
.services-grid > *,
.gallery-grid > *,
.reviews-grid > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

.header-actions,
.desktop-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.main-header {
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.main-header.scrolled {
  box-shadow: 0 10px 30px rgba(3, 10, 140, 0.08);
}

.brand-logo-wrap {
  display: inline-flex;
  flex: 0 0 auto;
}

.mobile-drawer-backdrop {
  display: none;
}

.mobile-drawer-ctas .btn-corporate,
.btn-block {
  width: 100%;
}

/* IMMERSIVE HERO */
.hero-section {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(620px, 72vh, 760px);
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background: var(--color-brand-navy-dark);
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 6, 38, 0.98) 0%, rgba(2, 6, 38, 0.88) 40%, rgba(2, 6, 38, 0.38) 68%, rgba(2, 6, 38, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 6, 38, 0.08), rgba(2, 6, 38, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: inherit;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero-text-col {
  width: min(650px, 62%);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #C7D2FE;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  color: #7C8CFF;
}

.hero-title {
  max-width: 720px;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  font-size: clamp(2.9rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-title span {
  color: #8FA0FF;
}

.hero-subtitle {
  max-width: 570px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.hero-ctas {
  align-items: stretch;
  margin-bottom: 2rem;
}

.hero-ctas .btn-corporate {
  min-height: 50px;
  padding-inline: 1.7rem;
}

.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  border-color: #FFFFFF;
  color: var(--color-brand-navy-dark);
  background: #FFFFFF;
  transform: translateY(-2px);
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

.hero-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(2, 6, 38, 0.48);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-proof-list li span {
  color: #9EAAFF;
}

/* FLUID SECTION RHYTHM */
.section-padding,
.section-padding-alt,
.tech-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-title-dark {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  text-wrap: balance;
}

.section-desc-muted {
  max-width: 680px;
  margin-inline: auto;
}

/* TRANSMISSION TABS */
.tech-tabs-bar {
  justify-content: flex-start;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.2rem 0.15rem 0.75rem;
  scroll-padding-inline: 0.15rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.tech-tab-btn {
  min-height: 44px;
  scroll-snap-align: start;
}

.tech-tab-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.tab-img-box {
  height: auto;
  aspect-ratio: 4 / 3;
}

.tab-img {
  display: block;
}

.tab-spec-item {
  align-items: flex-start;
}

/* DIAGNOSTIC */
.wizard-option label {
  min-height: 58px;
}

.wizard-summary > div {
  min-width: 0;
}

/* ABOUT, SERVICES & TOWING */
.about-img-main {
  height: auto;
  aspect-ratio: 4 / 3;
}

.service-card-clean .btn-corporate {
  align-self: flex-start;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.btn-towing {
  border-color: #FFFFFF;
  color: var(--color-brand-navy);
  background: #FFFFFF;
}

.btn-towing:hover {
  color: #FFFFFF;
  background: transparent;
}

/* BRANDS & GALLERY */
.brands-heading-wrap {
  margin-bottom: 2rem;
  text-align: center;
}

.brands-heading {
  color: var(--color-brand-navy);
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  text-wrap: balance;
}

.marquee-container {
  max-width: 100vw;
}

.marquee-track {
  flex: 0 0 max-content;
  gap: clamp(2rem, 5vw, 3.5rem);
  will-change: transform;
}

.gallery-card {
  height: auto;
  aspect-ratio: 4 / 3;
}

.gallery-card-caption {
  inset-inline: 0;
}

/* CONTACT, FORM & FOOTER */
.contact-card-title {
  color: var(--color-brand-navy);
  font-size: 1.3rem;
}

.form-card-title {
  margin-bottom: 0.5rem;
}

.form-submit-btn {
  margin-top: 0.5rem;
}

.c-info-row > div:last-child,
.c-info-val,
.footer-link-item,
.footer-txt-light {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.map-card-clean {
  height: auto;
  min-height: 280px;
  aspect-ratio: 16 / 7;
}

.footer-logo-clean {
  max-width: 100%;
  object-fit: contain;
}

.footer-commitment {
  color: #93C5FD;
  font-size: 0.88rem;
}

.floating-whatsapp-clean {
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
}

/* ACCESSIBLE LIGHTBOX */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  border: 0;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-img {
  display: block;
  max-width: min(1100px, 100%);
  max-height: calc(100svh - 4rem);
  border: 2px solid #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #FFFFFF;
  background: rgba(2, 6, 38, 0.72);
  font-size: 1.7rem;
  cursor: pointer;
}

/* COMPACT DESKTOP, TABLET NAVIGATION AND LAYOUT */
@media (max-width: 1180px) {
  :root {
    --header-height: 72px;
  }

  .header-container {
    height: var(--header-height);
  }

  .main-header .nav-menu,
  .desktop-header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
  }

  .mobile-drawer {
    top: var(--header-height);
    right: 0;
    left: auto;
    display: flex;
    width: min(88vw, 380px);
    height: calc(100dvh - var(--header-height));
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--transition-normal), opacity var(--transition-fast), visibility var(--transition-fast);
    box-shadow: -18px 0 40px rgba(15, 23, 42, 0.14);
    overscroll-behavior: contain;
  }

  .mobile-drawer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-drawer-backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 997;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(2, 6, 38, 0.52);
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
  }

  .mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-background-overlay {
    background:
      linear-gradient(90deg, rgba(2, 6, 38, 0.98) 0%, rgba(2, 6, 38, 0.9) 52%, rgba(2, 6, 38, 0.44) 82%, rgba(2, 6, 38, 0.2) 100%),
      linear-gradient(180deg, rgba(2, 6, 38, 0.12), rgba(2, 6, 38, 0.55));
  }

  .hero-text-col {
    width: min(680px, 78%);
  }

  .tech-tab-card,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid,
  .wizard-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    gap: 1.75rem;
  }
}

@media (min-width: 1181px) {
  .mobile-drawer,
  .mobile-drawer-backdrop {
    display: none !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body > * {
    max-width: 100%;
  }

  .main-header,
  section,
  footer {
    width: 100%;
    max-width: 100%;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(0.875rem, 4vw, 1.25rem);
  }

  h1,
  h2,
  h3,
  h4,
  p,
  a,
  button,
  label {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-padding,
  .section-padding-alt,
  .tech-section {
    padding-block: 2.75rem;
  }

  .section-header {
    margin-bottom: 1.65rem;
  }

  .section-title-dark {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .section-desc-muted {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .brand-logo-img {
    height: 42px;
    max-width: min(64vw, 240px);
    image-rendering: -webkit-optimize-contrast;
  }

  .btn-corporate {
    max-width: 100%;
    min-height: 46px;
    padding: 0.78rem 1.2rem;
    white-space: normal;
    text-align: center;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-background-overlay {
    background:
      linear-gradient(90deg, rgba(2, 6, 38, 0.97) 0%, rgba(2, 6, 38, 0.86) 68%, rgba(2, 6, 38, 0.5) 100%),
      linear-gradient(180deg, rgba(2, 6, 38, 0.18) 0%, rgba(2, 6, 38, 0.72) 100%);
  }

  .hero-content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: clamp(520px, calc(100svh - var(--header-height)), 640px);
    padding-block: 3.25rem 2.75rem;
  }

  .hero-text-col {
    width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1.06;
  }

  .hero-subtitle {
    max-width: 34rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas .btn-corporate {
    width: 100%;
  }

  .tech-tabs-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    overflow-x: clip;
    scroll-snap-type: none;
  }

  .tech-tab-btn {
    width: 100%;
    min-width: 0;
    padding: 0.7rem 0.6rem;
    white-space: normal;
    line-height: 1.25;
  }

  .tech-tab-card,
  .wizard-box,
  .contact-card-light,
  .contact-form-clean,
  .review-card-clean,
  .service-card-clean,
  .towing-banner-clean {
    padding: clamp(1.1rem, 5vw, 1.6rem);
  }

  .tab-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .tab-img-box {
    width: 100%;
    max-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .tech-tab-card .btn-corporate,
  .service-card-clean .btn-corporate {
    align-self: stretch;
    width: 100%;
  }

  .services-grid,
  .reviews-grid,
  .wizard-grid,
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tech-tab-card,
  .about-grid,
  .contact-grid,
  .gallery-grid,
  .footer-grid {
    gap: 1rem;
  }

  .about-img-main {
    width: 100%;
    max-height: 320px;
    aspect-ratio: 16 / 10;
  }

  .wizard-summary {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .wizard-summary .btn-corporate {
    width: 100%;
  }

  .towing-banner-clean {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .towing-banner-clean > div:last-child,
  .towing-banner-clean .btn-corporate {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card-caption {
    opacity: 1;
  }

  .gallery-card {
    width: 100%;
    max-height: 220px;
  }

  .marquee-container {
    width: 100%;
    max-width: 100%;
    overflow: clip;
    contain: layout paint;
  }

  .mobile-drawer {
    transform: translateY(-0.75rem);
  }

  .mobile-drawer.active {
    transform: translateY(0);
  }

  .form-inp-clean,
  .form-txt-clean {
    font-size: 1rem;
  }

  .map-card-clean {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-clean {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .floating-whatsapp-clean {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 1rem;
  }

  .header-container {
    gap: 0.75rem;
  }

  .brand-logo-img {
    height: 40px;
  }

  .mobile-drawer {
    width: 100%;
    max-width: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding-block: 3rem 2.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-proof-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof-list li {
    width: 100%;
    max-width: 100%;
  }

  .tech-tab-card,
  .wizard-box,
  .contact-card-light,
  .contact-form-clean,
  .review-card-clean,
  .service-card-clean,
  .towing-banner-clean {
    border-radius: var(--radius-md);
  }

  .tab-img-box {
    aspect-ratio: 16 / 11;
  }

  .wizard-option label {
    padding: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    aspect-ratio: 16 / 10;
  }

  .c-info-row {
    gap: 0.8rem;
  }

  .c-info-icon {
    width: 38px;
    height: 38px;
  }

  .footer-bottom-clean {
    align-items: flex-start;
    text-align: left;
  }
}

@media (hover: none) {
  .gallery-card-caption {
    opacity: 1;
  }

  .btn-corporate:hover,
  .service-card-clean:hover,
  .gallery-card:hover .gallery-card-img,
  .floating-whatsapp-clean:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .reveal-fade-up,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-text-col > * {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

}

/* ========================================================================== 
   7. INSTITUTIONAL PHOTO SCROLL STORY
   ========================================================================== */

.hero-section {
  position: relative;
  display: block;
  width: 100%;
  height: 220svh;
  min-height: 0;
  overflow: visible;
  background: #F5F7FB;
}

.hero-story-sticky {
  position: sticky;
  top: var(--header-height);
  width: 100%;
  height: calc(100svh - var(--header-height));
  min-height: min(620px, calc(100svh - var(--header-height)));
  overflow: hidden;
  isolation: isolate;
  background: #F5F7FB;
}

.hero-photo-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-photo-panel {
  position: absolute;
  overflow: hidden;
  background: var(--color-brand-navy-dark);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  will-change: inset, border-radius, transform, opacity;
}

.hero-photo-panel-main {
  inset: var(--hero-main-inset, 0% 0%);
  z-index: 1;
  border-radius: var(--hero-main-radius, 0px);
}

.hero-photo-panel-side {
  top: 18%;
  bottom: 18%;
  z-index: 2;
  width: 20%;
  border-radius: 28px;
  opacity: var(--hero-side-opacity, 0);
}

.hero-photo-panel-left {
  left: 3%;
  transform: translate3d(var(--hero-left-x, -115%), 0, 0);
}

.hero-photo-panel-right {
  right: 3%;
  transform: translate3d(var(--hero-right-x, 115%), 0, 0);
}

.hero-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-panel-main .hero-photo-img {
  object-position: center center;
  transform: scale(var(--hero-main-scale, 1.06));
  transform-origin: center center;
  will-change: transform;
}

.hero-photo-panel-left .hero-photo-img {
  object-position: 42% center;
}

.hero-photo-panel-right .hero-photo-img {
  object-position: center center;
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    linear-gradient(180deg, rgba(2, 6, 38, 0.44) 0%, rgba(2, 6, 38, 0.7) 100%),
    linear-gradient(90deg, rgba(2, 6, 38, 0.48), rgba(2, 6, 38, 0.1), rgba(2, 6, 38, 0.42));
  will-change: opacity;
}

.hero-copy-hidden .hero-content {
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.hero-text-col {
  width: min(860px, 100%);
  margin-inline: auto;
  color: #FFFFFF;
  text-align: center;
  opacity: var(--hero-copy-opacity, 1);
  will-change: opacity;
}

.hero-eyebrow {
  justify-content: center;
}

.hero-title {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(3rem, 6.4vw, 6rem);
}

.hero-subtitle {
  max-width: 640px;
  margin-inline: auto;
}

.hero-ctas {
  justify-content: center;
  margin-bottom: 1.4rem;
}

.hero-proof-line {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.hero-proof-line span {
  margin-inline: 0.45rem;
  color: #8FA0FF;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: var(--hero-copy-opacity, 1);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-scroll-cue svg {
  width: 20px;
  height: 20px;
  animation: heroScrollCue 1.8s ease-in-out infinite;
}

.hero-story-ready .hero-text-col > * {
  animation: heroStoryTextIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-story-ready .hero-text-col > :nth-child(1) { animation-delay: 70ms; }
.hero-story-ready .hero-text-col > :nth-child(2) { animation-delay: 140ms; }
.hero-story-ready .hero-text-col > :nth-child(3) { animation-delay: 210ms; }
.hero-story-ready .hero-text-col > :nth-child(4) { animation-delay: 280ms; }
.hero-story-ready .hero-text-col > :nth-child(5) { animation-delay: 350ms; }

@keyframes heroStoryTextIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroScrollCue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1180px) {
  .hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
  }

  .hero-photo-panel-side {
    width: 21%;
  }
}

@media (min-width: 769px) {
  .hero-content {
    padding-block: clamp(2rem, 6svh, 5rem);
  }

  .hero-text-col {
    display: grid;
    justify-items: center;
    row-gap: clamp(0.75rem, 1.8svh, 1.2rem);
  }

  .hero-text-col > * {
    margin-block: 0;
  }

  .hero-title {
    font-size: clamp(3rem, min(6.4vw, 9.5svh), 6rem);
  }

  .hero-ctas {
    margin-bottom: 0;
  }
}

@media (min-width: 769px) and (max-height: 700px) {
  .hero-content {
    padding-block: 1.5rem 2rem;
  }

  .hero-text-col {
    row-gap: 0.7rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, min(5vw, 8svh), 4rem);
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 165svh;
    min-height: 0;
  }

  .hero-story-sticky {
    height: calc(100svh - var(--header-height));
    min-height: min(560px, calc(100svh - var(--header-height)));
  }

  .hero-photo-panel-side {
    display: none;
  }

  .hero-photo-panel-main .hero-photo-img {
    object-position: 58% center;
  }

  .hero-content {
    display: grid;
    height: 100%;
    min-height: 0;
    padding-block: 2.75rem 4rem;
  }

  .hero-text-col {
    width: 100%;
    text-align: left;
  }

  .hero-eyebrow {
    justify-content: flex-start;
  }

  .hero-title {
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .hero-subtitle {
    max-width: 32rem;
    margin-inline: 0;
  }

  .hero-ctas {
    justify-content: stretch;
  }

  .hero-proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.55rem;
    font-size: 0.76rem;
  }

  .hero-proof-line span {
    margin-inline: 0;
  }

  .hero-scroll-cue {
    bottom: 0.8rem;
    width: calc(100% - 2rem);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-story-sticky {
    min-height: min(540px, calc(100svh - var(--header-height)));
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  .hero-proof-line span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section {
    height: auto;
    min-height: 0;
  }

  .hero-story-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: clamp(620px, calc(100svh - var(--header-height)), 760px);
  }

  .hero-photo-panel-main {
    inset: 0 !important;
    border-radius: 0 !important;
  }

  .hero-photo-panel-main .hero-photo-img {
    transform: none !important;
  }

  .hero-photo-panel-side,
  .hero-scroll-cue {
    display: none !important;
  }

  .hero-background-overlay,
  .hero-text-col {
    opacity: 1 !important;
  }

  .hero-text-col > * {
    animation: none !important;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .hero-story-sticky {
    min-height: calc(100svh - var(--header-height));
  }
}
