/* =====================================================================
   Lifting Legend visual upgrade v3.0
   Public-facing polish only. Core PHP, forms, database, and admin logic stay intact.
   ===================================================================== */

:root {
  --navy: #061728;
  --navy-700: #0b2746;
  --navy-300: #6e8aad;
  --orange: #ff6a2a;
  --orange-600: #e85019;
  --gold: #ffc04d;
  --black: #050a12;
  --gray-50: #f7f8fb;
  --gray-100: #edf1f7;
  --gray-200: #dbe3ef;
  --gray-300: #c3cedc;
  --gray-500: #6b7b90;
  --gray-700: #344456;
  --gray-900: #111827;
  --bg: #fbfcff;
  --bg-soft: #f3f6fb;
  --text: #0c1522;
  --text-soft: #536176;
  --primary: var(--navy);
  --accent: var(--orange);
  --cyan: #47d7ff;
  --green: #20b26b;
  --cream: #fff6e7;
  --container: 1220px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shadow-sm: 0 12px 30px -24px rgba(6, 23, 40, .35), 0 1px 0 rgba(255,255,255,.75) inset;
  --shadow-md: 0 24px 60px -38px rgba(6, 23, 40, .45), 0 6px 18px -14px rgba(6, 23, 40, .25);
  --shadow-lg: 0 34px 80px -46px rgba(6, 23, 40, .55), 0 12px 36px -24px rgba(6, 23, 40, .35);
  --shadow-xl: 0 44px 100px -50px rgba(3, 10, 18, .65), 0 18px 46px -24px rgba(3, 10, 18, .38);
  --gradient-brand: linear-gradient(135deg, #ff7a2f 0%, #ffc04d 100%);
  --gradient-dark: radial-gradient(900px 520px at 80% -10%, rgba(255, 106, 42, .34), transparent 62%), radial-gradient(760px 500px at 8% 110%, rgba(71, 215, 255, .18), transparent 64%), linear-gradient(135deg, #061728 0%, #09223d 46%, #102e50 100%);
}

html { background: var(--bg); }
body {
  background:
    radial-gradient(900px 460px at -10% 22%, rgba(255, 106, 42, .055), transparent 58%),
    radial-gradient(900px 460px at 112% 36%, rgba(71, 215, 255, .06), transparent 58%),
    linear-gradient(180deg, #fff 0%, var(--bg) 36%, #fff 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(6, 23, 40, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 23, 40, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 72%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 72%, transparent);
}

h1, h2, h3, .brand-name, .footer-brand {
  letter-spacing: -.035em;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.4rem); line-height: .96; }
h2 { font-size: clamp(2rem, 4.2vw, 3.45rem); line-height: 1.02; }
h3 { line-height: 1.12; }

p { color: var(--text-soft); }
.container { padding-inline: clamp(18px, 3vw, 32px); }

/* Top bar and nav */
.promo-bar {
  background: linear-gradient(90deg, #061728, #0c3158 52%, #061728);
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.promo-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.13) 18%, transparent 36%);
  transform: translateX(-120%);
  animation: ll-sheen 8s ease-in-out infinite;
}
.promo-bar-inner { position: relative; z-index: 1; min-height: 42px; }
.promo-stars { color: var(--gold); text-shadow: 0 0 18px rgba(255,192,77,.35); }
.promo-bar-cta { color: #fff; }

.site-header {
  top: 0;
  border: 0;
  background: rgba(255,255,255,.78);
  box-shadow: 0 1px 0 rgba(6,23,40,.06);
}
.site-header.scrolled {
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px -34px rgba(6,23,40,.45), 0 1px 0 rgba(6,23,40,.06);
}
.header-inner { height: 82px; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #121826;
  box-shadow: 0 16px 30px -18px rgba(255,106,42,.85);
  transform: rotate(-3deg);
}
.brand:hover .brand-mark { transform: rotate(0deg) scale(1.03); }
.brand-mark, .brand:hover .brand-mark { transition: transform var(--t), box-shadow var(--t); }
.brand-name { font-size: 1.12rem; color: #061728; }
.brand-tag { color: #64748b; }
.primary-nav { gap: 8px; }
.nav-link {
  padding: 10px 14px;
  border-radius: 100px;
  color: #42526a;
  font-weight: 700;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,106,42,.10);
  color: var(--primary);
}
.nav-link.active::after { display: none; }
.nav-cta-phone, .nav-cta { border-radius: 100px; }
.nav-cta-phone { background: #fff; border-color: rgba(6,23,40,.08); box-shadow: var(--shadow-sm); }
.nav-cta { box-shadow: 0 16px 28px -18px rgba(255,106,42,.85); }

/* Buttons */
.btn {
  border-radius: 100px;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: none;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #16110a;
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 20px 34px -20px rgba(255,106,42,.9), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff5d1c 0%, #ffb82f 100%);
  color: #120d07;
  box-shadow: 0 24px 44px -20px rgba(255,106,42,1), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-secondary {
  background: linear-gradient(135deg, #061728, #103a68);
  box-shadow: 0 20px 38px -28px rgba(6,23,40,.85);
}
.btn-outline, .btn-soft {
  border-color: rgba(6,23,40,.12);
  background: rgba(255,255,255,.78);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover, .btn-soft:hover {
  background: #fff;
  border-color: rgba(255,106,42,.34);
  color: var(--accent);
}
.btn-outline-light {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.btn-outline-light:hover { color: #061728; }
.btn-lg { padding: 17px 28px; }

/* Hero */
.hero {
  padding: clamp(74px, 9vw, 124px) 0 clamp(120px, 13vw, 170px);
  background: #061728;
  min-height: min(900px, calc(100svh - 42px));
  display: grid;
  align-items: center;
}
.hero-photo {
  opacity: .46;
  filter: saturate(1.08) contrast(1.08) brightness(.78);
  transform: scale(1.02);
}
.hero::after { background: var(--gradient-dark); }
.hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 18px 18px, rgba(255,255,255,.09) 1.5px, transparent 2px);
  background-size: 62px 62px, 62px 62px, 62px 62px;
  opacity: .55;
  mask-image: radial-gradient(70% 80% at 56% 44%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 80% at 56% 44%, #000 50%, transparent 100%);
}
.hero-inner { grid-template-columns: minmax(0, 1.08fr) minmax(360px, .78fr); gap: clamp(34px, 6vw, 78px); }
.hero-copy { position: relative; }
.hero-copy::before {
  content: 'EDMONTON MOVING CREW';
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-copy h1 {
  max-width: 760px;
  text-shadow: 0 18px 54px rgba(0,0,0,.45);
}
.hero-copy .accent {
  background: linear-gradient(90deg, #fff2b7, #ffc04d 50%, #ff7a2f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 26px rgba(255,106,42,.28));
}
.hero-copy .lede {
  max-width: 620px;
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  color: rgba(255,255,255,.86);
  line-height: 1.65;
}
.eyebrow {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 34px -28px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-actions { gap: 14px; margin-bottom: 18px; }
.hero-proof-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin: 0 0 22px;
}
.hero-proof-item {
  position: relative;
  overflow: hidden;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-proof-item::after {
  content: '';
  position: absolute;
  inset: auto -20% -50% auto;
  width: 85px;
  height: 85px;
  border-radius: 999px;
  background: rgba(255,192,77,.16);
}
.hero-proof-item strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1;
}
.hero-proof-item span { color: rgba(255,255,255,.72); font-size: 12.5px; font-weight: 700; }
.hero-trust {
  gap: 10px;
  color: rgba(255,255,255,.83);
}
.hero-trust li {
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
}
.hero-trust .dot { background: var(--green); box-shadow: 0 0 0 5px rgba(32,178,107,.14); }

.hero-card {
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 6px;
  border-radius: 0 0 999px 999px;
  background: var(--gradient-brand);
}
.hero-card::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,192,77,.28), transparent 68%);
  pointer-events: none;
}
.hero-card-head h2 { font-size: 1.55rem; }
.hero-card-head p { color: #69788d; }
.hero-form { position: relative; z-index: 1; gap: 12px; }
.hero-form input, .hero-form select, .hero-form textarea,
.field input, .field select, .field textarea {
  border-radius: 14px;
  border-color: rgba(6,23,40,.13);
  background: rgba(255,255,255,.82);
  min-height: 48px;
  box-shadow: inset 0 1px 0 rgba(6,23,40,.03);
}
.hero-form input:focus, .hero-form select:focus,
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(255,106,42,.9);
  box-shadow: 0 0 0 5px rgba(255,106,42,.16), inset 0 1px 0 rgba(255,255,255,.4);
}

/* Stats */
.stats {
  position: relative;
  z-index: 3;
  margin-top: -78px;
  padding: 0 0 clamp(54px, 7vw, 84px);
  background: transparent;
  border: 0;
}
.stats-grid {
  gap: 14px;
  padding: 12px;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 30px 90px -55px rgba(6,23,40,.55), 0 1px 0 rgba(255,255,255,.8) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.stat-item {
  position: relative;
  padding: 24px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.72));
  border: 1px solid rgba(6,23,40,.055);
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: auto -22px -38px auto;
  width: 105px;
  height: 105px;
  border-radius: 999px;
  background: rgba(255,106,42,.10);
}
.stat-item .stat-num {
  color: var(--primary);
  background: linear-gradient(135deg, #061728, #174d86);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item .stat-label { color: #5a687d; }

/* Sections */
.section { position: relative; }
.section-soft {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(255,106,42,.055), transparent 62%),
    radial-gradient(620px 300px at 100% 100%, rgba(71,215,255,.06), transparent 62%),
    linear-gradient(180deg, #f8faff, #f2f6fb);
}
.section-head { max-width: 780px; }
.section-eyebrow {
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(255,106,42,.09);
  border: 1px solid rgba(255,106,42,.12);
  letter-spacing: .13em;
}
.section-dark .section-eyebrow,
.section-eyebrow-light {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
}
.section-head h2 { margin-top: 2px; }
.section-head p { font-size: clamp(1.04rem, 1.4vw, 1.22rem); }

/* Cards */
.card, .review-card, .review-tile, .rs-card, .form-card, .contact-mini-card, .faq-item {
  border-radius: 24px;
  border: 1px solid rgba(6,23,40,.08);
  box-shadow: var(--shadow-sm);
}
.card, .review-card, .review-tile, .rs-card, .form-card {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.card:hover, .review-card:hover, .review-tile:hover, .rs-card:hover {
  border-color: rgba(255,106,42,.18);
  box-shadow: var(--shadow-lg);
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(230px 140px at 100% 0%, rgba(255,106,42,.11), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.34));
  pointer-events: none;
}
.service-card > * { position: relative; z-index: 1; }
.service-card .service-icon, .benefit-icon, .contact-channel-icon, .area-icon, .step-pill {
  background: linear-gradient(135deg, rgba(255,106,42,.15), rgba(255,192,77,.22));
  color: var(--accent);
  border: 1px solid rgba(255,106,42,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.service-card h3 { font-size: 1.34rem; }
.service-card .learn { font-weight: 900; color: var(--accent); }
.service-card-cta {
  background: var(--gradient-dark);
  box-shadow: var(--shadow-lg);
}
.service-card-cta::before { background: radial-gradient(280px 180px at 85% 10%, rgba(255,192,77,.24), transparent 68%); }
.service-card-cta .service-icon { background: rgba(255,255,255,.12); color: var(--gold); border-color: rgba(255,255,255,.16); }

/* Intro and benefits */
.intro-points {
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(6,23,40,.08);
  box-shadow: var(--shadow-sm);
}
.intro-points li {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
  border: 1px solid rgba(6,23,40,.055);
}
.check-icon {
  background: linear-gradient(135deg, rgba(32,178,107,.16), rgba(71,215,255,.12));
  color: var(--green);
}
.benefits-grid { gap: 18px; }
.benefit {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(6,23,40,.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.benefit:hover { transform: translateY(-4px); border-color: rgba(255,106,42,.18); box-shadow: var(--shadow-md); }
.benefit h3 { font-size: 1.18rem; }
.benefit p { line-height: 1.6; }

/* Dark process / CTA */
.section-dark, .cta-band, .reviews-bottom-cta, .about-numbers, .quote-side-trust, .rs-cta, .price-card-feature {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.section-dark::before, .cta-band::before, .reviews-bottom-cta::before,
.about-numbers::before, .quote-side-trust::before, .rs-cta::before, .price-card-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18px 18px, rgba(255,255,255,.12) 1.5px, transparent 2px);
  background-size: 54px 54px;
  opacity: .24;
  pointer-events: none;
}
.section-dark > .container, .cta-band > .container,
.reviews-bottom-cta > *, .about-numbers > *, .quote-side-trust > *, .rs-cta > *, .price-card-feature > * { position: relative; z-index: 1; }
.process-grid { gap: 18px; }
.process-step {
  padding: 30px 24px 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  min-height: 220px;
}
.process-step .step-num {
  top: 8px;
  left: 18px;
  font-size: 5.5rem;
  color: rgba(255,255,255,.08);
}
.process-step h3 { margin-top: 42px; }
.cta-band {
  padding: clamp(58px, 8vw, 92px) 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); }

/* Gallery */
.gallery-section { background: #fff; }
.gallery-grid {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-tile {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 30px 70px -45px rgba(6,23,40,.55);
}
.gallery-tile:nth-child(1), .gallery-tile:nth-child(4) { grid-column: span 3; aspect-ratio: 16 / 10; }
.gallery-tile:nth-child(2), .gallery-tile:nth-child(3), .gallery-tile:nth-child(5), .gallery-tile:nth-child(6) { grid-column: span 3; aspect-ratio: 16 / 10; }
.gallery-tile figcaption {
  padding: 58px 20px 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* Reviews and FAQ */
.review-card, .review-tile { position: relative; overflow: hidden; }
.review-card::before, .review-tile::before {
  content: '“';
  position: absolute;
  top: -26px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255,106,42,.10);
  pointer-events: none;
}
.review-stars, .rs-rating-stars { color: var(--gold); text-shadow: 0 0 18px rgba(255,192,77,.22); }
.review-meta { border-top-color: rgba(6,23,40,.08); }
.faq-list { max-width: 900px; }
.faq-item {
  background: rgba(255,255,255,.82);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item[open] { border-color: rgba(255,106,42,.34); box-shadow: var(--shadow-md); }
.faq-item summary { padding: 22px 26px; }
.faq-item summary::after {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,106,42,.10);
  color: var(--accent);
}

/* Subpage headers */
.page-header {
  padding: clamp(74px, 9vw, 120px) 0 clamp(64px, 8vw, 96px);
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .54;
  mask-image: radial-gradient(70% 100% at 50% 30%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 100% at 50% 30%, #000 45%, transparent 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { text-shadow: 0 18px 52px rgba(0,0,0,.36); }
.page-header p { color: rgba(255,255,255,.86); }

/* Service details and pricing */
.service-detail {
  padding: clamp(48px, 7vw, 78px) 0;
  border-bottom-color: rgba(6,23,40,.08);
}
.service-detail-icon {
  border-radius: 24px;
  box-shadow: 0 22px 44px -28px rgba(6,23,40,.52);
}
.service-detail-alt .service-detail-icon { background: var(--gradient-brand); color: #1b130a; }
.service-detail-photo { border-radius: 30px; box-shadow: var(--shadow-lg); }
.price-card { position: relative; overflow: hidden; }
.price-card::after {
  content: '';
  position: absolute;
  inset: auto -30px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255,106,42,.08);
}
.price-card > * { position: relative; z-index: 1; }
.price-tag { color: var(--primary); }
.ribbon { background: var(--gradient-brand); color: #16110a; box-shadow: 0 16px 26px -18px rgba(255,106,42,.85); }

/* About, locations, contact, quote */
.about-photo, .about-image, .map-wrap { border-radius: 32px; box-shadow: var(--shadow-lg); }
.rating-badge { border-radius: 22px; border: 1px solid rgba(6,23,40,.08); }
.value-card, .area-card { position: relative; overflow: hidden; }
.value-card::before, .area-card::before, .contact-channel::before, .quote-side-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(180px 120px at 100% 0%, rgba(255,106,42,.09), transparent 70%);
  pointer-events: none;
}
.value-card > *, .area-card > *, .contact-channel > *, .quote-side-card > * { position: relative; z-index: 1; }
.form-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: clamp(1.45rem, 2.4vw, 2.05rem); }
.form-step-title { letter-spacing: -.02em; }
.service-tile-inner {
  border-radius: 18px;
  min-height: 122px;
  background: rgba(255,255,255,.82);
}
.service-tile:hover .service-tile-inner,
.service-tile input:checked + .service-tile-inner {
  border-color: rgba(255,106,42,.5);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,106,42,.28);
}
.contact-channel { position: relative; overflow: hidden; }

/* Footer and floating CTAs */
.site-footer {
  background:
    radial-gradient(650px 260px at 15% 0%, rgba(255,106,42,.16), transparent 60%),
    linear-gradient(180deg, #06111f, #04070d);
}
.footer-grid { gap: clamp(30px, 4vw, 58px); }
.brand-mark-light { background: rgba(255,255,255,.10); color: #fff; transform: none; }
.social-link { border-radius: 14px; background: rgba(255,255,255,.08); }
.whatsapp-fab {
  border: 1px solid rgba(255,255,255,.35);
}
.mobile-cta-bar {
  background: rgba(255,255,255,.82);
  border-top-color: rgba(6,23,40,.08);
  box-shadow: 0 -18px 44px -34px rgba(6,23,40,.45);
}
.mcb-btn { border-radius: 18px; }
.mcb-call { background: linear-gradient(135deg, #061728, #123d6c); }
.mcb-quote { background: var(--gradient-brand); color: #17100a; }
.mcb-quote:hover { color: #17100a; }

/* Motion */
.reveal { transform: translateY(24px) scale(.985); }
.reveal.in { transform: none; }
@keyframes ll-sheen {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@media (min-width: 1100px) {
  .hero-card { transform: rotate(1deg); }
  .hero-card:hover { transform: rotate(0deg) translateY(-4px); }
  .gallery-tile:nth-child(1) { grid-column: span 4; }
  .gallery-tile:nth-child(2) { grid-column: span 2; }
  .gallery-tile:nth-child(3) { grid-column: span 2; }
  .gallery-tile:nth-child(4) { grid-column: span 4; }
  .gallery-tile:nth-child(5), .gallery-tile:nth-child(6) { grid-column: span 3; }
}

@media (max-width: 1024px) {
  .hero { min-height: auto; padding-bottom: 118px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .stats { margin-top: -62px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile:nth-child(n) { grid-column: span 1; }
}

@media (max-width: 768px) {
  body::before { background-size: 36px 36px; opacity: .6; }
  h1 { font-size: clamp(2.38rem, 12vw, 3.25rem); }
  .site-header { background: rgba(255,255,255,.94); }
  .header-inner { height: 66px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  .primary-nav {
    top: 66px;
    height: calc(100dvh - 66px);
    background:
      radial-gradient(420px 180px at 100% 0%, rgba(255,106,42,.10), transparent 65%),
      #fff;
  }
  .primary-nav .nav-link {
    border-bottom: 1px solid rgba(6,23,40,.07);
    border-radius: 14px;
    padding: 15px 12px;
  }
  .hero { padding: 54px 0 100px; }
  .hero-copy::before { font-size: 10px; letter-spacing: .12em; }
  .hero-copy .lede { margin-bottom: 1.35rem; }
  .hero-proof-stack { grid-template-columns: 1fr; max-width: 100%; }
  .hero-proof-item { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
  .hero-trust li { width: 100%; }
  .hero-card { border-radius: 24px; }
  .stats { margin-top: -56px; padding-bottom: 44px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); border-radius: 24px; }
  .stat-item { padding: 18px 12px; border-radius: 18px; }
  .benefit { padding: 20px; }
  .process-step { min-height: 0; }
  .process-step h3 { margin-top: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile:nth-child(n) { aspect-ratio: 16 / 11; }
  .form-card { border-radius: 24px; }
  .service-tile-inner { min-height: 112px; }
  .page-header { padding-top: 66px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .hero-actions { gap: 10px; }
  .btn-lg { padding: 15px 20px; }
  .stats-grid { padding: 8px; gap: 8px; }
  .stat-item .stat-num { font-size: 1.85rem; }
  .stat-item .stat-label { font-size: 11px; }
  .section-eyebrow { font-size: 11px; }
  .card, .review-card, .review-tile, .rs-card { padding: 22px; }
  .service-chooser { grid-template-columns: 1fr; }
  .mcb-btn { padding: 13px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-bar::after { animation: none; }
  .hero-card, .hero-card:hover { transform: none; }
}

/* Override the old hero entrance animation so the v3 card tilt and hover are not frozen by animation fill-mode. */
.hero-card { animation: none; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
