/* ============================================================
   KASAR CLEANING — style.css
   Premium residential & commercial cleaning, Calgary AB
   ============================================================ */

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

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Colors */
  --clr-white:        #ffffff;
  --clr-off-white:    #f7f8fc;
  --clr-light:        #eef0f6;
  --clr-border:       #dde1ed;
  --clr-muted:        #8b93a7;
  --clr-body:         #3d4257;
  --clr-heading:      #0e1220;
  --clr-black:        #080c18;

  --clr-blue-50:      #edf4ff;
  --clr-blue-100:     #d0e5ff;
  --clr-blue-400:     #4d8ff5;
  --clr-blue-500:     #2974e8;
  --clr-blue-600:     #1a5fd4;
  --clr-blue-700:     #1249b0;
  --clr-blue-dark:    #0d3a8a;

  --clr-accent:       #2974e8;
  --clr-accent-hover: #1a5fd4;
  --clr-accent-light: #edf4ff;

  --clr-success:      #16a34a;
  --clr-star:         #f59e0b;

  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   1.875rem;
  --text-3xl:   2.25rem;
  --text-4xl:   2.875rem;
  --text-5xl:   3.5rem;
  --text-6xl:   4.5rem;

  --leading-tight:  1.15;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-loose:  1.75;

  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semi:    600;
  --weight-bold:    700;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(14,18,32,0.06);
  --shadow-sm:  0 2px 6px rgba(14,18,32,0.08);
  --shadow-md:  0 4px 16px rgba(14,18,32,0.10);
  --shadow-lg:  0 8px 32px rgba(14,18,32,0.12);
  --shadow-xl:  0 16px 48px rgba(14,18,32,0.14);
  --shadow-blue:0 8px 32px rgba(41,116,232,0.25);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;

  /* Layout */
  --container-max: 1200px;
  --container-md:  860px;
  --container-sm:  640px;
  --nav-height:    100px;
  --section-py:    var(--sp-20);
}

/* ── Modern Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--clr-body);
  background-color: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: var(--weight-bold); line-height: var(--leading-tight); letter-spacing: -0.03em; }
p { line-height: var(--leading-normal); }

:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.container--md {
  max-width: var(--container-md);
}

.container--sm {
  max-width: var(--container-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section {
  padding-block: var(--section-py);
}

.section--alt {
  background-color: var(--clr-off-white);
}

.section--dark {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

.section--blue {
  background-color: var(--clr-blue-600);
  color: var(--clr-white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
}

.section-header {
  margin-bottom: var(--sp-12);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-label {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--clr-heading);
  line-height: var(--leading-tight);
  margin-bottom: var(--sp-4);
}

.section-title--light {
  color: var(--clr-white);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--clr-muted);
  max-width: 560px;
  line-height: var(--leading-loose);
}

.section-subtitle--center {
  margin-inline: auto;
  text-align: center;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.75);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
  margin-top: var(--sp-5);
}

.divider--center { margin-inline: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.8125rem var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semi);
  line-height: 1;
  border-radius: var(--radius-full);
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease-spring);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

/* Primary */
.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background: var(--clr-accent-hover);
  box-shadow: 0 12px 40px rgba(41,116,232,0.35);
  transform: translateY(-1px);
}

/* Secondary (outlined) */
.btn--secondary {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}

.btn--secondary:hover {
  background: var(--clr-blue-50);
  transform: translateY(-1px);
}

/* Ghost white (for dark backgrounds) */
.btn--ghost-white {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

/* White solid (for colored backgrounds) */
.btn--white {
  background: var(--clr-white);
  color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem var(--sp-10);
  font-size: var(--text-md);
}

.btn--sm {
  padding: 0.5625rem var(--sp-5);
  font-size: var(--text-sm);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 1px 0 rgba(41,116,232,0.08), 0 2px 12px rgba(14,18,32,0.06);
  transition: box-shadow var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}

.nav--scrolled {
  background: linear-gradient(180deg, #ffffff 0%, #e8effd 100%);
  box-shadow: 0 1px 0 rgba(41,116,232,0.12), 0 4px 20px rgba(14,18,32,0.10);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--clr-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-mark svg {
  width: 20px;
  height: 20px;
  color: var(--clr-white);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--clr-heading);
  letter-spacing: -0.01em;
}

.nav__logo-tag {
  font-size: var(--text-xs);
  color: var(--clr-muted);
  font-weight: var(--weight-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop menu */
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  text-align: left;
  justify-content: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--clr-body);
  border-radius: var(--radius-md);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
}

.nav__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
}

.nav__item:hover .nav__chevron,
.nav__item--open .nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  min-width: 680px;
  padding: var(--sp-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

/* Service Areas dropdown is narrower, single column */
.nav__dropdown--areas {
  min-width: 320px;
  grid-template-columns: 1fr;
}

.nav__item:hover .nav__dropdown,
.nav__item--open .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-group {}

.nav__dropdown-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 0 var(--sp-3) var(--sp-2);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-2);
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-body);
  border-radius: var(--radius-md);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.nav__dropdown-link:hover {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
}

