/* ============================================================
   Windows 4U — styles.css
   Shared stylesheet for all pages
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  /* Brand Colors */
  --dark:        #1c1c1e;
  --dark-2:      #2a2a2d;
  --blue:        #10F5CF;           /* Brand mint — use on dark backgrounds */
  --blue-dark:   #0bdfbc;           /* Hover/active state */
  --blue-text:   #07a888;           /* Mint text on white/light backgrounds */
  --blue-light:  #e0fdf9;           /* Light mint tint for card/tag backgrounds */
  --blue-xlight: #f0fefb;           /* Near-white mint for nav hover */
  --amber:       #f59e0b;

  /* Text */
  --text:        #1f2937;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;

  /* Backgrounds */
  --bg:          #F8F7F4;
  --bg-2:        #EDEAE5;
  --white:       #ffffff;
  --border:      #e5e7eb;

  /* Status */
  --success:     #10b981;
  --error:       #ef4444;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;

  /* Spacing scale */
  --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;

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.09), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.1),  0 8px 10px rgba(0,0,0,.04);

  /* Transitions */
  --t: 0.2s ease;
  --t-slow: 0.35s ease;

  /* Container */
  --max-w: 1200px;
  --pad:   1.25rem;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-dark); }

ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

p { line-height: 1.7; }

button { font-family: var(--font); cursor: pointer; }

/* ============================================================
   3. Layout Helpers
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section         { padding: var(--sp-20) 0; }
.section--sm     { padding: var(--sp-12) 0; }
.section--alt    { background: var(--bg); }
.section--dark   { background: var(--dark); }
.section--blue   { background: var(--blue); }

.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .stat__label { color: var(--white); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;         gap: var(--sp-8);  align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr);   gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr);   gap: var(--sp-6); }

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

/* Section headers */
.section-hd        { text-align: center; margin-bottom: var(--sp-12); }
.section-tag       {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--blue-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  padding-left: .75rem;
  border-left: 3px solid var(--blue);
  background: none;
  border-radius: 0;
}
.section-title     { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 4vw, 2.75rem); margin-bottom: var(--sp-4); letter-spacing: -.01em; }
.section-sub       {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   4. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  font-size: .9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--blue-text); outline-offset: 3px; }

.btn-lg  { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm  { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue);
  color: var(--dark);           /* dark text — #10F5CF is a light mint */
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--blue-text);      /* darker mint for readability on white */
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--dark);           /* dark text on mint bg */
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   5. Top Bar
   ============================================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: .8125rem;
  padding: .5rem 0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.top-bar__left a,
.top-bar__left span {
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: .375rem;
  white-space: nowrap;
  transition: color var(--t);
  text-decoration: none;
}
.top-bar__left a:hover { color: var(--white); }

.top-bar__right {
  display: flex;
  align-items: center;
  gap: .375rem;
}
.top-bar__right a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: all var(--t);
  text-decoration: none;
}
.top-bar__right a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

/* ============================================================
   6. Header / Nav
   ============================================================ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.logo-img { height: 48px; width: auto; display: block; } /* actual logo image */
.logo__mark {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.05em;
}
.logo__name {
  font-size: 1.4375rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.03em;
}
.logo__name span { color: var(--blue); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: .125rem;
}
.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .875rem;
  color: var(--text);
  font-weight: 500;
  font-size: .9375rem;
  border-radius: var(--r-sm);
  transition: all var(--t);
  text-decoration: none;
}
.nav__link:hover,
.nav__link.active {
  color: var(--blue-text);      /* darker mint for nav on white */
  background: var(--blue-xlight);
}
.nav__link .caret { font-size: .7rem; opacity: .6; transition: transform var(--t); }
.nav__item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  min-width: 210px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t);
  z-index: 100;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  color: var(--text);
  border-radius: var(--r-sm);
  font-size: .9375rem;
  transition: all var(--t);
  text-decoration: none;
}
.nav__dropdown a:hover { background: var(--blue-xlight); color: var(--blue-text); }
.nav__dropdown .dd-icon { font-size: 1rem; }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: var(--sp-4); }
.header__phone {
  font-weight: 600;
  color: var(--dark);
  font-size: .9375rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  text-decoration: none;
  transition: color var(--t);
}
.header__phone:hover { color: var(--blue); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .375rem .5rem;
  color: var(--dark);
  font-size: 1.25rem;
  line-height: 1;
  transition: all var(--t);
}
.nav-toggle:hover { border-color: var(--blue); color: var(--blue); }
.nav-toggle[aria-expanded="true"] .icon-menu  { display: none; }
.nav-toggle[aria-expanded="false"] .icon-close { display: none; }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 800;
  opacity: 0;
  transition: opacity var(--t);
}
.nav-overlay.open { display: block; opacity: 1; }

