/* ================================================
   FLASH Aproximado — Brand Stylesheet
   Dark mode · Minimal · High-contrast
================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  /* Core palette */
  --black:        #000000;
  --white:        #FFFFFF;
  --soft-black:   #1A1A1A;
  --light-grey:   #F2F2F2;
  --mid-grey:     #888888;
  --border:       #222222;

  /* Accents */
  --orange:       #FF4D2E;
  --orange-light: #FF7A5C;
  --teal:         #00C2B8;
  --teal-light:   #3AE0D6;

  /* Gradients */
  --grad-orange:  linear-gradient(135deg, #FF4D2E 0%, #FF7A5C 100%);
  --grad-teal:    linear-gradient(135deg, #00C2B8 0%, #3AE0D6 100%);
  --grad-hero:    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);

  /* Semantic aliases */
  --color-bg:          var(--black);
  --color-surface:     var(--soft-black);
  --color-border:      var(--border);
  --color-text:        var(--white);
  --color-text-muted:  var(--mid-grey);
  --color-accent:      var(--orange);

  /* Type */
  --font:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 72px;

  /* Radii */
  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  18px;
  --r-pill: 100px;

  /* Transitions */
  --t: 0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,77,46,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(255,77,46,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--white); }

.btn-teal {
  background: var(--grad-teal);
  color: #000;
  box-shadow: 0 4px 20px rgba(0,194,184,0.3);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--grad-orange);
  color: #fff;
  border-color: transparent;
}

/* ================================================
   TYPOGRAPHY HELPERS
================================================ */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: var(--space-md);
}

/* ================================================
   NAVBAR
================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--t);
}
.navbar.scrolled { background: rgba(0,0,0,0.96); }

.nav-logo img {
  height: 32px;
  width: auto;
}
/* Fallback text logo if image not loaded */
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta { margin-left: var(--space-sm); }

/* Mobile hamburger (hidden by default) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* ================================================
   HERO
================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Video — left edge aligned to where gradient ends, so nearly full width shows */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 25%;            /* starts right at the gradient fade-out point */
  height: 100%;
  width: auto;          /* preserves native aspect ratio — zero side-cropping */
  display: block;
  z-index: 0;
}

/* Gradient: solid black for text zone, short sharp fade into video */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #000 0%,
    #000 20%,
    rgba(0,0,0,0) 30%
  );
  pointer-events: none;
}

/* Text content — overlaid on left, above gradient */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl) var(--space-md);
  max-width: 580px;
  padding-left: clamp(1.5rem, 5vw, 5rem);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--orange);
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--white);
}
.hero-headline em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}



/* ================================================
   LOGOS / SOCIAL PROOF
================================================ */
.logos-section {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-md);
}
.logos-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}
.logos-label-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  white-space: nowrap;
}
.logos-track {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}
/* Placeholder brand logos */
.logo-pill {
  height: 28px;
  padding: 0 var(--space-sm);
  background: var(--soft-black);
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  text-transform: uppercase;
}
.logos-track img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1) brightness(1.5);
  transition: opacity var(--t), filter var(--t);
}
.logos-track img.logo-lg { height: 60px; }
.logos-track a { display: flex; align-items: center; }
.logos-track a:hover img { opacity: 1; filter: none; }

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials-section {
  padding: var(--space-xl) var(--space-md);
}
.testimonials-header {
  max-width: var(--max-width);
  margin: 0 auto var(--space-lg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--soft-black);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color var(--t), transform var(--t);
}
.testimonial-card:hover {
  border-color: rgba(255,77,46,0.4);
  transform: translateY(-4px);
}
.quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  opacity: 0.7;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--mid-grey); }

/* ================================================
   PAGE HERO (inner pages)
================================================ */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1,
.page-hero h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
}
.page-hero h1 em,
.page-hero h2 em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  margin-top: var(--space-sm);
  color: var(--mid-grey);
  font-size: 1.1rem;
  max-width: 540px;
}

/* ================================================
   SERVICES PAGE
================================================ */
.services-section {
  padding: var(--space-xl) var(--space-md);
}
.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
/* SPA layout: tighten spacing for section page-heroes and inner content */
#services .page-hero,
#careers .page-hero,
#contact .page-hero {
  padding-top: var(--space-lg);
}
#services .services-section,
#careers .careers-section,
#contact .contact-section {
  padding-top: var(--space-sm);
}
#services .services-grid { margin-top: var(--space-sm); }
/* Last card full-width if odd */
.service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 600px;
}

