/*
Theme Name: Capstone Fleet
Theme URI: https://capstonefleetconsultant.com
Description: Custom theme for Capstone Fleet Consultants
Author: Web Consolidated
Version: 2.0
*/

/* =============================================
   CSS VARIABLES — BRAND KIT
   ============================================= */
:root {
  --navy:      #0F1F3D;
  --royal:     #1E5AA8;
  --sky:       #4DB6E5;
  --ice:       #A9D8F3;
  --dark-gray: #2E2E2E;
  --light-bg:  #F4F6F8;
  --white:     #FFFFFF;
  --font:      'Montserrat', sans-serif;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(15,31,61,0.12);
  --transition: 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}

.section--dark .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #5a6a80;
  max-width: 580px;
}

.section--dark .section__subtitle { color: var(--ice); }

.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}
.btn--primary:hover {
  background: #174d96;
  border-color: #174d96;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,90,168,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--sky {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--sky);
}
.btn--sky:hover {
  background: #3aa8d8;
  border-color: #3aa8d8;
  transform: translateY(-1px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: none;
}
.navbar.scrolled .navbar__nav a {
  color: var(--navy);
  opacity: 0.8;
}
.navbar.scrolled .navbar__nav a:hover { opacity: 1; }
.navbar.scrolled .navbar__phone { color: var(--royal); }
.navbar.scrolled .navbar__phone:hover { color: var(--navy); }
.navbar.scrolled .navbar__hamburger span { background: var(--navy); }

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar__logo {
  flex-shrink: 0;
  line-height: 0;
}

.navbar__logo img {
  height: 52px;
  width: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.navbar__nav a:hover { opacity: 1; }

/* Dropdown */
.navbar__has-dropdown { position: relative; }
.navbar__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  flex-direction: column;
}
.navbar__has-dropdown:hover .navbar__dropdown { display: flex; }
.navbar__dropdown li { list-style: none; }
.navbar__dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy) !important;
  opacity: 1 !important;
  white-space: nowrap;
  transition: background var(--transition);
}
.navbar__dropdown a:hover { background: var(--light-bg); }

.navbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar__phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ice);
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar__phone:hover { color: var(--white); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: absolute;
  top: 80px; left: 0; right: 0;
  background: var(--navy);
  padding: 20px 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.navbar__mobile.open { display: block; }
.navbar__mobile a {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0.85;
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile .navbar__phone {
  margin-top: 16px;
  font-size: 1rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(315deg, #0F1F3D 0%, #162d5a 60%, #1E5AA8 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,182,229,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,182,229,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,90,168,0.4) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,182,229,0.12);
  border: 1px solid rgba(77,182,229,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 28px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--sky), var(--ice));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--ice);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero__stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ice);
  letter-spacing: 0.05em;
}

/* =============================================
   VALUE PROPS
   ============================================= */
.value-props {
  background: var(--white);
}

.value-props__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid #e8ecf2;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(30,90,168,0.1), rgba(77,182,229,0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

.value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card__text {
  font-size: 0.88rem;
  color: #6b7a8d;
  line-height: 1.6;
}

/* =============================================
   WHO WE SERVE
   ============================================= */
.serve__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.serve-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
}

.serve-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.serve-card:hover .serve-card__img {
  transform: scale(1.06);
}

.serve-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,0.88) 0%, rgba(15,31,61,0.2) 60%, transparent 100%);
}

.serve-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.serve-card--wide {
  grid-column: span 2;
  grid-row: span 2;
}

/* Last two cards fill the bottom row evenly */
.serve__grid > :nth-child(6),
.serve__grid > :nth-child(7) {
  grid-column: span 2;
}

/* =============================================
   SERVICES
   ============================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid #e8ecf2;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(30,90,168,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.9rem;
  color: #6b7a8d;
  line-height: 1.65;
}

/* =============================================
   PROCESS
   ============================================= */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--royal), var(--sky));
}

.process-step {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.process-step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(77,182,229,0.15);
}

.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step__text {
  font-size: 0.88rem;
  color: var(--ice);
  line-height: 1.65;
}

