/* ============================================================
   FOSTER'S MOVING & STORAGE — DESIGN SYSTEM
   Custom build — no frameworks
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --orange:       #F6921E;
  --orange-dark:  #F48120;
  --orange-light: #FEF3E6;
  --navy:         #1E2A3A;
  --navy-mid:     #2C3E50;
  --blue:         #008ED3;
  --blue-light:   #E6F4FC;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-400:     #9CA3AF;
  --gray-600:     #6B7280;
  --gray-800:     #1F2937;
  --text:         #111827;
  --white:        #FFFFFF;
  --green:        #16A34A;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --max-width:  1200px;
  --section-py: 96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography Scale ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }
.lead { font-size: 1.15rem; line-height: 1.8; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); }
.section--orange { background: var(--orange); }

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

.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8   { gap: 8px; }
.gap-12  { gap: 12px; }
.gap-16  { gap: 16px; }
.gap-24  { gap: 24px; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-blue   { color: var(--blue); }
.bg-blue     { background: var(--blue); }
.label--blue { background: var(--blue-light); color: var(--blue); }

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,150,30,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-phone {
  background: var(--orange);
  color: var(--white);
}
.btn-phone:hover { background: var(--orange-dark); }

/* ── Section Labels ── */
.label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.label--white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.label--blue {
  background: var(--blue-light);
  color: var(--blue);
}

/* ── Section Heading Block ── */
.section-head { margin-bottom: 56px; }
.section-head h2 { margin-top: 8px; }
.section-head p  { margin-top: 12px; max-width: 560px; font-size: 1.05rem; }
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 12px auto 0; }

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.83rem;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__items {
  display: flex;
  align-items: center;
  gap: 0;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-400);
  font-size: 0.82rem;
  padding: 0 20px;
}
.top-bar__item + .top-bar__item {
  border-left: 1px solid rgba(255,255,255,0.15);
}
.top-bar__item:first-child { padding-left: 0; }
.top-bar__item a { color: var(--white); transition: color var(--transition); }
.top-bar__item a:hover { color: var(--orange); }
.top-bar__item svg { color: var(--orange); flex-shrink: 0; }
.top-bar__badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img { height: 44px; width: auto; }
.nav__logo-text { display: none; }
.nav__logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}
.nav__logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover,
.nav__link.active { color: var(--orange); background: var(--orange-light); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: all var(--transition);
}
.nav__dropdown-item:hover { background: var(--orange-light); color: var(--orange); }
.nav__dropdown-item svg { color: var(--orange); flex-shrink: 0; }
.nav__arrow {
  display: inline-block;
  margin-left: 3px;
  transition: transform var(--transition);
}
.nav__dropdown:hover .nav__arrow { transform: rotate(180deg); }
.nav__cta { margin-left: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1100;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.nav__mobile-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.nav__mobile-close:hover { background: var(--gray-200); }
.nav__mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile-link {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__mobile-link:hover { background: var(--orange-light); color: var(--orange); }
.nav__mobile-sub {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.nav__mobile-sub a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__mobile-sub a:hover { background: var(--orange-light); color: var(--orange); }
.nav__mobile-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav__mobile-ctas .btn { justify-content: center; width: 100%; }
.nav__mobile-contact {
  margin-top: 24px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}
.nav__mobile-contact p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 4px; }
.nav__mobile-contact a { font-weight: 700; color: var(--navy); font-size: 1.1rem; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.65) 60%, rgba(26,26,46,0.2) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0 60px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,150,30,.15);
  border: 1px solid rgba(232,150,30,.3);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--orange); flex-shrink: 0; }
.hero__badge {
  position: absolute;
  right: 80px;
  bottom: 80px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  min-width: 160px;
  z-index: 2;
}
.hero__badge-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hero__badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   PROOF BAR
══════════════════════════════════════════ */
.proof-bar {
  background: var(--orange);
  padding: 20px 0;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.proof-bar__item svg { opacity: 0.8; flex-shrink: 0; }
.proof-bar__num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.proof-bar__label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.proof-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--orange);
  color: var(--white);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--navy); }
.service-card p  { font-size: 0.9rem; line-height: 1.6; color: var(--gray-600); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 10px; }