.nav__dropdown-link--active {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
  font-weight: 600;
}

.nav__dropdown-link--note {
  color: var(--clr-muted);
  font-style: italic;
  font-size: var(--text-xs);
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--clr-border);
}

.nav__dropdown-link--note:hover {
  color: var(--clr-accent);
  background: none;
}

.nav__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  flex-shrink: 0;
}

/* Nav CTA */
.nav__cta {
  flex-shrink: 0;
  display: none;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  border-radius: var(--radius-md);
  transition: background var(--dur-fast) var(--ease);
}

.nav__hamburger:hover { background: var(--clr-light); }

.nav__hamburger span {
  display: block;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--clr-heading);
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease),
              width var(--dur-base) var(--ease);
}

.nav__hamburger span:last-child { width: 66%; }

.nav__hamburger--open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger--open span:last-child  { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  position: fixed;
  inset: var(--nav-height) 0 0;
  background: var(--clr-white);
  overflow-y: auto;
  padding: var(--sp-6) var(--sp-5) var(--sp-10);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  z-index: 999;
  border-top: 1px solid var(--clr-border);
}

.nav__mobile--open { transform: translateX(0); }

.nav__mobile-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-weight: var(--weight-medium);
  font-size: var(--text-md);
  color: var(--clr-heading);
  border-radius: var(--radius-md);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.nav__mobile-link:hover {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
}

.nav__mobile-group {
  margin-top: var(--sp-4);
}

.nav__mobile-group-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 0 var(--sp-4) var(--sp-2);
}

.nav__mobile-sub-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--clr-body);
  border-radius: var(--radius-md);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.nav__mobile-sub-link:hover {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
}

.nav__mobile-sub-link--active {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
  font-weight: 600;
}

.nav__mobile-divider {
  height: 1px;
  background: var(--clr-border);
  margin: var(--sp-4) 0;
}

.nav__mobile-cta {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: var(--sp-16);
  background-color: var(--clr-heading);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,12,24,0.95) 0%,
    rgba(8,12,24,0.75) 50%,
    rgba(18,73,176,0.55) 100%
  );
}

/* Decorative mesh blobs */
.hero__blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: var(--clr-blue-500);
  top: -100px;
  right: -80px;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: #4d8ff5;
  bottom: 60px;
  left: -60px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--sp-20) var(--sp-16);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(41,116,232,0.18);
  border: 1px solid rgba(77,143,245,0.35);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: #a3c8ff;
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(4px);
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #4d8ff5;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

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

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--clr-white);
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
  max-width: 700px;
}

.hero__heading em {
  font-style: italic;
  color: #7eb8ff;
}

.hero__subhead {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-loose);
  max-width: 520px;
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-12);
}

.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  align-items: center;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

.hero__trust-icon {
  width: 16px;
  height: 16px;
  color: #4d8ff5;
  flex-shrink: 0;
}

/* Hero Stats (floating cards) */
.hero__stats {
  display: none; /* shown on larger screens */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: var(--sp-4);
  z-index: 2;
}

.hero__stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
  min-width: 140px;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--clr-white);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-top: var(--sp-1);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
  opacity: 0.5;
  transition: opacity var(--dur-base) var(--ease);
}

.hero__scroll-cue:hover { opacity: 0.9; }

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
}

.hero__scroll-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Trust / Social Proof ─────────────────────────────────── */
.proof-bar {
  background: var(--clr-off-white);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--sp-5);
}

.proof-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  align-items: center;
  justify-content: center;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--clr-body);
}

.proof-bar__icon {
  width: 18px;
  height: 18px;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.proof-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--clr-border);
}

/* Reviews section */
.reviews {}

.reviews__aggregate {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-10);
  box-shadow: var(--shadow-sm);
}

.reviews__score {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--clr-heading);
  line-height: 1;
}

.reviews__stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 18px;
  height: 18px;
  fill: var(--clr-star);
  color: var(--clr-star);
}

.star--empty { fill: var(--clr-border); color: var(--clr-border); }

.reviews__count {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  margin-top: var(--sp-1);
}

