/* ═══════════════════════════════════════════════════════════════
   Pinnacle Climate Systems — TIER 3 SHARED CSS
   Premium Houston HVAC Authority Site
   All pages inherit from this file.
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700;800;900&family=DM+Sans:wght@400;500;600&display=swap&font-display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  /* Colors */
  --navy:        #0B1F3B;
  --navy-deep:   #080E17;
  --navy-mid:    #122747;
  --navy-light:  #1A3560;
  --orange:      #F97316;
  --orange-h:    #EA6C0A;
  --orange-pale: #FFF7ED;
  --orange-soft: rgba(249,115,22,.12);
  --white:       #FFFFFF;
  --gray-50:     #F8F9FB;
  --gray-100:    #F0F2F5;
  --gray-200:    #E2E6ED;
  --border:      #E5E9F0;
  --text-dark:   #0B1F3B;
  --text-mid:    #374151;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;

  /* Spacing — 8px grid */
  --sp1: 8px;
  --sp2: 16px;
  --sp3: 24px;
  --sp4: 32px;
  --sp5: 48px;
  --sp6: 64px;
  --sp7: 80px;
  --sp8: 120px;

  /* Border radius */
  --r:    8px;
  --rm:   12px;
  --rl:   16px;
  --rxl:  24px;
  --rxxl: 32px;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
  --sh-md: 0 10px 25px rgba(0,0,0,.08), 0 4px 10px rgba(0,0,0,.04);
  --sh-lg: 0 20px 50px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --sh-xl: 0 40px 80px rgba(0,0,0,.18), 0 16px 40px rgba(0,0,0,.08);

  /* Nav */
  --nav-h: 72px;

  /* Transitions */
  --tf: .12s ease;
  --tb: .18s cubic-bezier(.4,0,.2,1);
  --ts: .25s cubic-bezier(.4,0,.2,1);

  /* Max widths */
  --max-w: 1220px;
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-mid); line-height: 1.75; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.00rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.eyebrow--center   { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--white    { color: rgba(255,255,255,.7); }
.eyebrow--white::before { background: rgba(255,255,255,.4); }

.subhead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-top: var(--sp2);
  margin-bottom: var(--sp4);
}
.subhead + .subhead { margin-top: calc(var(--sp2) * -1); }
.subhead--white { color: rgba(255,255,255,.55); }
.subhead--center { margin-left: auto; margin-right: auto; }

strong { font-weight: 700; color: var(--navy); }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
}
section { position: relative; contain: layout; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: var(--rm);
  transition: all var(--tb);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tf);
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
.btn--primary:hover {
  background: var(--orange-h);
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--sh-md);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--sh-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

.btn--lg  { padding: 18px 40px; font-size: 1rem; border-radius: var(--rl); min-height: 56px; }
.btn--sm  { padding: 10px 20px; font-size: 0.82rem; min-height: 40px; }
.btn--full { width: 100%; justify-content: center; }

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .03em;
}
.badge--orange { background: var(--orange-soft);           color: var(--orange); border: 1px solid rgba(249,115,22,.2); }
.badge--navy   { background: rgba(11,31,59,.08);           color: var(--navy);   border: 1px solid rgba(11,31,59,.12); }
.badge--green  { background: rgba(22,163,74,.1);           color: #15803D;       border: 1px solid rgba(22,163,74,.15); }
.badge--white  { background: rgba(255,255,255,.15);        color: #fff;          border: 1px solid rgba(255,255,255,.2); }

/* ─── STAR RATING ─── */
.stars { display: flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; fill: #F59E0B; }
.stars--sm svg { width: 12px; height: 12px; }
.stars--lg svg { width: 20px; height: 20px; }

/* ─── REVIEW CARD — shared component ─── */
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  padding: var(--sp4);
  transition: transform var(--tb);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  border-color: var(--orange);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.rc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp2);
  margin-bottom: var(--sp2);
}
.rc-left  { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  color: #fff; flex-shrink: 0;
}
.rc-name  { display: block; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.rc-loc   { font-size: 0.78rem; color: var(--text-muted); }
.rc-text  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-top: var(--sp2); flex: 1; }
.rc-tag   {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; font-weight: 600; color: var(--text-muted);
  background: var(--gray-50); border-radius: 100px;
  padding: 4px 10px; margin-top: 0;
  white-space: nowrap; flex-shrink: 0;
}
.rc-footer {
  margin-top: var(--sp2);
  padding-top: var(--sp2);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp2);
  flex-wrap: nowrap;
}
.rc-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
}
.rc-verified svg { flex-shrink: 0; color: #4285F4; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--ts), box-shadow var(--ts), border-color var(--ts);
  border-bottom: 1px solid transparent;
  will-change: background;
  contain: layout style;
}