/* ============================================================
   7. Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: var(--sp-24) 0 var(--sp-20);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: .35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(28,28,30,.97) 0%, rgba(28,28,30,.75) 60%, rgba(16,245,207,.15) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(16,245,207,.15);
  border: 1px solid rgba(16,245,207,.4);
  color: var(--blue);           /* mint on dark hero — glows */
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.875rem);
  color: var(--white);
  margin-bottom: var(--sp-5);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.01em;
}
.hero__h1 em { color: var(--blue); font-style: italic; } /* brand mint on dark hero */
.hero__p {
  font-size: 1.125rem;
  color: rgba(255,255,255,.82);
  margin-bottom: var(--sp-8);
  line-height: 1.72;
  max-width: 600px;
}
.hero__btns {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  flex-wrap: nowrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.hero__stat strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.hero__stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.hero__stat-sep {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--dark);
  padding: var(--sp-12) 0 var(--sp-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(29,111,207,.07);
  top: -250px; right: -150px;
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-block;
  background: rgba(16,245,207,.15);
  border: 1px solid rgba(16,245,207,.35);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: var(--sp-4);
  letter-spacing: -.01em;
}
.page-hero__p {
  color: rgba(255,255,255,.78);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto var(--sp-6);
  line-height: 1.72;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .8375rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-5);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: .4; font-size: .7rem; }

/* ============================================================
   8. Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: var(--sp-8) 0;
}
.trust-bar__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: var(--sp-3) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item .tbi {
  font-size: .85rem;
  flex-shrink: 0;
}
.trust-bar__item div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.trust-bar__item strong {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.trust-bar__item span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}

/* ============================================================
   9. Cards
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-slow);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}
.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  position: relative;
  z-index: 1;
}
.card:hover .card__img img { transform: scale(1.05); }

.card__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2.5rem;
  gap: .5rem;
}
.card__img-placeholder span { font-size: .875rem; font-weight: 500; }

.card__body  { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.card__tag   {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-text);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  margin-bottom: .75rem;
}
.card__h3    { font-size: 1.2rem; margin-bottom: .625rem; }
.card__p     { color: var(--text-muted); font-size: .9375rem; line-height: 1.65; flex: 1; margin-bottom: var(--sp-5); }
.card__link  {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  color: var(--blue-text);
  font-weight: 600;
  font-size: .9375rem;
  transition: gap var(--t);
}
.card__link:hover { gap: .625rem; color: var(--dark); }

/* ============================================================
   10. Feature Boxes
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--t-slow);
}
.feature:hover { border-color: var(--blue); box-shadow: 0 10px 15px rgba(16,245,207,.15); transform: translateY(-3px); }

.feature__icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(16,245,207,.15), rgba(16,245,207,.04));
  border: 1px solid rgba(16,245,207,.28);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--sp-5);
  color: var(--blue-text);
}
.feature__h3  { font-size: 1.0625rem; margin-bottom: .5rem; }
.feature__p   { color: var(--text-muted); font-size: .9375rem; line-height: 1.62; }

/* ============================================================
   11. Process Steps
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--sp-6);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 64px; height: 64px;
  background: var(--blue);
  color: var(--dark);           /* dark text on mint */
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 auto var(--sp-5);
  box-shadow: 0 0 0 8px var(--white), 0 0 0 10px var(--blue-light);
}
.step__h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.step__p  { color: var(--text-muted); font-size: .9rem; line-height: 1.62; }