.reviews__platforms {
  margin-left: auto;
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.reviews__platform-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--clr-body);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  color: var(--clr-white);
  font-weight: var(--weight-bold);
  font-size: var(--text-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__info {}

.review-card__name {
  font-weight: var(--weight-semi);
  color: var(--clr-heading);
  font-size: var(--text-sm);
}

.review-card__meta {
  font-size: var(--text-xs);
  color: var(--clr-muted);
  margin-top: 2px;
}

.review-card__stars {
  margin-bottom: var(--sp-3);
  display: flex;
  gap: 2px;
}

.review-card__body {
  font-size: var(--text-sm);
  color: var(--clr-body);
  line-height: var(--leading-loose);
}

.review-card__service-tag {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: var(--sp-1) var(--sp-3);
  background: var(--clr-blue-50);
  color: var(--clr-blue-600);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
}

/* Before / After */
.before-after {
  margin-top: var(--sp-16);
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

.ba-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ba-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.ba-card:hover .ba-card__img-wrap img { transform: scale(1.04); }

.ba-card__label {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: rgba(8,12,24,0.75);
  color: var(--clr-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.ba-card__caption {
  background: var(--clr-white);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--clr-muted);
  border-top: 1px solid var(--clr-border);
}

/* ── Services ─────────────────────────────────────────────── */
.services {}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.service-card {
  position: relative;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  overflow: hidden;
  transition: box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--clr-blue-100);
  transition: box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-blue-500), var(--clr-blue-400));
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}

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

.service-card__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--clr-blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: background var(--dur-base) var(--ease);
}

.service-card:hover .service-card__icon-wrap {
  background: var(--clr-blue-100);
}

.service-card__icon {
  width: 26px;
  height: 26px;
  color: var(--clr-accent);
}

.service-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-2);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--clr-heading);
  margin-bottom: var(--sp-3);
}

.service-card__body {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-5);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.service-card__list-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--clr-body);
}

.service-card__check {
  width: 16px;
  height: 16px;
  color: var(--clr-success);
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--clr-accent);
  transition: gap var(--dur-base) var(--ease-spring);
}

.service-card:hover .service-card__link { gap: var(--sp-3); }

.service-card--featured {
  background: var(--clr-blue-600);
  border-color: var(--clr-blue-600);
  color: var(--clr-white);
}

.service-card--featured .service-card__icon-wrap {
  background: rgba(255,255,255,0.15);
}

.service-card--featured .service-card__icon {
  color: var(--clr-white);
}

.service-card--featured .service-card__tag {
  color: #a3c8ff;
}

.service-card--featured .service-card__title { color: var(--clr-white); }

.service-card--featured .service-card__body,
.service-card--featured .service-card__list-item {
  color: rgba(255,255,255,0.75);
}

.service-card--featured .service-card__check { color: #7eb8ff; }
.service-card--featured .service-card__link  { color: #a3c8ff; }
.service-card--featured:hover { border-color: var(--clr-blue-500); }

/* ── Benefits / Why Choose Us ─────────────────────────────── */
.benefits {}

.benefits__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.benefits__visual {
  position: relative;
}

.benefits__img-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
}

.benefits__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.benefits__badge {
  position: absolute;
  bottom: -var(--sp-5);
  right: -var(--sp-5);
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-xl);
  text-align: center;
  min-width: 130px;
}

.benefits__badge-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--clr-accent);
  line-height: 1;
}

.benefits__badge-text {
  font-size: var(--text-xs);
  color: var(--clr-muted);
  font-weight: var(--weight-medium);
  margin-top: var(--sp-1);
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.benefit-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.benefit-item__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--clr-blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease);
}

.benefit-item:hover .benefit-item__icon-wrap {
  background: var(--clr-blue-100);
}

.benefit-item__icon {
  width: 22px;
  height: 22px;
  color: var(--clr-accent);
}

.benefit-item__content {}

.benefit-item__title {
  font-weight: var(--weight-semi);
  font-size: var(--text-base);
  color: var(--clr-heading);
  margin-bottom: var(--sp-1);
}

.benefit-item__body {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  line-height: var(--leading-loose);
}

/* Guarantee badges row */
.guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--shadow-xs);
}

.guarantee-badge__icon {
  width: 20px;
  height: 20px;
  color: var(--clr-success);
  flex-shrink: 0;
}

.guarantee-badge__text {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--clr-heading);
}

/* ── Process ──────────────────────────────────────────────── */
.process {}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  position: relative;
}