.service-card {
  background: var(--soft-black);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-orange);
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:hover { border-color: rgba(255,77,46,0.35); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
}
.service-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card p {
  color: var(--mid-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}
.service-disclaimer {
  flex: 0 !important;
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.28) !important;
  line-height: 1.5 !important;
  font-style: italic;
  margin-top: -0.25rem;
}
.service-media {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.service-media video,
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Multi-video grid variants */
.service-media--grid2,
.service-media--grid4 {
  aspect-ratio: unset;
  display: grid;
  gap: 4px;
  position: static;
}
.service-media--grid2 { grid-template-columns: 1fr 1fr; }
.service-media--grid4 { grid-template-columns: repeat(4, 1fr); }

/* Grid2: fixed landscape height */
.service-media--grid2 .video-thumb { height: 220px; }
.service-media--grid2 .video-thumb video {
  position: static;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Grid4 (UGC): 4 in a row, portrait ratio, height matches grid2 */
.service-media--grid4 .video-thumb {
  aspect-ratio: 9/16;
  height: 220px;
}
.service-media--grid4 .video-thumb video {
  position: static;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Clickable video thumbnail */
.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}
/* Subtle play pill — bottom-right, revealed on hover */
.video-thumb::after {
  content: '▶  Watch';
  position: absolute;
  bottom: 8px; right: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.video-thumb:hover::after {
  opacity: 1;
  transform: translateY(0);
}
/* Dim video slightly on hover to help the label pop */
.video-thumb:hover video { opacity: 0.88; }
.video-thumb video { transition: opacity 0.2s ease; }

/* Cards without media */
.service-card--no-media { justify-content: space-between; }
.service-card--no-media p { flex: 1; }

/* 04 + 05 stacked in one grid column, same total height as 03 */
.service-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-stack .service-card { flex: 1; }

/* ---- VIDEO LIGHTBOX MODAL ---- */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.video-modal.is-open { display: flex; }
.video-modal-inner {
  position: relative;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-player {
  width: 100%;
  max-height: 85vh;
  border-radius: var(--r-lg);
  background: #000;
  outline: none;
}
.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border-color var(--t);
}
.video-modal-close:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }



/* ================================================
   CAREERS PAGE
================================================ */
.careers-section {
  padding: var(--space-xl) var(--space-md);
}
.careers-inner {
  max-width: 820px;
  margin: 0 auto;
}
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
.role-card {
  background: var(--soft-black);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.role-card:hover { border-color: rgba(255,77,46,0.35); }
.role-card-header {
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
}
.role-card-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.role-tag {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(0,194,184,0.12);
  color: var(--teal);
  border: 1px solid rgba(0,194,184,0.25);
}
.role-body {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--color-border);
}
.role-desc {
  color: var(--mid-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: var(--space-md);
  margin-bottom: var(--space-md);
}
.role-reqs-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.75rem;
}
.role-reqs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.role-req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--white);
}
.role-req-item::before {
  content: '→';
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0.05rem;
}

/* Application form */
.application-section {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  background: var(--soft-black);
  border-top: 1px solid var(--color-border);
}
.application-inner {
  max-width: 820px;
  margin: 0 auto;
}
.form-embed-wrapper {
  margin-top: var(--space-md);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.form-embed-wrapper iframe { display: block; }
.form-placeholder {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--color-bg);
  color: var(--mid-grey);
  font-size: 0.9rem;
  text-align: center;
  padding: var(--space-md);
}
.form-placeholder-icon { font-size: 2rem; opacity: 0.4; }

/* ================================================
   CONTACT PAGE
================================================ */
.contact-section {
  padding: var(--space-xl) var(--space-md);
}
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
.contact-card {
  background: var(--soft-black);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color var(--t), transform var(--t);
}
.contact-card:hover {
  border-color: rgba(255,77,46,0.4);
  transform: translateY(-4px);
}

/* Featured (Book a Call) — primary CTA card */
.contact-card--featured {
  border-color: rgba(255,77,46,0.5);
  background: linear-gradient(135deg, rgba(255,77,46,0.07) 0%, rgba(26,26,26,1) 60%);
  box-shadow: 0 0 40px rgba(255,77,46,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.contact-card--featured::before {
  content: 'Recommended';
  position: absolute;
  top: -1px; right: var(--space-md);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--grad-orange);
  padding: 3px 10px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.contact-card--featured:hover {
  border-color: rgba(255,77,46,0.75);
  box-shadow: 0 0 60px rgba(255,77,46,0.2);
}
.contact-card--featured .contact-card-icon {
  background: rgba(255,77,46,0.18);
  border-color: rgba(255,77,46,0.4);
}
.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(255,77,46,0.1);
  border: 1px solid rgba(255,77,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.contact-card h2 { font-size: 1.1rem; font-weight: 800; }
.contact-card p { color: var(--mid-grey); font-size: 0.9rem; line-height: 1.6; flex: 1; }

/* ================================================
   FOOTER
================================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
}
.footer-logo img { height: 28px; }
.footer-logo-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-logo-text span { color: var(--orange); }
.footer-nav {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}
.footer-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--mid-grey);
  text-align: right;
}

/* ================================================
   DIVIDERS / DECORATIVE
================================================ */
.section-divider {
  width: 40px; height: 2px;
  background: var(--grad-orange);
  border: none;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-md);
}

/* Teal highlight on hover for secondary actions */
.teal-hover { transition: color var(--t); }
.teal-hover:hover { color: var(--teal); }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 900px) {
  /* Hero: text on top, video full-width below */
  .hero {
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    padding-bottom: 0;
  }
  .hero-bg-video {
    position: static;
    width: 100%;
    height: auto;
    left: auto;
    transform: none;
    display: block;
    order: 2;            /* push video below content */
  }
  /* No gradient needed — video is no longer behind text */
  .hero::before { display: none; }
  .hero-content {
    order: 1;            /* content first */
    text-align: center;
    max-width: 100%;
    align-items: center;
    padding-top: calc(var(--nav-height) + var(--space-md)); /* just clear navbar */
    padding-bottom: var(--space-md);
  }
  .hero-sub { max-width: 90%; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { justify-content: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child:nth-child(odd) { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 680px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 5rem;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .page-hero { padding-top: calc(var(--nav-height) + var(--space-lg)); }
}
