/* ============================================================
   HYBRID AUTO & REPAIRS — style.css
   ============================================================ */

/* ── Reset & Variables ── */
:root {
  --slate:        #3d4f5c;
  --slate-dark:   #2c3a45;
  --slate-deeper: #1a252e;
  --slate-mid:    #4e6374;
  --slate-light:  #edf1f4;
  --blue:         #00aeef;
  --blue-dark:    #0097d6;
  --text:         #1a2332;
  --text-muted:   #4a5568;
  --bg:           #ffffff;
  --bg-off:       #f5f7f9;
  --border:       #dde3e8;
  --heading:      'Oswald', sans-serif;
  --body:         'DM Sans', sans-serif;
  --radius:       12px;
  --shadow:       0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.08), 0 24px 48px rgba(0,0,0,.06);
  --transition:   all .22s cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--heading); line-height: 1.1; letter-spacing: -0.025em; }

/* ── Layout Utilities ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-label {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
  display: block;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--slate);
  color: #fff;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--slate-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,79,92,.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--slate-dark);
  color: #fff;
  padding: 0.6rem 0;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.875rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.topbar-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-tag {
  background: var(--blue);
  color: var(--text);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.topbar-note {
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color .2s;
}

.nav-links a:hover { color: var(--slate); }

.nav-cta {
  background: var(--slate);
  color: #fff;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover { background: var(--slate-dark); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) 0;
  background-color: var(--slate-deeper);
  background-image:
    linear-gradient(135deg, rgba(26,37,46,.88) 0%, rgba(61,79,92,.78) 50%, rgba(26,37,46,.9) 100%),
    url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(61,79,92,.3) 0%, transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(0,174,239,.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem;
  max-width: 50ch;
  line-height: 1.7;
}

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

.hero-badges {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  font-family: var(--heading);
  font-weight: 600;
}

.badge-icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

/* Hero Form Card */
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 2.5rem;
  animation: fadeUp .8s .4s cubic-bezier(.16,1,.3,1) both;
}

.hero-card-title {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text);
  transition: all .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,174,239,.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-form-btn {
  width: 100%;
  background: var(--blue);
  color: var(--text);
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.hero-form-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.4);
}

.hero-form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-top: 0.75rem;
}

/* Form success / error messages */
.form-message {
  padding: 12px 16px;
  margin: 10px 0;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--slate-dark);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.stat-divider {
  border-left: 1px solid rgba(255,255,255,.2);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-off); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: transparent;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--slate), var(--slate-mid));
  opacity: 0;
  transition: opacity .3s;
}

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

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--slate-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--slate);
}

.service-card h3 {
  font-family: var(--heading);
  font-size: 1.175rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-section { background: var(--bg-off); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--slate), var(--slate-mid), var(--slate));
  opacity: .3;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--slate);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(61,79,92,.35);
}

.step-card h3 {
  font-family: var(--heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual { position: relative; }

.why-main-card {
  background: linear-gradient(145deg, var(--slate-deeper), var(--slate));
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-main-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-main-card h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.why-main-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: .85;
}

.why-float-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  min-width: 220px;
}

.why-float-icon {
  width: 44px;
  height: 44px;
  background: var(--slate-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-float-icon svg {
  width: 22px;
  height: 22px;
  color: var(--slate);
}

.why-float-text strong {
  display: block;
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.why-float-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  background: var(--slate-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg {
  width: 14px;
  height: 14px;
  color: var(--slate);
}

.why-feature h4 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.why-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 1.375rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}

.faq-q:hover { background: var(--bg-off); }

.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--slate);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  padding: 0 1.5rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.375rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--slate-deeper) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(0,174,239,.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-phone svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.contact-phone a {
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color .2s;
}

.contact-phone a:hover { color: var(--blue); }

.contact-available {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-family: var(--heading);
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.available-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
  display: inline-block;
}

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-card h3 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.cf-group { margin-bottom: 1.25rem; }

.cf-group label {
  display: block;
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text);
  transition: all .2s;
  appearance: none;
  -webkit-appearance: none;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--slate);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61,79,92,.1);
}

.cf-group textarea {
  resize: vertical;
  min-height: 100px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cf-submit {
  width: 100%;
  background: var(--slate);
  color: #fff;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: var(--transition);
  margin-top: 0.25rem;
}

.cf-submit:hover {
  background: var(--slate-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,79,92,.35);
}

.cf-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.cf-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #111c23;
  padding: 3.5rem 0 2rem;
}

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

.footer-logo {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--slate-mid);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 36ch;
}

.footer-col h4 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

.footer-abn {
  font-size: 0.78rem;
  color: rgba(255,255,255,.25);
  max-width: 70ch;
  line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .2s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .4s; }
.hero-content > *:nth-child(5) { animation-delay: .5s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }

  .why-float-card {
    position: static;
    margin-top: 1.5rem;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .steps-grid::before { display: none; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-divider:nth-child(3) { border-left: none; }

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

  .footer-brand { grid-column: 1 / -1; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav open state */
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 1.5rem 24px;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
  }

  nav { position: sticky; }

  .form-row,
  .cf-row { grid-template-columns: 1fr; }

  .why-float-card {
    position: static;
    margin-top: 1.5rem;
    width: 100%;
  }

  .topbar-note { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  .testi-grid { grid-template-columns: 1fr; }

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

  .hero-ctas { flex-direction: column; }

  .hero-badges { gap: 0.875rem; }

  .topbar-inner { flex-direction: column; gap: 0.5rem; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  .footer-bottom { flex-direction: column; gap: 0.75rem; }

  .why-main-card { padding: 2rem 1.5rem; }
  .contact-form-card { padding: 1.75rem; }
  .hero-card { padding: 1.75rem; }

  .section-heading { font-size: clamp(1.75rem, 7vw, 2.25rem); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