/* Dark nav variant — used on dark hero pages */
.nav--dark {
  background: transparent;
}
.nav--dark .nav-logo-text  { color: #fff; }
.nav--dark .nav-link       { color: rgba(255,255,255,.75); }
.nav--dark .nav-link:hover,
.nav--dark .nav-link.active { color: #fff; background: rgba(255,255,255,.08); }
.nav--dark .nav-phone      { color: rgba(255,255,255,.65); }
.nav--dark .nav-phone:hover { color: #fff; }
.nav--dark .hamburger span { background: #fff; }

.nav--dark.scrolled {
  background: rgba(8,14,23,.99);
  border-bottom-color: rgba(255,255,255,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

/* Light nav variant — used on light-background pages */
.nav--light {
  background: rgba(255,255,255,0);
}
.nav--light .nav-logo-text  { color: var(--navy); }
.nav--light .nav-link       { color: var(--text-mid); }
.nav--light .nav-link:hover,
.nav--light .nav-link.active { color: var(--navy); background: var(--gray-50); }
.nav--light .nav-phone      { color: var(--text-muted); }
.nav--light .nav-phone:hover { color: var(--navy); }
.nav--light .hamburger span { background: var(--navy); }

.nav--light.scrolled {
  background: rgba(255,255,255,.99);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  border-radius: var(--rm);
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  color: var(--navy);
  transition: color var(--ts);
}
.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: color var(--tf), background var(--tf);
  position: relative;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 100px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  flex-shrink: 0;
}
.nav-phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tf);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: flex;
  width: 44px; height: 44px;
  border-radius: var(--r);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background var(--tf);
}
.hamburger:hover { background: rgba(0,0,0,.05); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--tb), opacity var(--tb);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── OVERLAY + DRAWER ─── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ts);
}
.overlay.show { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy-deep);
  z-index: 201;
  transform: translateX(100%);
  transition: transform var(--ts);
  display: flex;
  flex-direction: column;
  padding: var(--sp4);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp5);
}
.drawer-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -.01em;
}
.drawer-close {
  width: 44px; height: 44px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  transition: background var(--tf);
}
.drawer-close:hover { background: rgba(255,255,255,.15); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.drawer-nav a {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  padding: 14px 16px;
  border-radius: var(--rm);
  transition: color var(--tf), background var(--tf);
}
.drawer-nav a:hover,
.drawer-nav a.active { color: #fff; background: rgba(255,255,255,.07); }

.drawer-footer {
  padding-top: var(--sp4);
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: var(--sp4);
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
}
.drawer-footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  margin-top: var(--sp1);
}

/* ─── STICKY CALL WIDGET ─── */
.sticky-call {
  position: fixed;
  bottom: var(--sp3);
  right: var(--sp3);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp1);
  transition: opacity .2s ease, transform .2s ease;
  will-change: transform;
}
.sticky-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--rxl);
  box-shadow: 0 8px 32px rgba(249,115,22,.5);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all var(--tb);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.sticky-call-btn:hover {
  background: var(--orange-h);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(249,115,22,.6);
}
.sticky-call-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: ring 3.5s ease-in-out infinite;
}
@keyframes ring {
  0%, 55%, 100% { transform: rotate(0); }
  10%  { transform: rotate(-14deg); }
  20%  { transform: rotate(14deg); }
  30%  { transform: rotate(-9deg); }
  40%  { transform: rotate(9deg); }
}
.sticky-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  background: var(--navy-deep);
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--sh-md);
}
.avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 2px rgba(34,197,94,.25);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,.25); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,.08); }
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--orange);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: var(--sp6);
  animation: marquee 30s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: var(--sp6); }