.process-step {
  display: flex;
  gap: var(--sp-5);
  align-items: stretch;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.process-step__number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.process-step__content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.process-step__title {
  font-weight: var(--weight-semi);
  font-size: var(--text-md);
  color: var(--clr-heading);
  margin-bottom: var(--sp-2);
}

.process-step__body {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  line-height: var(--leading-loose);
}

.process__cta-row {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing {}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.pricing-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pricing-card--popular {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-blue-100), var(--shadow-lg);
  position: relative;
}

.pricing-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__header {}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--clr-heading);
  margin-bottom: var(--sp-2);
}

.pricing-card__description {
  font-size: var(--text-sm);
  color: var(--clr-muted);
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--sp-4);
}

.pricing-card__from {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  margin-bottom: 6px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--clr-heading);
  line-height: 1;
}

.pricing-card__unit {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  margin-bottom: 6px;
}

.pricing-card__includes {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--clr-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
  text-align: left;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--clr-body);
}

.pricing-card__feature-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-success);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: var(--text-sm);
  color: var(--clr-muted);
  line-height: var(--leading-loose);
}

.pricing-note strong {
  color: var(--clr-heading);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.faq-item--open {
  border-color: var(--clr-blue-100);
  box-shadow: var(--shadow-md);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}

.faq-item__trigger:hover { background: var(--clr-off-white); }
.faq-item--open .faq-item__trigger { background: var(--clr-blue-50); }

.faq-item__question {
  font-size: var(--text-base);
  font-weight: var(--weight-semi);
  color: var(--clr-heading);
  line-height: var(--leading-snug);
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--clr-light);
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease-spring);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-base) var(--ease-spring);
}

.faq-item--open .faq-item__icon {
  background: var(--clr-accent);
  color: var(--clr-white);
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

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

.faq-item__answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--clr-body);
  line-height: var(--leading-loose);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-4);
}

.faq__more {
  text-align: center;
  margin-top: var(--sp-8);
}

/* ── Final CTA Section ────────────────────────────────────── */
.cta-section {
  background: var(--clr-heading);
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-24);
}

.cta-section__blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.cta-section__blob--1 {
  width: 600px;
  height: 600px;
  background: var(--clr-blue-500);
  top: -200px;
  right: -100px;
}

.cta-section__blob--2 {
  width: 400px;
  height: 400px;
  background: var(--clr-blue-400);
  bottom: -150px;
  left: -80px;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section__heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--clr-white);
  line-height: var(--leading-tight);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}

.cta-section__sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.68);
  line-height: var(--leading-loose);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.cta-section__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  justify-content: center;
  align-items: center;
}

.cta-section__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.cta-section__trust-icon {
  width: 16px;
  height: 16px;
  color: #4d8ff5;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-section {}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

.contact-info {}

.contact-info__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-6);
}

.contact-info__icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--clr-blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon {
  width: 20px;
  height: 20px;
  color: var(--clr-accent);
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--sp-1);
}

.contact-info__value {
  font-weight: var(--weight-medium);
  color: var(--clr-heading);
}

.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--clr-heading);
}

.form-label span {
  color: var(--clr-accent);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--sp-4);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  color: var(--clr-heading);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--clr-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-blue-100);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b93a7' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  line-height: var(--leading-snug);
}

.form-submit {
  width: 100%;
  margin-top: var(--sp-2);
  justify-content: center;
}

.form-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--clr-muted);
  margin-top: var(--sp-3);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--clr-black);
  color: rgba(255,255,255,0.65);
  padding-top: var(--sp-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  text-decoration: none;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--clr-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--clr-white);
}

.footer__tagline {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  max-width: 280px;
  margin-bottom: var(--sp-5);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.footer__social-link:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast) var(--ease);
  text-decoration: none;
}

.footer__link:hover { color: var(--clr-white); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-3);
  transition: color var(--dur-fast) var(--ease);
}

.footer__contact-item:hover { color: var(--clr-white); }

.footer__contact-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-blue-400);
  flex-shrink: 0;
}

.footer__bottom {
  padding-block: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--dur-fast) var(--ease);
}

.footer__legal-link:hover { color: rgba(255,255,255,0.7); }

/* ── Floating CTA (mobile) ────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  z-index: 900;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 40px rgba(14,18,32,0.2);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  border: 1px solid var(--clr-border);
  transform: translateY(120%);
  transition: transform var(--dur-slow) var(--ease);
}

.floating-cta--visible { transform: translateY(0); }

.floating-cta__text {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--clr-body);
  line-height: 1.3;
}

.floating-cta__text span {
  display: block;
  font-size: var(--text-xs);
  color: var(--clr-muted);
  font-weight: var(--weight-regular);
}

/* ── Misc Components ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}

.badge--blue { background: var(--clr-blue-50); color: var(--clr-blue-600); }
.badge--green { background: #f0fdf4; color: var(--clr-success); }
.badge--light { background: var(--clr-light); color: var(--clr-body); }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Skeleton loaders */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--clr-light) 25%,
    var(--clr-border) 50%,
    var(--clr-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Scroll animation helpers ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }
.reveal--delay-5 { transition-delay: 500ms; }

/* ── Responsive Breakpoints ───────────────────────────────── */

/* sm – 480px */
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}

/* md – 768px */
@media (min-width: 768px) {
  :root { --section-py: var(--sp-24); }

  .container { padding-inline: var(--sp-8); }

  .section-title { font-size: var(--text-4xl); }

  /* Nav */
  .nav__menu { display: flex; }
  .nav__cta  { display: flex; }
  .nav__hamburger { display: none; }

  /* Hero */
  .hero__heading { font-size: var(--text-5xl); }
  .hero__stats   { display: flex; }

  /* Services */
  .services__grid { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process__steps { grid-template-columns: repeat(3, 1fr); }

  /* Pricing */
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }

  /* Before/After */
  .before-after__grid { grid-template-columns: 1fr 1fr; }
.ba-card__images--single { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }

  /* Benefits */
  .benefits__layout { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-form-wrap { grid-template-columns: 1fr 1.5fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  /* CTA section */
  .cta-section__heading { font-size: var(--text-5xl); }

  /* Floating CTA hide on desktop */
  .floating-cta { display: none; }
}

/* lg – 1024px */
@media (min-width: 1024px) {
  :root { --nav-height: 80px; }

  .container { padding-inline: var(--sp-10); }

  .services__grid { grid-template-columns: repeat(3, 1fr); }

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

  .hero__content { padding-block: var(--sp-24) var(--sp-20); }
  .hero__heading { font-size: var(--text-6xl); }

  .section-title { font-size: var(--text-5xl); }
}

/* xl – 1280px */
@media (min-width: 1280px) {
  .container { padding-inline: var(--sp-12); }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .nav, .floating-cta, .hero__scroll-cue { display: none !important; }
  body { background: white; color: black; }
}

/* ── Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Fix: Nav container height so inner aligns correctly ── */
.nav > .container {
  height: 100%;
}

/* ── Nav CTA button — slightly larger than btn--sm ── */
.btn--nav-cta {
  padding: 0.625rem var(--sp-6);
  font-size: var(--text-sm);
}

/* ── Nav: premium light overrides ───────────────────────── */
.nav__link {
  color: var(--clr-body);
  font-weight: var(--weight-semi);
}

.nav__link:hover,
.nav__link--active {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
}

/* ── Nav: scroll progress bar ───────────────────────────── */
.nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-blue-400));
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════════════════════
   HERO — ENTRANCE & AMBIENT ANIMATIONS
══════════════════════════════════════════════════════════════ */