/* =============================================
   TRUST / STATS
   ============================================= */
.trust {
  background: var(--light-bg);
}

.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.trust-stat {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-stat__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.trust__testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial__role {
  font-size: 0.8rem;
  color: #6b7a8d;
  margin-top: 2px;
}

/* =============================================
   INTEREST FORM
   ============================================= */
.interest-form {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3560 100%);
  position: relative;
  overflow: hidden;
}

.interest-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,182,229,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,182,229,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.interest-form__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.interest-form__copy .section__eyebrow { color: var(--sky); }
.interest-form__copy .section__title { color: var(--white); }

.interest-form__desc {
  font-size: 1rem;
  color: var(--ice);
  line-height: 1.7;
  margin-top: 16px;
}

.interest-form__embed {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(77,182,229,0.2);
  border-radius: 12px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interest-form__embed iframe {
  width: 100%;
  border: none;
  min-height: 480px;
}

.form-placeholder {
  text-align: center;
  padding: 48px;
  color: rgba(255,255,255,0.4);
}
.form-placeholder__icon { font-size: 3rem; margin-bottom: 16px; }
.form-placeholder__text { font-size: 0.9rem; line-height: 1.6; }

/* =============================================
   QUESTIONNAIRE
   ============================================= */
.questionnaire {
  background: var(--light-bg);
}

.questionnaire__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.questionnaire__embed {
  background: var(--white);
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.questionnaire__embed iframe {
  width: 100%;
  border: none;
  min-height: 480px;
}

.questionnaire__embed .form-placeholder {
  color: #9aa5b4;
}

/* =============================================
   FAQ
   ============================================= */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e8ecf2;
}

.faq-item:first-child { border-top: 1px solid #e8ecf2; }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
  user-select: none;
}

.faq-item__question:hover { color: var(--royal); }

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--royal);
  transition: var(--transition);
}