/* ══════════════════════════════════════════
   SPLIT SECTION (Why Foster's)
══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.split__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.split__image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.split__image-badge .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.split__image-badge .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
  margin-top: 2px;
}
.split__content .label { margin-bottom: 12px; }
.split__content h2 { margin-bottom: 16px; }
.split__content .lead { margin-bottom: 24px; }
.split__features { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.split__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.split__feature-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.split__feature-text h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.split__feature-text p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }
.split__sig {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.split__sig-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: 50% 15%; }
.split__sig-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.split__sig-title { font-size: 0.8rem; color: var(--gray-600); }

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats { background: var(--navy); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stats__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { background: var(--gray-50); }
.testimonials__slider-wrap { position: relative; }
.testimonials__overflow {
  overflow: hidden;
  position: relative;
}
.testimonials__overflow::before,
.testimonials__overflow::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.testimonials__overflow::before { left: 0; background: linear-gradient(to right, var(--gray-50) 10%, transparent); }
.testimonials__overflow::after  { right: 0; background: linear-gradient(to left,  var(--gray-50) 10%, transparent); }
.testimonials__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  cursor: grab;
  padding: 8px 4px 12px;
}
.testimonials__track.is-dragging { cursor: grabbing; transition: none; }
.testimonial-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.95rem;
}
.testimonial-card__google {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.testimonial-card__google svg { width: 16px; height: 16px; flex-shrink: 0; }
.testimonial-card__google span { font-size: 0.72rem; color: var(--gray-400); letter-spacing: 0.02em; }
.testimonial-card__text-wrap { flex: 1; margin-bottom: 18px; }
.testimonial-card__text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
}
.testimonial-card__text--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-card__see-more {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0 0;
  display: inline-block;
  font-family: var(--font-body);
}
.testimonial-card__see-more:hover { text-decoration: underline; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__name { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.testimonial-card__meta { font-size: 0.75rem; color: var(--gray-400); }
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.testimonials__btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.testimonials__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
}
.testimonials__dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   QUOTE FORM SECTION
══════════════════════════════════════════ */
.quote-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--orange);
  opacity: 0.04;
  border-radius: 50%;
}
.quote-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-section__text .label--white { margin-bottom: 12px; }
.quote-section__text h2 { color: var(--white); margin-bottom: 16px; }
.quote-section__text p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; }
.quote-section__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-section__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.quote-section__feature svg { color: var(--orange); flex-shrink: 0; }
.quote-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.quote-form h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.quote-form__sub {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

/* Form Inputs */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder { color: var(--gray-400); }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__submit { width: 100%; margin-top: 8px; justify-content: center; }
.form__note {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 10px;
}

/* ══════════════════════════════════════════
   SERVICE AREA
══════════════════════════════════════════ */
.service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-area__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
}
.service-area__map iframe { width: 100%; height: 100%; border: none; }
.service-area__areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.service-area__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: all var(--transition);
}
.service-area__tag svg { color: var(--orange); flex-shrink: 0; }
.service-area__tag:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
}