/* ============================================================
   12. Stats Bar
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); text-align: center; }
.stat__num   { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3rem); font-weight: 400; color: var(--blue); line-height: 1; margin-bottom: .625rem; }
.stat__label { font-size: .875rem; color: rgba(255,255,255,.6); font-weight: 400; line-height: 1.5; max-width: 200px; margin: 0 auto; }

/* ============================================================
   13. Testimonials
   ============================================================ */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -.25rem; left: 1.25rem;
  font-size: 4.5rem;
  color: var(--blue-text);      /* darker mint so quote mark is visible on white */
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .5;
}
.testimonial__stars { color: var(--amber); font-size: .9rem; margin-bottom: var(--sp-4); margin-top: 1.5rem; }
.testimonial__text  { color: var(--text-muted); font-size: .9375rem; line-height: 1.7; margin-bottom: var(--sp-5); font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: .75rem; }
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-text);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial__name     { font-weight: 600; font-size: .9375rem; color: var(--dark); }
.testimonial__location { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   14. FAQ Accordion
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .625rem; }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.is-open { border-color: var(--blue-text); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  gap: var(--sp-4);
  user-select: none;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }

.faq-icon {
  width: 30px; height: 30px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-text);
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--dark);           /* dark text on mint */
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.faq-item.is-open .faq-a { max-height: 400px; }

.faq-a__inner {
  padding: 1rem 1.5rem 1.375rem;
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.72;
  border-top: 1px solid var(--border);
}

/* ============================================================
   15. Remote Estimate Band
   ============================================================ */
.remote { background: var(--dark); color: var(--white); padding: var(--sp-16) 0; border-top: 3px solid var(--blue); }
.remote .grid-2 { gap: var(--sp-12); }

.remote__eyebrow {
  display: inline-block;
  background: rgba(16,245,207,.15);
  border: 1px solid rgba(16,245,207,.35);
  color: var(--blue);           /* mint on dark — perfect */
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.remote__h2   { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.75rem,3.75vw,2.5rem); color: var(--white); margin-bottom: var(--sp-4); letter-spacing: -.01em; }
.remote__p    { color: rgba(255,255,255,.88); font-size: 1.0625rem; line-height: 1.72; margin-bottom: var(--sp-6); }
.remote__list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: var(--sp-8); }
.remote__list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.88);
}
.remote__list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(16,245,207,.2);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* Quick form panel */
.quick-form-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(16,245,207,.25);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(4px);
}
.quick-form-panel h3 { color: var(--white); font-size: 1.25rem; margin-bottom: var(--sp-6); }

/* Dark-theme overrides for the form inside the dark remote section */
.quick-form-panel .form-label {
  color: rgba(255,255,255,.8);
}
.quick-form-panel .form-label .req {
  color: var(--blue);
}
.quick-form-panel .form-input,
.quick-form-panel .form-select,
.quick-form-panel .form-textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}
.quick-form-panel .form-input::placeholder,
.quick-form-panel .form-textarea::placeholder {
  color: rgba(255,255,255,.35);
}
.quick-form-panel .form-input:focus,
.quick-form-panel .form-select:focus,
.quick-form-panel .form-textarea:focus {
  background: rgba(255,255,255,.13);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(16,245,207,.12);
}
.quick-form-panel .form-select option {
  background: #2a2a2e;
  color: var(--white);
}
.quick-form-panel .form-note {
  color: rgba(255,255,255,.45);
}
.quick-form-panel .form-error-msg {
  color: #ff6b6b;
}

/* ============================================================
   16. CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(130deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: var(--sp-20) 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(29,111,207,.07);
  top: -300px; right: -200px;
  pointer-events: none;
}
.cta-banner__h2   { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem,4vw,2.875rem); color: var(--white); margin-bottom: var(--sp-4); letter-spacing: -.01em; }
.cta-banner__p    { color: rgba(255,255,255,.78); font-size: 1.125rem; max-width: 560px; margin: 0 auto var(--sp-8); line-height: 1.72; }
.cta-banner__btns { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

/* ============================================================
   17. Service Area Strip
   ============================================================ */