.section-header--center { text-align: center; }
.section-header--center .subhead { margin-left: auto; margin-right: auto; }

/* ─── FORMS ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp3);
}
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--rm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--tf), box-shadow var(--tf);
  outline: none;
  min-height: 48px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-input:focus,
.form-input:focus-within {
  overflow: visible;
  text-overflow: clip;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-input.err,
.form-select.err,
.form-textarea.err {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp7) var(--sp5);
  border-radius: var(--rl);
  background: var(--gray-50);
  border: 1.5px solid var(--border);
}
.form-success.show { display: block; }
.form-success svg { margin: 0 auto var(--sp3); color: #22C55E; }
.form-success h3 { margin-bottom: var(--sp2); }
.form-success p { color: var(--text-muted); font-size: 0.92rem; }

/* ─── FOOTER ─── */
footer { background: var(--navy-deep); }

.footer-main { padding: var(--sp7) 0 var(--sp6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp5);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp3);
}
.footer-logo-mark {
  width: 34px; height: 34px;
  border-radius: var(--rm);
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -.02em;
}
.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; margin-top: var(--sp4); }
.footer-social {
  width: 38px; height: 38px;
  border-radius: var(--r);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background var(--tf), color var(--tf), border-color var(--tf);
}
.footer-social:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Brand colors per platform */
.footer-social--facebook { color: #1877F2; border-color: rgba(24,119,242,.25); background: rgba(24,119,242,.08); }
.footer-social--facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }

.footer-social--instagram { color: #E1306C; border-color: rgba(225,48,108,.25); background: rgba(225,48,108,.08); }
.footer-social--instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; border-color: #E1306C; }

.footer-social--linkedin { color: #0A66C2; border-color: rgba(10,102,194,.25); background: rgba(10,102,194,.08); }
.footer-social--linkedin:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }

.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: var(--sp3);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,.45);
  transition: color var(--tf);
}
.footer-links a:hover { color: #fff; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-row a { color: rgba(255,255,255,.7); font-weight: 600; transition: color var(--tf); }
.footer-contact-row a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp2);
}
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,.2); }
.footer-certs { display: flex; align-items: center; gap: var(--sp3); flex-wrap: wrap; }
.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,.25);
}
.footer-cert-badge svg { color: var(--orange); }

/* ─── SCROLL REVEAL ─── */
.reveal       { opacity: 0; transform: translateY(24px);   transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal-left  { opacity: 0; transform: translateX(-32px);  transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal-right { opacity: 0; transform: translateX(32px);   transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal-scale { opacity: 0; transform: scale(.94);         transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed { opacity: 1; transform: none; will-change: auto; }

/* ─── UTILITY ─── */
.text-orange { color: var(--orange); }
.text-white  { color: #fff; }
.text-muted  { color: var(--text-muted); }
.fw-900      { font-weight: 900; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}




.btn--google {
  background: #fff;
  color: #3c4043;
  border-color: #dadce0;
  box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  font-weight: 700;
  gap: 10px;
}
.btn--google:hover {
  background: #f8f9fa;
  border-color: #c6c9cc;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transform: translateY(-1px);
}
.btn--google:active { transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-actions .btn { display: none; }
  .nav-inner, .container { padding: 0 var(--sp3); }

  :root {
    --sp8: 80px;
    --sp7: 60px;
    --sp6: 48px;
  }
}

@media (min-width: 769px) {
  .hamburger { display: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}