.faq-item.open .faq-item__icon {
  background: var(--royal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: #6b7a8d;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* =============================================
   CONTACT CTA BANNER
   ============================================= */
.contact-banner {
  background: linear-gradient(135deg, var(--royal) 0%, #0d3d7a 100%);
  padding: 72px 0;
  text-align: center;
}

.contact-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-banner__sub {
  font-size: 1.05rem;
  color: var(--ice);
  margin-bottom: 36px;
}

.contact-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  transition: var(--transition);
}

.contact-banner__phone:hover { color: var(--ice); }

.contact-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #080f1e;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}

/* Bodyshop advantage grid */
.bodyshop__advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .bodyshop__advantage-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  #bodyshop .section__header { padding: 0 8px; }
  #bodyshop [style*="padding:56px 48px"] { padding: 40px 24px !important; }
}

/* Bodyshop section — override process step colors for white bg */
#bodyshop .process-step__title { color: var(--navy); }
#bodyshop .process-step__text  { color: #4a5568; }
#bodyshop .section__eyebrow    { color: var(--royal); }

/* Footer brand column alignment */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.footer__brand > a {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}
.footer__top {
  align-items: start !important;
}
.footer__heading {
  margin-top: 0 !important;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.footer__logo img {
  height: 140px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--sky); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer__contact-item a:hover { color: var(--sky); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer__bottom a { color: var(--sky); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* ── Tablet ──────────────────────────────── */
@media (max-width: 1024px) {
  .serve__grid             { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .serve-card--wide        { grid-column: span 1; grid-row: span 1; }
  .serve__grid > :nth-child(6),
  .serve__grid > :nth-child(7) { grid-column: span 1; }
  .services__grid          { grid-template-columns: repeat(2, 1fr); }
  .trust__stats            { grid-template-columns: repeat(2, 1fr); }
  .trust__testimonials     { grid-template-columns: 1fr; gap: 20px; }
  .value-props__grid       { grid-template-columns: repeat(2, 1fr); }
  .footer__top             { grid-template-columns: 1fr 1fr; }
  .interest-form__inner    { gap: 40px; }
  .questionnaire__inner    { gap: 40px; }
}

/* ── Mobile ──────────────────────────────── */
@media (max-width: 768px) {
  .section                 { padding: 64px 0; }

  /* Navbar */
  .navbar                  { padding: 0 24px; }
  .navbar__inner           { height: 68px; }
  /* Shift logo left to compensate for 29% transparent space on left of logo PNG */
  .navbar__logo img        { height: 42px; width: auto; }
  .navbar__nav             { display: none; }
  .navbar__phone.desktop-only { display: none; }
  .navbar__hamburger       { display: flex; }
  .navbar__right           { gap: 12px; }
  .navbar__right .btn      { padding: 10px 16px; font-size: 0.82rem; }

  /* Hero */
  .hero                    { overflow: visible; align-items: flex-start; }
  .hero__content           { padding: 0 24px; padding-top: 80px; padding-bottom: 56px; }
  .hero__stats             { gap: 24px; flex-wrap: wrap; }
  .hero__stats > div       { min-width: 80px; }

  /* Grids */
  .serve__grid             { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 12px; }
  .serve-card--wide        { grid-column: span 2; grid-row: span 1; }
  .serve__grid > :nth-child(6),
  .serve__grid > :nth-child(7) { grid-column: span 1; }
  .hero__badge             { display: none; }
  .services__grid          { grid-template-columns: 1fr; }
  .value-props__grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust__stats            { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Process */
  .process__steps          { grid-template-columns: 1fr; gap: 40px; }
  .process__steps::before  { display: none; }
  .process-step            { padding: 0 16px; }

  /* Forms */
  .interest-form__inner    { grid-template-columns: 1fr; gap: 32px; }
  .questionnaire__inner    { grid-template-columns: 1fr; gap: 32px; }
  /* Show embed below copy on mobile */
  .questionnaire__inner    { display: flex; flex-direction: column-reverse; }

  /* Trust */
  .trust__testimonials     { grid-template-columns: 1fr; }

  /* Contact banner */
  .contact-banner          { padding: 56px 0; }
  .contact-banner__phone   { font-size: 1.4rem; }
  .contact-banner__actions { flex-direction: column; align-items: center; }
  .contact-banner__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer__top             { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom          { flex-direction: column; gap: 10px; text-align: center; }
  .footer__tagline         { max-width: 100%; }

  /* Section headers */
  .section__subtitle       { font-size: 0.95rem; }
}

/* ── Small Mobile ────────────────────────── */
@media (max-width: 480px) {
  .container               { padding: 0 16px; }
  .navbar                  { padding: 0 16px; }
  .hero                    { overflow: visible; align-items: flex-start; }
  .hero__content           { padding: 0 16px; padding-bottom: 56px; }

  /* Navbar logo — always show PNG, never hide */
  .navbar__logo            { flex-shrink: 0; }
  .navbar__logo img        { height: 38px; width: auto; }
  .navbar__right .btn      { display: none; } /* hide CTA, keep hamburger clean */

  /* Hero */
  .hero__title             { font-size: 2.2rem; }
  .hero__ctas              { flex-direction: column; }
  .hero__ctas .btn         { text-align: center; justify-content: center; width: 100%; }
  .hero__stats             { gap: 20px; }
  .hero__stats > div       { flex: 1 1 40%; }

  /* Grids */
  .serve__grid             { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .serve-card--wide        { grid-column: span 1; grid-row: span 1; }
  .serve__grid > :nth-child(6),
  .serve__grid > :nth-child(7) { grid-column: span 1; }
  .value-props__grid       { grid-template-columns: 1fr; }
  .trust__stats            { grid-template-columns: repeat(2, 1fr); }

  /* Cards */
  .value-card              { padding: 24px 16px; }
  .service-card            { padding: 28px 20px; }
  .testimonial             { padding: 24px 20px; }

  /* FAQ touch targets */
  .faq-item__question      { padding: 20px 0; font-size: 0.95rem; }

  /* Process */
  .process-step__number    { width: 64px; height: 64px; font-size: 1.25rem; }
}