.areas { background: var(--bg); padding: var(--sp-8) 0; }
.areas__label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); text-align: center; margin-bottom: var(--sp-4); }
.areas__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.areas__pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: .875rem;
  color: var(--text);
  font-weight: 500;
}
.areas__pill::before { content: '📍'; font-size: .7rem; }
.areas__pill--extended {
  border-style: dashed;
  color: var(--text-light);
}
.areas__note {
  text-align: center;
  margin-top: .75rem;
  font-size: .75rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================================
   18. Window-type alternating rows
   ============================================================ */
.wt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--border);
}
.wt-row:last-child { border-bottom: none; }
.wt-row:nth-child(even) .wt-img  { order: 2; }
.wt-row:nth-child(even) .wt-body { order: 1; }

.wt-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  position: relative;
}
.wt-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.wt-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 3rem; gap: .5rem;
}
.wt-img-placeholder p { font-size: .875rem; font-weight: 500; }

.wt-tag  { display: inline-block; background: var(--blue-light); color: var(--blue-text); font-size: .73rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .6rem; border-radius: var(--r-full); margin-bottom: .75rem; }
.wt-h2   { font-size: 1.75rem; margin-bottom: var(--sp-4); }
.wt-p    { color: var(--text-muted); line-height: 1.72; margin-bottom: var(--sp-5); }

.wt-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem var(--sp-4); margin-bottom: var(--sp-6); }
.wt-bullet  { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text); }
.wt-bullet::before { content: '✓'; color: var(--blue-text); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   19. Gallery
   ============================================================ */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.gf-btn {
  padding: .5rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  background: transparent;
  color: var(--text);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font);
}
.gf-btn.active,
.gf-btn:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--dark);           /* dark text on mint */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-4);
}
.g-item {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  cursor: pointer;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; position: relative; z-index: 1; }
.g-item:hover img { transform: scale(1.06); }

.g-item__overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,30,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  color: var(--white);
  z-index: 2;
}
.g-item:hover .g-item__overlay { opacity: 1; }
.g-item__label { display: none; }
.g-item__zoom  { color: var(--white); }

/* Gallery placeholder */
.g-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 2rem; gap: .375rem;
}
.g-placeholder p { font-size: .75rem; font-weight: 500; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 960px; width: 100%; }
.lb-img   { border-radius: var(--r-lg); max-height: 80vh; max-width: 100%; width: auto; height: auto; display: block; margin: 0 auto; }
.lb-caption { text-align: center; color: rgba(255,255,255,.75); font-size: .9375rem; margin-top: var(--sp-3); }
.lb-close {
  position: absolute; top: -2.5rem; right: 0;
  background: rgba(255,255,255,.15); border: none;
  color: var(--white); font-size: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--t);
}
.lb-close:hover { background: rgba(255,255,255,.3); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none;
  color: var(--white); font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--t);
}
.lb-prev { left: -3.5rem; }
.lb-next { right: -3.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   20. Team Cards
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-8); max-width: 820px; margin: 0 auto; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  transition: all var(--t-slow);
}
.team-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.team-card__photo {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo-ph { font-size: 4rem; color: var(--text-light); }

.team-card__body   { padding: var(--sp-6) var(--sp-8); }
.team-card__name   { font-size: 1.375rem; margin-bottom: .25rem; }
.team-card__role   { color: var(--blue-text); font-weight: 600; font-size: .9375rem; margin-bottom: var(--sp-4); }
.team-card__bio    { color: var(--text-muted); font-size: .9375rem; line-height: 1.65; }

/* ============================================================
   21. Contact
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--sp-12); align-items: start; }

.c-info-item { display: flex; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.c-info-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--blue-text);
}
.c-info-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: .25rem; }
.c-info-value { font-weight: 600; font-size: 1.0625rem; color: var(--dark); }
.c-info-value a { color: var(--dark); text-decoration: none; transition: color var(--t); }
.c-info-value a:hover { color: var(--blue); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-lg);
}
.contact-form-box h2 { font-size: 1.625rem; margin-bottom: .5rem; }
.contact-form-box > p { color: var(--text-muted); font-size: .9375rem; margin-bottom: var(--sp-8); }

/* ============================================================
   22. Forms
   ============================================================ */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { margin-bottom: var(--sp-5); }

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .375rem;
}
.form-label .req { color: var(--blue); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,111,207,.12);
}
.form-textarea  { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: .5rem; }