/* ══════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card__body { padding: 24px; }
.blog-card__tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__link { gap: 10px; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(232,150,30,.08);
  border-radius: 50%;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner h2 { color: var(--white); font-size: 2.2rem; }
.cta-banner p  { color: rgba(255,255,255,0.65); margin-top: 8px; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-logo img { height: 40px; }
.footer__brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.footer__brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.footer__tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social:hover { background: var(--orange); color: var(--white); }
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--orange); }
.footer__contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer__contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}
.footer__copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer__credit { color: rgba(255,255,255,0.4); font-size: 0.78rem; margin-top: 6px; }
.footer__credit a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer__credit a:hover { color: var(--orange); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-link { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: color var(--transition); }
.footer__bottom-link:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/page-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--orange); }
.page-hero__breadcrumb svg { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p   { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 580px; }
.page-hero__ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.process__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px var(--orange-light);
}
.process__step h4 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.process__step p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  text-align: left;
}
.faq__question:hover { background: var(--gray-50); }
.faq__question.open { background: var(--orange-light); color: var(--orange); }
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all var(--transition);
}
.faq__question.open .faq__icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer.open { max-height: 500px; }
.faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   TEAM GRID
══════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card__img { width: 100%; height: 320px; object-fit: cover; object-position: 50% 15%; }
.team-card__body { padding: 20px 24px; }
.team-card__name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.team-card__role { font-size: 0.8rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ══════════════════════════════════════════
   GOOGLE ADS LANDING PAGES
══════════════════════════════════════════ */
.lp-nav {
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-hero {
  background: var(--navy);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.95) 50%, rgba(26,26,46,0.4) 100%);
}
.lp-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0;
}
.lp-hero__text h1 { color: var(--white); margin-bottom: 16px; }
.lp-hero__text p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 28px; }
.lp-hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.lp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 500;
}
.lp-hero__trust-item svg { color: var(--orange); }
.lp-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
}
.lp-form h3 { font-size: 1.3rem; margin-bottom: 4px; }
.lp-form__sub { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 24px; }
.lp-trust-bar {
  background: var(--orange);
  padding: 14px 0;
}
.lp-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.lp-trust-bar__item svg { opacity: 0.85; }
.lp-footer {
  background: var(--navy);
  padding: 24px 0;
  text-align: center;
}
.lp-footer p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.lp-footer a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.lp-footer a:hover { color: var(--orange); }

/* Sticky mobile call bar for LP */
.lp-sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  z-index: 500;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.lp-sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-card__icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.875rem; }

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .grid-4         { grid-template-columns: repeat(2, 1fr); }
  .stats__grid    { grid-template-columns: repeat(2, 1fr); }
  .stats__item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero__badge    { display: none; }
  .testimonial-card { flex: 0 0 260px; width: 260px; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .split          { gap: 48px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
  .process        { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .process__step  { padding: 0 16px 32px; }
  .quote-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero__content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile    { display: block; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }

  .hero { min-height: 100vh; }
  .hero__content { padding: 60px 0 80px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 12px; }

  .proof-bar__divider { display: none; }
  .proof-bar__inner   { gap: 24px; }

  .services-grid    { grid-template-columns: 1fr; }
  .split            { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse   { direction: ltr; }
  .split__image img { height: 300px; }
  .split__image-badge { bottom: 16px; right: 16px; }

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

  .testimonial-card { flex: 0 0 calc(100vw - 88px); width: calc(100vw - 88px); padding: 20px 18px; }
  .testimonial-card__text { font-size: 0.85rem; }
  .testimonials__overflow::before,
  .testimonials__overflow::after { width: 24px; }

  .quote-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .quote-form           { padding: 28px 20px; }
  .form-grid-2          { grid-template-columns: 1fr; }

  .service-area__grid   { grid-template-columns: 1fr; }
  .service-area__areas  { grid-template-columns: 1fr 1fr; }

  .blog-grid       { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { width: 100%; justify-content: center; }

  .footer__grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom  { flex-direction: column; text-align: center; }

  .page-hero       { padding: 48px 0; }

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

  .lp-hero__content { grid-template-columns: 1fr; padding: 48px 0; }
  .lp-sticky-call   { display: block; }

  .top-bar { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .service-area__areas { grid-template-columns: 1fr; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* ══════════════════════════════════════════
   UTILITY ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* Card hover lifts */
.service-card, .service-detail-card, .value-card, .feature-card, .packing-option, .storage-feature {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover, .service-detail-card:hover, .value-card:hover, .feature-card:hover, .packing-option:hover, .storage-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* Button press effect */
.btn { transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow 0.15s ease; }
.btn:active { transform: scale(0.97); }

/* Stats number pop */
.stats__item { transition: transform 0.22s ease; }
.stats__item:hover { transform: translateY(-3px); }

/* Scroll bar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* Multi-select checkboxes & form hints (quote forms) */
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-top: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray-600); font-weight: 400; cursor: pointer; line-height: 1.3; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--orange); flex-shrink: 0; cursor: pointer; margin: 0; }
.form-hint { font-weight: 400; color: var(--gray-400); font-size: 0.78rem; }
@media (max-width: 480px) { .checkbox-grid { grid-template-columns: 1fr; } }