/* ── Blob drift ── */
@keyframes blobDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-30px, 20px) scale(1.07); }
  66%  { transform: translate(20px, -25px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes blobDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(25px, -20px) scale(1.1); }
  70%  { transform: translate(-15px, 30px) scale(0.93); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero__blob--1 { animation: blobDrift1 18s ease-in-out infinite; }
.hero__blob--2 { animation: blobDrift2 22s ease-in-out infinite; }

/* ── Hero content staggered entrance ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease) 0.15s forwards;
}
.hero__heading {
  opacity: 0;
  animation: heroFadeUp 0.75s var(--ease) 0.3s forwards;
}
.hero__subhead {
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease) 0.48s forwards;
}
.hero__actions {
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease) 0.62s forwards;
}
.hero__trust-row {
  opacity: 0;
  animation: heroFadeUp 0.65s var(--ease) 0.8s forwards;
}

/* ── Stat cards slide in from right ── */
@keyframes statSlideIn {
  from { opacity: 0; transform: translateX(40px) translateY(-50%) scale(0.92); }
  to   { opacity: 1; transform: translateX(0)    translateY(-50%) scale(1); }
}

/* Override the translateY(-50%) on the container so children can use it */
.hero__stat-card {
  opacity: 0;
  animation: statCardIn 0.65s var(--ease-spring) forwards;
}
@keyframes statCardIn {
  from { opacity: 0; transform: translateX(48px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}

.hero__stat-card:nth-child(1) { animation-delay: 0.55s; }
.hero__stat-card:nth-child(2) { animation-delay: 0.72s; }
.hero__stat-card:nth-child(3) { animation-delay: 0.89s; }

/* Subtle hover lift on stat cards */
.hero__stat-card {
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.hero__stat-card:hover {
  transform: translateX(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(41,116,232,0.28);
  border-color: rgba(77,143,245,0.45);
}

/* ── Scroll cue drip animation ── */
@keyframes scrollDrip {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero__scroll-line {
  animation: scrollDrip 2s var(--ease) 1.4s infinite;
  transform-origin: top;
}

/* ── Trust icons subtle shimmer on hover ── */
.hero__trust-item {
  transition: color var(--dur-base) var(--ease);
  cursor: default;
}
.hero__trust-item:hover { color: rgba(255,255,255,0.9); }
.hero__trust-item:hover .hero__trust-icon { color: #7eb8ff; }
.hero__trust-icon {
  transition: color var(--dur-base) var(--ease);
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero__blob--1,
  .hero__blob--2,
  .hero__scroll-line { animation: none; }
  .hero__eyebrow,
  .hero__heading,
  .hero__subhead,
  .hero__actions,
  .hero__trust-row,
  .hero__stat-card {
    opacity: 1;
    animation: none;
  }
}

/* Nav height override */
.nav { height: 105px !important; }
.hero { padding-top: 105px !important; }

/* Button size fix */
.btn--nav-cta { padding: 1rem 1.5rem !important; font-size: 1rem !important; }

/* ── Platform badge link animations ──────────────────────── */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41, 116, 232, 0); }
  50%       { box-shadow: 0 0 0 6px rgba(41, 116, 232, 0.12); }
}

a.reviews__platform-badge {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: var(--clr-white);
  transition:
    background var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease-spring),
    color var(--dur-base) var(--ease);
  animation: badgePulse 3s ease-in-out infinite;
}

a.reviews__platform-badge:nth-child(2) {
  animation-delay: 1.5s;
}

a.reviews__platform-badge:hover {
  background: var(--clr-blue-50);
  border-color: var(--clr-blue-400);
  color: var(--clr-blue-600);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(41, 116, 232, 0.18);
  animation: none;
}

a.reviews__platform-badge:active {
  transform: translateY(0) scale(0.97);
}

a.reviews__platform-badge svg {
  transition: transform var(--dur-base) var(--ease-spring);
}

a.reviews__platform-badge:hover svg {
  transform: rotate(-8deg) scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  a.reviews__platform-badge { animation: none; }
}

/* ══════════════════════════════════════════════
   QUOTE MODAL
══════════════════════════════════════════════ */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.quote-modal--open {
  pointer-events: all;
  opacity: 1;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.quote-modal__panel {
  position: relative;
  /* Glass effect */
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2xl);
  padding: var(--sp-10);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(8, 12, 24, 0.55),
              inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2);
  color: var(--clr-white);
}

.quote-modal--open .quote-modal__panel {
  transform: translateY(0) scale(1);
}

/* Scrollbar styling inside panel */
.quote-modal__panel::-webkit-scrollbar { width: 4px; }
.quote-modal__panel::-webkit-scrollbar-track { background: transparent; }
.quote-modal__panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

.quote-modal__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.quote-modal__close:hover {
  background: rgba(255,255,255,0.16);
  color: var(--clr-white);
}

.quote-modal__header {
  margin-bottom: var(--sp-7);
  padding-right: var(--sp-8);
}

/* Override section-label color inside dark modal */
.quote-modal__header .section-label {
  color: rgba(255,255,255,0.55);
}
.quote-modal__header .section-label::before {
  background: rgba(255,255,255,0.35);
}

.quote-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--clr-white);
  line-height: var(--leading-snug);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}

.quote-modal__subtitle {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-normal);
}

/* ── Glass form fields ── */
.quote-modal .form-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.quote-modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.quote-modal .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.quote-modal .form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}

.quote-modal .form-label span {
  color: var(--clr-blue-400);
  margin-left: 2px;
}

.quote-modal .form-input,
.quote-modal .form-select,
.quote-modal .form-textarea {
  width: 100%;
  padding: 0.8rem var(--sp-4);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  color: var(--clr-white);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.quote-modal .form-input::placeholder,
.quote-modal .form-textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.quote-modal .form-input:focus,
.quote-modal .form-select:focus,
.quote-modal .form-textarea:focus {
  outline: none;
  border-color: rgba(77,143,245,0.7);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 3px rgba(41,116,232,0.25);
}

/* Select arrow for dark background */
.quote-modal .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
  /* Fix browser select background on dark */
  background-color: rgba(255,255,255,0.07);
  color-scheme: dark;
}

.quote-modal .form-select option {
  background: #1a2540;
  color: var(--clr-white);
}

.quote-modal .form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Submit button full width inside modal */
.quote-modal .form-submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--sp-2);
}