/* Upload area */
.upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: var(--sp-6) var(--sp-4);
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  text-align: center;
}
.upload-area:hover,
.upload-area--drag {
  border-color: var(--blue-text);
  background: var(--blue-xlight);
}
.upload-area svg { color: var(--text-light); }
.upload-area__text {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
}
.upload-area__text span { font-weight: 400; color: var(--text-muted); }
.upload-area__hint { font-size: .78rem; color: var(--text-light); }
.upload-file-list {
  list-style: none;
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.upload-file-item {
  font-size: .8125rem;
  color: var(--blue-text);
  font-weight: 600;
  padding: .3rem .75rem;
  background: var(--blue-light);
  border-radius: var(--r-full);
  display: inline-block;
}

/* Success / Error states */
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  margin-bottom: var(--sp-5);
}
.form-error-msg {
  display: none;
  color: var(--error);
  font-size: .8125rem;
  margin-top: .375rem;
}
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: var(--error); }
.form-group.has-error .form-error-msg { display: block; }

/* ============================================================
   23. Footer
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.72);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.75fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer__logo .logo__name { color: var(--white); }
.footer__tagline {
  color: rgba(255,255,255,.55);
  font-size: .9375rem;
  line-height: 1.65;
  margin: var(--sp-4) 0 var(--sp-6);
  max-width: 280px;
}
.footer__social { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: all var(--t);
  text-decoration: none;
}
.footer__social a:hover { background: var(--blue); color: var(--dark); }

.footer__col-title {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--white); margin-bottom: var(--sp-5);
}
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__links a { color: rgba(255,255,255,.6); font-size: .9375rem; text-decoration: none; transition: color var(--t); }
.footer__links a:hover { color: var(--white); }

.footer__contact-row { display: flex; gap: .625rem; align-items: flex-start; margin-bottom: .875rem; }
.footer__contact-row .fi  { font-size: 1rem; margin-top: .125rem; flex-shrink: 0; }
.footer__contact-row span { font-size: .9375rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer__contact-row a    { color: rgba(255,255,255,.65); text-decoration: none; transition: color var(--t); }
.footer__contact-row a:hover { color: var(--white); }

.footer__lic {
  display: inline-flex; align-items: center; gap: .375rem;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-full);
  padding: .25rem .875rem;
  font-size: .8rem; color: rgba(255,255,255,.5);
  margin-top: var(--sp-4);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap;
}
.footer__copy   { font-size: .875rem; color: rgba(255,255,255,.45); }
.footer__legal  { display: flex; gap: var(--sp-6); }
.footer__legal a { font-size: .875rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color var(--t); }
.footer__legal a:hover { color: var(--white); }

/* ============================================================
   24. Scroll-reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   25. Utility classes
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }

/* ============================================================
   26. Responsive — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(2,1fr); }
  .steps-grid    { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .stats         { grid-template-columns: repeat(2,1fr); }
  .features      { grid-template-columns: repeat(2,1fr); }
  .testimonials  { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2,1fr); }
  .lb-prev { left: -2.5rem; }
  .lb-next { right: -2.5rem; }
}

/* ============================================================
   27. Responsive — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sp-20: 3.5rem; --sp-16: 2.5rem; }

  .section { padding: var(--sp-12) 0; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features      { grid-template-columns: 1fr; }
  .testimonials  { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .stats         { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr; max-width: 400px; }
  .form-row      { grid-template-columns: 1fr; }
  .wt-row        { grid-template-columns: 1fr; }
  .wt-row:nth-child(even) .wt-img  { order: 0; }
  .wt-row:nth-child(even) .wt-body { order: 0; }
  .wt-bullets    { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta-banner__btns { flex-direction: column; }
  .hero__btns    { flex-direction: column; align-items: flex-start; }
  .remote .grid-2 { grid-template-columns: 1fr; }
  .trust-bar__items { gap: var(--sp-4); }
  .top-bar__right { display: none; }

  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--sp-6) var(--sp-8);
    gap: .125rem;
    overflow-y: auto;
    z-index: 850;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav.is-open {
    display: flex;
    transform: translateX(0);
  }
  .nav__item { width: 100%; }
  .nav__link { width: 100%; padding: .75rem 1rem; font-size: 1rem; }
  .nav__dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg);
    border-radius: var(--r-md);
    margin-top: .25rem;
    padding: .25rem;
  }

  .nav-toggle      { display: flex; align-items: center; }
  .header__actions .btn { display: none; }
  .header__phone   { font-size: .875rem; }

  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}

/* ============================================================
   28. Responsive — Small mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

/* ============================================================
   29. Print
   ============================================================ */
@media print {
  .top-bar, .header, .trust-bar, .remote, .cta-banner, .footer, .hero__btns, .nav-toggle { display: none !important; }
  .hero { background: var(--white) !important; padding: 0 !important; }
  .hero__h1, .hero__p, .hero__eyebrow, .page-hero__h1, .page-hero__p { color: var(--dark) !important; }
  .section--dark { background: var(--bg) !important; }
  body { font-size: 12pt; }
}

/* ============================================================
   30. Visual Enhancements
   ============================================================ */

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #05d9b4);
  width: 0%;
  z-index: 9999;
  transition: width .08s linear;
  pointer-events: none;
}

/* --- Enhanced primary button --- */
.btn-primary {
  background: linear-gradient(135deg, #10F5CF 0%, #05d9b4 100%);
  box-shadow: 0 4px 14px rgba(16, 245, 207, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0bdfbc 0%, #04c9a0 100%);
  box-shadow: 0 6px 22px rgba(16, 245, 207, 0.45);
  transform: translateY(-2px);
}

/* --- Hero glow orb --- */
.hero::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,245,207,.06) 0%, transparent 65%);
  top: -250px; right: -250px;
  pointer-events: none;
  z-index: 1;
}

/* --- Animated eyebrow badge --- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,245,207,0); }
  50% { box-shadow: 0 0 0 8px rgba(16,245,207,.12); }
}
.hero__eyebrow { animation: pulse-glow 3.5s ease-in-out infinite; }

/* --- Gradient stat numbers --- */
.stat__num {
  background: linear-gradient(135deg, #10F5CF 0%, #7ffbe8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
}

/* --- Dot-grid on alternate sections --- */
.section--alt {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(16,245,207,.14) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* --- Gradient border on card hover --- */
.card {
  background: var(--white);
  position: relative;
  isolation: isolate;
}
.card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(135deg, var(--blue), transparent 60%, var(--blue));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(16,245,207,.12);
}

/* --- Feature icon upgrade --- */
.feature__icon {
  background: linear-gradient(135deg, rgba(16,245,207,.18), rgba(16,245,207,.04));
  border: 1px solid rgba(16,245,207,.28);
  box-shadow: 0 4px 12px rgba(16,245,207,.1);
}
.feature:hover .feature__icon {
  background: linear-gradient(135deg, rgba(16,245,207,.28), rgba(16,245,207,.1));
}

/* --- Step number glow --- */
.step__num {
  box-shadow: 0 0 0 8px var(--white), 0 0 0 10px var(--blue-light), 0 4px 20px rgba(16,245,207,.25);
}

/* --- Blurred header on scroll --- */
.header.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,.94);
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
}

/* --- Trust bar responsive --- */
@media (max-width: 768px) {
  .trust-bar__items { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-bar__item:nth-child(4), .trust-bar__item:last-child { border-bottom: none; }
}
.tbi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--blue);
  color: var(--dark);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-right: .25rem;
}

/* --- Hero split layout --- */
.hero__split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--sp-16);
  align-items: center;
  padding: var(--sp-24) 0 var(--sp-20);
  position: relative;
  z-index: 2;
}
.hero .container { padding-top: 0; padding-bottom: 0; }
.hero { padding: 0; }