@media (max-width: 520px) {
  .quote-modal__panel { padding: var(--sp-8) var(--sp-5); }
  .quote-modal__title  { font-size: var(--text-xl); }
  .quote-modal .form-row { grid-template-columns: 1fr; }
}

/* ── Hero Video ── */
.hero__video-wrap {
  position: absolute;
  right: clamp(1.5rem, 5vw, 6rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(280px, 34vw, 520px);
  pointer-events: none;
}

.hero__video-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
}

.hero__video-inner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero__video-wrap { display: none; }
}

/* ── Hero Background Video ── */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Remove the old floated card styles if you added them previously */
.hero__video-wrap { display: none !important; }

/* ── Dropdown hover gap fix ──────────────────────────────── */
.nav__item {
  position: relative;
}

/* Bridge the gap between nav link and dropdown so cursor doesn't break hover */
.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--sp-4); /* covers the gap */
  background: transparent;
}

/* ══════════════════════════════════════════════════════════
   MOBILE OPTIMISATION — append to bottom of style.css
   Covers all sections for full responsiveness ≤ 767px
   ══════════════════════════════════════════════════════════ */

/* ── Global mobile base (< 768px) ────────────────────────── */
@media (max-width: 767px) {

  /* Nav height reduction */
  :root {
    --nav-height: 68px;
    --section-py: var(--sp-16);
  }

  /* Tighten container horizontal padding */
  .container { padding-inline: var(--sp-4); }

  /* Section titles — prevent overflow */
  .section-title {
    font-size: var(--text-2xl);
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: var(--text-sm);
  }

  /* ── Hero ─────────────────────────────────────────────── */
  .hero__content {
    padding-block: var(--sp-10) var(--sp-12);
  }

  .hero__heading {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    letter-spacing: -0.02em;
  }

  .hero__subhead {
    font-size: var(--text-base);
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: var(--sp-8);
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__trust-row {
    gap: var(--sp-3);
  }

  .hero__trust-item {
    font-size: var(--text-xs);
  }

  /* ── Reviews ──────────────────────────────────────────── */
  .reviews__aggregate {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .reviews__platforms {
    flex-wrap: wrap;
    gap: var(--sp-3);
  }

  /* ── Services grid ────────────────────────────────────── */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* ── Benefits ─────────────────────────────────────────── */
  .benefits__badge {
    position: static;
    margin-top: var(--sp-4);
    transform: none;
    width: 100%;
    min-width: unset;
    box-shadow: var(--shadow-md);
  }

  .benefits__img-wrap {
    aspect-ratio: 4/3;
  }

  /* ── Process ──────────────────────────────────────────── */
  .process-step {
    flex-direction: column;
    gap: var(--sp-3);
  }

  /* ── Pricing ──────────────────────────────────────────── */
  .pricing-card {
    padding: var(--sp-6);
  }

  .pricing-card__amount {
    font-size: var(--text-3xl);
  }

  /* ── CTA section ──────────────────────────────────────── */
  .cta-section__heading {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .cta-section__sub {
    font-size: var(--text-base);
    max-width: 100%;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-section__trust {
    gap: var(--sp-4);
  }

  /* ── Contact form ─────────────────────────────────────── */
  .contact-form {
    padding: var(--sp-6) var(--sp-5);
  }

  /* ── Footer ───────────────────────────────────────────── */
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-3);
  }

  .footer__legal {
    justify-content: center;
  }

  /* ── Floating CTA ─────────────────────────────────────── */
  .floating-cta {
    left: var(--sp-4);
    right: var(--sp-4);
    bottom: var(--sp-4);
    border-radius: var(--radius-xl);
    padding: var(--sp-3) var(--sp-4);
  }
}

/* ── Extra small screens (< 400px) ───────────────────────── */
@media (max-width: 399px) {

  :root { --nav-height: 62px; }

  .container { padding-inline: var(--sp-3); }

  .section-title {
    font-size: var(--text-xl);
  }

  .hero__heading {
    font-size: 1.65rem;
  }

  .hero__eyebrow {
    font-size: var(--text-xs);
  }

  .pricing-card {
    padding: var(--sp-5);
  }

  .contact-form {
    padding: var(--sp-5) var(--sp-4);
  }

  .nav__logo img {
    height: 32px;
  }

  /* Ensure no horizontal scroll */
  .hero, .section, .footer {
    overflow-x: hidden;
  }
}

/* ── Prevent body horizontal scroll on all mobile ─────────── */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
}

/* Mobile nav accordion */
.nav__mobile-accordion {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.nav__mobile-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-weight: var(--weight-medium);
  font-size: var(--text-md);
  color: var(--clr-heading);
  border-radius: var(--radius-md);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.nav__mobile-accordion-btn:hover {
  color: var(--clr-accent);
  background: var(--clr-blue-50);
}

.nav__mobile-accordion-btn[aria-expanded="true"] {
  color: var(--clr-accent);
}

.nav__mobile-accordion-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
}

.nav__mobile-accordion-btn[aria-expanded="true"] .nav__mobile-accordion-chevron {
  transform: rotate(180deg);
}

.nav__mobile-accordion-panel {
  display: none;
  padding-left: var(--sp-3);
  border-left: 2px solid var(--clr-border);
  margin: 0 var(--sp-4) var(--sp-2);
}

.nav__mobile-accordion-panel--open {
  display: block;
}

@media (max-width: 767px) {
  .nav__mobile {
    padding-top: var(--sp-12);
  }
}

@media (max-width: 767px) {
  .nav__logo img {
    height: 75px !important;
  }
}

/* Services nav trigger — div replaces button to allow nested <a> */
.nav__link--trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.nav__link--trigger .nav__link-label {
  color: inherit;
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
}
.nav__link--trigger .nav__link-label:hover {
  color: var(--accent);
}

/* ── Service card: push CTA link to bottom of card ── */
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card__list {
  flex: 1;
  text-align: left;
}

/* ── Service area cards: align CTA buttons to bottom ── */
#areas .service-card {
  display: flex;
  flex-direction: column;
}
#areas .service-card__link {
  margin-top: auto;
}