/* Hero Before/After Card */
.hero__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(16,245,207,.2);
  border-radius: var(--r-2xl);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.hero__ba {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.hero__ba-before,
.hero__ba-after {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.hero__ba-after {
  clip-path: inset(0 0 0 50%);
  z-index: 1;
}
.hero__ba-lbl {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(0,0,0,.6);
  color: rgba(255,255,255,.85);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  z-index: 4;
  pointer-events: none;
}
.hero__ba-lbl--after {
  left: auto; right: .75rem;
  background: var(--blue);
  color: var(--dark);
}
.hero__ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--blue);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__ba-handle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(16,245,207,.2);
  flex-shrink: 0;
}
.hero__card-foot {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  border-top: 1px solid rgba(16,245,207,.12);
}
.hero__card-stars { color: var(--amber); font-size: .875rem; }
.hero__card-text  { font-size: .875rem; color: rgba(255,255,255,.65); }
.hero__card-text strong { color: var(--white); }

/* Hide showcase card on smaller screens */
@media (max-width: 960px) {
  .hero__split { grid-template-columns: 1fr; padding-bottom: var(--sp-16); }
  .hero__card  { display: none; }
}

/* --- Before/After Section --- */
.ba-section { background: var(--white); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-6);
}
.ba-comparison {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-3);
  box-shadow: var(--shadow-md);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
  z-index: 1;
}
.ba-lbl {
  position: absolute;
  top: .625rem; left: .625rem;
  background: rgba(0,0,0,.6);
  color: rgba(255,255,255,.9);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: var(--r-full);
  z-index: 4;
  pointer-events: none;
}
.ba-lbl--after {
  left: auto; right: .625rem;
  background: var(--blue);
  color: var(--dark);
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px;
  background: var(--blue);
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ba-handle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(16,245,207,.22);
  flex-shrink: 0;
}
.ba-caption {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 600;
}
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; } }

/* --- Floating CTA --- */
.float-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
}
.float-cta__item {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.float-cta__label {
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .875rem;
  border-radius: var(--r-full);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.float-cta__item:hover .float-cta__label {
  opacity: 1;
  transform: translateX(0);
}
.float-cta__btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.float-cta__btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
}
.float-cta__btn--call {
  background: linear-gradient(135deg, #10F5CF, #05d9b4);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(16,245,207,.35);
}
.float-cta__btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.float-cta__btn--wa:hover { box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.float-cta__btn--call:hover { box-shadow: 0 8px 28px rgba(16,245,207,.5); }

/* Entry animation for float CTA */
@keyframes float-in {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.float-cta__item:nth-child(1) { animation: float-in .4s .8s both ease-out; }
.float-cta__item:nth-child(2) { animation: float-in .4s 1s both ease-out; }

/* --- CTA banner gradient upgrade --- */
.cta-banner {
  background: linear-gradient(130deg, #1a1a1c 0%, #2a2a2d 45%, #141a16 100%);
}

/* --- Testimonial quote decoration upgrade --- */
.testimonial {
  background: linear-gradient(145deg, var(--white), #fafffe);
}

/* Hide float CTA on print --- */
@media print {
  .float-cta, .scroll-progress { display: none !important; }
}

/* Mobile float CTA adjustments */
@media (max-width: 768px) {
  .float-cta { bottom: 1.25rem; right: 1.25rem; }
  .float-cta__label { display: none; }
}

/* ============================================================
   31. FAQ Category Jump Pills
   ============================================================ */
.faq-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.faq-cat-btn {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  background: var(--white);
  color: var(--text);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t);
  cursor: pointer;
  font-family: var(--font);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--dark);
}
@media (max-width: 600px) {
  .faq-cats { justify-content: flex-start; }
}

/* ============================================================
   32. Brands Strip
   ============================================================ */
.brands-strip {
  background: var(--dark-2);
  padding: var(--sp-8) 0;
  text-align: center;
}
.brands-strip__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-5);
}
.brands-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.brand-badge {
  display: inline-block;
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(16,245,207,.35);
  border-radius: 999px;
  padding: .45rem 1.25rem;
  transition: border-color var(--t), color var(--t);
}
.brand-badge:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   33. Photo Grid
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-3);
}
.photo-grid__item {
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
}
.photo-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.photo-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.photo-grid__item:hover img {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  .photo-grid__item--tall {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 520px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }
}