.footer__link--active { color: var(--clr-white); }

/* ── Center orphaned last row in odd-count grids ───────────── */
.services__grid--center-last {
  justify-content: center;
}

.services__grid--center-last .service-card {
  min-width: 0;
}

@media (min-width: 768px) {
  .services__grid--center-last {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-5);
  }

  .services__grid--center-last .service-card {
    flex: 0 0 calc(50% - var(--sp-5) / 2);
  }
}

@media (min-width: 1024px) {
  .services__grid--center-last .service-card {
    flex: 0 0 calc(33.333% - var(--sp-5) * 2 / 3);
  }
}

/* ── Global 4-column grid (service pages) ──────────────────── */
.services__grid--4col {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .services__grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Calgary Service Type Cards ── */
.service-card--calgary-type {
  display: flex;
  flex-direction: column;
}
.service-card--calgary-type .service-card__body {
  flex: 1;
  text-align: left;
  margin-bottom: 0;
}

.calgary-type__list {
  list-style: none;
  margin: var(--sp-4) 0 0;
  padding: var(--sp-3) 0 0;
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.calgary-type__list li::before {
  content: "→";
  margin-right: var(--sp-2);
  color: var(--clr-accent);
  font-size: 0.8em;
}

.calgary-type__list a {
  color: var(--clr-text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.18s ease;
}

.calgary-type__list a:hover {
  color: var(--clr-accent);
}

/* ── Surrounding area tiles ── */
.process-step__content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.process-step__actions {
  margin-top: auto;
  padding-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
}

/* ── Coverage map tiles: pin Learn More to bottom ── */
.service-card--clickable {
  display: flex;
  flex-direction: column;
}
.service-card--clickable .service-card__body {
  flex: 1;
  text-align: left;
}
.service-card--clickable:hover .service-card__link {
  gap: var(--sp-3);
}

/* Gallery: single-image card variant */
.ba-card__images--single {
  grid-template-columns: 1fr;
}
.ba-card__images--single .ba-card__img-wrap img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

/* ── Hero trust badges: 2×2 grid on mobile ───────────────── */
@media (max-width: 767px) {
  .hero__trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
    overflow: visible;
    flex-wrap: unset;
    white-space: unset;
  }

  .hero__trust-item {
    white-space: normal;
    flex-shrink: unset;
    align-items: flex-start;
    font-size: 0.7rem;
    line-height: 1.3;
  }
}
/* Mobile accordion — clickable label link */
.nav__mobile-accordion-label {
  flex: 1;
  text-align: left;
  color: inherit;
  text-decoration: none;
  font: inherit;
}

/* ── FAQ more actions button group ── */
.faq__more-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

.footer__contact-item:has(span) {
  align-items: flex-start;
}
.footer__contact-item:has(span) .footer__contact-icon {
  margin-top: 2px;
}

/* ── Mobile Nav Slogan ─────────────────────────────── */
.nav__mobile-slogan {
  display: none;
}

@media (max-width: 768px) {
  .nav__mobile-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 3px;
    pointer-events: none;
    user-select: none;
  }

  .nav__mobile-slogan span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #0e1220;
    line-height: 1;
  }

  .nav__mobile-slogan::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #2974e8;
    margin-top: 5px;
    order: 99;
  }
}