/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:     #015ea0;
  --blue-d:   #014a80;
  --blue-l:   #e8f2fb;
  --orange:   #015ea0;
  --orange-d: #014a80;
  --dark:     #0d1b2a;
  --mid:      #1e3248;
  --warm:     #f0f6fc;
  --text:     #3a4a5a;
  --light:    #f6fafd;
  --border:   #d4e4f0;
  --font-serif: 'Bebas Neue', Impact, sans-serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:   6px;
  --shadow:   0 4px 24px rgba(1,94,160,.12);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
hr { padding: 20px 0 0 0; margin-top: 20px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container.page-layout { padding: 40px 0; }

.label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
  display: block;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--dark);
}

h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: .3rem; }
h4 { font-size: .92rem; font-weight: 600; color: var(--dark); }
h5 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-intro {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn--primary       { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-d); border-color: var(--orange-d); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn--outline-dark  { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline-dark:hover { background: var(--dark); color: #fff; }
.btn--dark          { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--dark:hover    { background: var(--mid); border-color: var(--mid); }
.btn--sm  { padding: .55rem 1.2rem; font-size: .72rem; }
.btn--lg  { padding: .9rem 2.2rem; font-size: .85rem; }

.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  color: var(--dark);
  transition: color var(--transition);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { color: var(--orange); }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: #0274be;
  box-shadow: 0 2px 12px rgba(2,116,190,.35);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(2,116,190,.5); }

.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 85px;
}

/* Logo image */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img {
  height: 100px; width: auto;
  object-fit: contain; display: block;
  filter: brightness(0) invert(1);
  padding: 7px;
}

/* Nav — works for both static <a> children and WP wp_nav_menu() <ul><li><a> output */
.nav { display: flex; align-items: center; flex: 1; justify-content: center; }

/* WP menu: ul resets + horizontal flex */
.nav ul,
.nav .nav__list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: nowrap;
}

/* WP menu: li resets */
.nav li,
.nav .nav__item { list-style: none; position: relative; }

/* All nav links — static <a> and WP walker .nav__link */
.nav a,
.nav .nav__link {
  font-size: .74rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  position: relative; padding-bottom: 2px;
  transition: color var(--transition);
  white-space: nowrap;
  display: block;
}
.nav a::after,
.nav .nav__link::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px; background: #fff;
  transition: right var(--transition);
}
.nav a:hover::after,
.nav a.active::after,
.nav .nav__link:hover::after,
.nav .nav__item--active > .nav__link::after,
.nav li.current-menu-item > a::after,
.nav li.current_page_item > a::after { right: 0; }

.nav a:hover,
.nav a.active,
.nav .nav__link:hover,
.nav .nav__item--active > .nav__link,
.nav li.current-menu-item > a,
.nav li.current_page_item > a { color: #fff; }

/* Dropdown sub-menu */
.nav .nav__dropdown,
.nav ul ul {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 200px;
  background: #014a80;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  padding: .5rem 0;
  flex-direction: column;
  gap: 0;
  z-index: 200;
}
.nav .nav__item--has-dropdown:hover > .nav__dropdown,
.nav li.menu-item-has-children:hover > ul { display: flex; }

.nav .nav__dropdown li a,
.nav ul ul li a {
  padding: .6rem 1.2rem;
  font-size: .72rem;
  white-space: nowrap;
  width: 100%;
}
.nav .nav__dropdown li a::after,
.nav ul ul li a::after { display: none; }

.header__actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }

/* Phone link */
.header__phone {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
  white-space: nowrap;
}
.header__phone svg { width: 14px; height: 14px; }
.header__phone:hover { color: #fff; }

/* Cart icon in header */
.header__cart {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: #fff; text-decoration: none;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.header__cart:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.header__cart svg { width: 18px; height: 18px; }
.header__cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #e53e3e; color: #fff;
  font-size: .62rem; font-weight: 800; line-height: 1;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--header-bg, #015ea0);
  pointer-events: none;
}

/* Header icon buttons */
.icon-btn { color: rgba(255,255,255,.85); }
.icon-btn:hover { color: #fff; }

/* Cart button — global (used in all page headers) */
.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  cursor: pointer; color: #fff;
  transition: background .2s, border-color .2s;
}
.cart-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #e53e3e; color: #fff;
  font-size: .62rem; font-weight: 700;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform .2s;
}
.cart-count.bump { transform: scale(1.4); }

/* Hamburger — desktop hidden, mobile only */
#menuToggle { display: none; }

/* Header CTA — white button with blue text */
.btn--header-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.4rem;
  background: #fff; color: #0274be;
  border: 2px solid #fff; border-radius: var(--radius);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--header-cta:hover { background: rgba(255,255,255,.88); color: var(--blue-d); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden; color: #fff;
}

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 6s ease;
}
.hero__slide.active { opacity: 1; transform: scale(1); }

/* Slide backgrounds are set via inline style in hero.php (Customizer-driven).
   These rules are fallbacks used only when no Customizer image is set. */
.hero__slide:nth-child(1) { background-position: center 60%; }
.hero__slide:nth-child(2) { background-position: center 40%; }
.hero__slide:nth-child(3) { background-position: center 50%; }

/* Layered gradient: dark left-to-transparent right + dark bottom strip */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(4,16,32,.92) 0%, rgba(4,16,32,.72) 45%, rgba(4,16,32,.18) 100%),
    linear-gradient(to top,   rgba(4,16,32,.6)  0%, transparent 35%);
}

/* Content */
.hero__content {
  position: relative; z-index: 2;
  padding-top: 68px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.2rem;
  transition: opacity .35s ease, transform .35s ease;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 400; line-height: 1;
  color: #fff; margin-bottom: 1.4rem;
  letter-spacing: .02em; text-transform: uppercase;
  transition: opacity .35s ease, transform .35s ease;
}
.hero__accent { color: #39adff; }

.hero__sub {
  font-size: .95rem; font-weight: 400; line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.2rem;
  max-width: 480px;
  border-left: 3px solid var(--blue);
  padding-left: 1rem;
  transition: opacity .35s ease, transform .35s ease;
}

/* CTAs */
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }

.btn--hero-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 2rem;
  background: var(--blue); color: #fff;
  border: 2px solid var(--blue); border-radius: var(--radius);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn--hero-primary svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn--hero-primary:hover { background: var(--blue-d); border-color: var(--blue-d); transform: translateY(-1px); }

.btn--hero-outline {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 2rem;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.45); border-radius: var(--radius);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn--hero-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-1px);
}

/* Trust bar */
.hero__trustbar {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: .75rem 1.5rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 1rem 2rem;
  width: 100%;
}
.hero__trustbar li {
  display: flex; align-items: center; gap: .7rem;
  font-size: 1.05rem; font-weight: 700;
  color: #fff; letter-spacing: .06em;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
  white-space: nowrap;
}
.hero__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: #16a34a;
  font-size: .75rem; color: #fff; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(22,163,74,.35);
}

/* Bottom nav row */
.hero__nav {
  position: absolute; bottom: 2.4rem; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
}

.hero__arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}
.hero__arrow svg { width: 16px; height: 16px; }
.hero__arrow:hover { background: var(--blue); border-color: var(--blue); }

.hero__dots { display: flex; gap: .5rem; align-items: center; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--blue);
  transform: scale(1.5);
}

/* Slide counter */
.hero__counter {
  position: absolute; bottom: 2.8rem; right: 2.5rem; z-index: 2;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  color: rgba(255,255,255,.4);
}
.hero__counter #heroCurrentSlide { color: #fff; }

/* ══════════════════════════════════════
   WHY CHOOSE US — Premium Redesign
══════════════════════════════════════ */

.wc-section {
  background: #fff;
  overflow: hidden;
}

.wc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section header ── */
.wc-header {
  padding: 7.5rem 0 5rem;
  max-width: 780px;
}

.wc-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #0274BE; margin-bottom: 1.4rem;
}
.wc-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 3px;
  background: #0274BE; border-radius: 2px; flex-shrink: 0;
}

.wc-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: #0F172A;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.wc-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  max-width: 620px;
}

/* ── 2-column layout ── */
.wc-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: 7.5rem;
}

/* Left image column */
.wc-img-col { position: relative; }

.wc-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 24px 64px rgba(2,116,190,.18), 0 4px 16px rgba(0,0,0,.1);
}
.wc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s ease;
}
.wc-img-wrap:hover img { transform: scale(1.04); }

/* Floating badge */
.wc-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.8rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  display: flex; align-items: center; gap: 1.4rem;
  z-index: 2;
}
.wc-badge-stat {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
}
.wc-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem; line-height: 1;
  color: #0274BE; letter-spacing: .02em;
}
.wc-badge-lbl {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #64748B; white-space: nowrap;
}
.wc-badge-divider {
  width: 1px; height: 40px;
  background: #E2E8F0; flex-shrink: 0;
}

/* Right feature grid */
.wc-feat-col { display: flex; flex-direction: column; justify-content: center; }

.wc-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.wc-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.wc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(2,116,190,.14), 0 4px 12px rgba(0,0,0,.06);
}

.wc-card__icon {
  width: 48px; height: 48px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .3s ease;
}
.wc-card:hover .wc-card__icon { background: #DBEAFE; }
.wc-card__icon svg { width: 22px; height: 22px; flex-shrink: 0; }

.wc-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0F172A;
  margin-bottom: .6rem;
}

.wc-card__text {
  font-size: .875rem;
  line-height: 1.7;
  color: #64748B;
}

/* ── Trust bar ── */
.wc-trust-bar {
  background:
    radial-gradient(ellipse 55% 120% at 15% 50%, rgba(2,116,190,.28) 0%, transparent 70%),
    radial-gradient(ellipse 45% 110% at 85% 50%, rgba(57,173,255,.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 90% at 50% 50%, rgba(1,50,120,.32) 0%, transparent 65%),
    #050d1e;
  padding: 3.5rem 0;
}

.wc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wc-trust-item {
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.wc-trust-item + .wc-trust-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: rgba(255,255,255,.1);
}

.wc-trust-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: #0274BE;
  letter-spacing: .04em;
}
.wc-trust-lbl {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── Industry cards ── */
.wc-industry-wrap { padding: 5rem 0 7.5rem; }

.wc-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.wc-ind-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.wc-ind-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.wc-ind-card:hover img { transform: scale(1.08); }

.wc-ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,40,.82) 0%, rgba(10,20,40,.25) 55%, transparent 100%);
  transition: opacity .3s ease;
}
.wc-ind-card:hover .wc-ind-overlay {
  background: linear-gradient(to top, rgba(2,116,190,.75) 0%, rgba(10,20,40,.4) 55%, transparent 100%);
}

.wc-ind-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.4rem;
  z-index: 1;
}
.wc-ind-tag {
  display: inline-block;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #93C5FD;
  background: rgba(2,116,190,.35);
  border: 1px solid rgba(147,197,253,.3);
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .6rem;
  backdrop-filter: blur(4px);
}
.wc-ind-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .wc-layout { grid-template-columns: 1fr; gap: 3rem; }
  .wc-img-wrap { aspect-ratio: 16/9; }
  .wc-badge { bottom: 1rem; right: 1rem; }
  .wc-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .wc-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .wc-trust-item + .wc-trust-item::before { display: none; }
}

@media (max-width: 600px) {
  .wc-header { padding: 5rem 0 3rem; }
  .wc-feat-grid { grid-template-columns: 1fr; }
  .wc-industry-grid { grid-template-columns: 1fr 1fr; }
  .wc-trust-grid { grid-template-columns: 1fr 1fr; }
  .wc-badge { position: static; margin-top: 1.5rem; border-radius: 12px; }
}

/* ── SERVICES ── */
.services {
  padding: 6rem 0;
  background: #f8fafc;
}

/* Service image cards */
.svc-grid {
  display: grid;
  gap: 1.25rem;
}
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }

.svc-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
}
.svc-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.svc-card:hover img { transform: scale(1.07); }

.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,15,30,.88) 0%, rgba(5,15,30,.4) 50%, rgba(5,15,30,.08) 100%);
  transition: background .35s ease;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(2,116,190,.82) 0%, rgba(5,15,30,.45) 55%, rgba(5,15,30,.08) 100%);
}

.svc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.5rem;
  z-index: 1;
  transform: translateY(0);
  transition: transform .35s ease;
}
.svc-card:hover .svc-content { transform: translateY(-4px); }

.svc-tag {
  display: inline-block;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #93C5FD;
  background: rgba(2,116,190,.35);
  border: 1px solid rgba(147,197,253,.3);
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .6rem;
  backdrop-filter: blur(6px);
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; line-height: 1.1;
  margin-bottom: .5rem;
}

.svc-desc {
  font-size: .8rem; line-height: 1.6;
  color: rgba(255,255,255,.72);
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .35s ease;
}
.svc-card:hover .svc-desc { max-height: 60px; opacity: 1; }

/* ── PROJECTS ── */
.projects {
  padding: 6rem 0;
  background: var(--warm);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.project-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project-card__before,
.project-card__after {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.project-card__before img,
.project-card__after img {
  transition: transform .5s ease;
}
.project-card:hover .project-card__before img,
.project-card:hover .project-card__after img { transform: scale(1.06); }

.project-label {
  position: absolute; bottom: .5rem; left: .5rem;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(0,0,0,.55); color: #fff;
  padding: .2rem .5rem; border-radius: 2px;
}
.project-label--after { background: var(--orange); }

.project-card__title {
  padding: .9rem 1rem;
  font-size: .82rem; font-weight: 600;
  color: var(--dark); border-top: 1px solid var(--border);
}

/* ── PROCESS — Parallax ── */
.process {
  position: relative;
  padding: 0;
  /* Background image is set via inline style in process.php (Customizer-driven).
     background-size/position/attachment are kept here so they apply to any inline bg. */
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.process__parallax { display: none; }

/* Dark gradient overlay for readability */
.process__overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg,
      rgba(4,12,28,.82) 0%,
      rgba(2,20,48,.72) 50%,
      rgba(4,12,28,.82) 100%);
}

/* Content sits above overlay */
.process__inner {
  position: relative; z-index: 1;
  padding: 7rem 0;
}

/* Header */
.process__header {
  text-align: center;
  margin-bottom: 5rem;
}

.process__eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #39adff; margin-bottom: 1rem;
}
.process__eyebrow::before,
.process__eyebrow::after {
  content: '';
  display: block; width: 24px; height: 2px;
  background: #39adff; border-radius: 2px;
}

.process__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; letter-spacing: .04em;
  text-transform: uppercase; color: #fff;
  margin-bottom: .9rem;
}

.process__sub {
  font-size: .95rem; color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}

/* Steps row */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

/* Glass card behind each step */
.process-step::before {
  content: '';
  position: absolute; inset: -1.5rem 0;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}
.process-step:hover::before { opacity: 1; }

.process-step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem; line-height: 1;
  color: #39adff;
  margin-bottom: .8rem;
  letter-spacing: .04em;
}

/* Icon circle */
.process-step__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(57,173,255,.15);
  border: 1px solid rgba(57,173,255,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  color: #39adff;
  transition: background .3s ease, border-color .3s ease;
}
.process-step:hover .process-step__icon {
  background: rgba(57,173,255,.28);
  border-color: rgba(57,173,255,.6);
}
.process-step__icon svg { width: 22px; height: 22px; }

.process-step h3 {
  font-size: .95rem; font-weight: 600;
  color: #fff; margin-bottom: .6rem;
  line-height: 1.4;
}
.process-step p {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* Wavy connector */
.process-step__connector {
  width: 60px; flex-shrink: 0;
  display: flex; align-items: center;
  margin-top: 2.2rem;
}
.process-step__connector svg { width: 60px; height: 20px; }

/* ── PRODUCTS ── */
.products {
  padding: 6rem 0;
  background: #fff;
}

/* Header */
.prod-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.prod-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  color: #0274be; text-transform: uppercase; margin-bottom: .6rem;
}
.prod-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400; letter-spacing: .04em;
  text-transform: uppercase; color: var(--dark); margin-bottom: .9rem;
}
.prod-sub { font-size: .92rem; color: #64748b; line-height: 1.7; }

/* Grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* Card */
.prod-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .55s ease calc(var(--i, 0) * 70ms),
    transform .55s ease calc(var(--i, 0) * 70ms);
}
.prod-card.in-view { opacity: 1; transform: translateY(0); }

.prod-card__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0d2a4a;
  transition: transform .6s ease;
}
.prod-card:hover .prod-card__img { transform: scale(1.08); }

.prod-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(5,18,42,.7) 55%,
    rgba(3,10,30,.96) 100%);
  transition: background .4s ease;
}
.prod-card:hover .prod-card__overlay {
  background: linear-gradient(to bottom,
    rgba(0,0,0,.12) 0%,
    rgba(1,80,140,.65) 55%,
    rgba(1,40,90,.97) 100%);
}

.prod-card__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.3rem 1.6rem;
  z-index: 2;
}

/* blue bar slide-in on hover */
.prod-card__body::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: #39adff;
  border-radius: 0 3px 0 0;
  transition: width .45s ease;
}
.prod-card:hover .prod-card__body::after { width: 100%; }

.prod-card__icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .8rem;
  transition: background .35s ease, border-color .35s ease;
}
.prod-card:hover .prod-card__icon {
  background: rgba(57,173,255,.18);
  border-color: rgba(57,173,255,.45);
}
.prod-card__icon svg { width: 18px; height: 18px; }

.prod-card__name {
  font-size: .95rem; font-weight: 700;
  color: #fff; margin-bottom: .45rem; line-height: 1.3;
}

.prod-card__desc {
  font-size: .76rem; color: rgba(255,255,255,.72);
  line-height: 1.55;
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateY(6px);
  transition: max-height .4s ease, opacity .35s ease .06s, transform .35s ease .06s;
}
.prod-card:hover .prod-card__desc {
  max-height: 80px; opacity: 1; transform: translateY(0);
}

.prod-cta { text-align: center; margin-top: 3rem; }

/* ── PERFORMANCE ── */
.performance {
  padding: 6rem 0;
  background: #fff;
}

.performance__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.performance__content h2 { margin: .8rem 0 1rem; }
.performance__content p { font-size: .9rem; }

.performance__features {
  display: flex; flex-direction: column; gap: 1.5rem;
}

.perf-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.perf-feature:hover { box-shadow: var(--shadow); }
.perf-feature__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.perf-feature h4 { margin-bottom: .2rem; }
.perf-feature p { font-size: .83rem; color: #888; }

/* ── TESTIMONIALS ── */
/* ── TESTIMONIALS ── */
.testimonials {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
  background: #f5f8fd;
}

/* Radial glow behind slider */
.testi-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(2,116,190,.07) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .container { position: relative; z-index: 1; }

.testi-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testi-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  color: #0274be; text-transform: uppercase; margin-bottom: .7rem;
}
.testi-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400; letter-spacing: .04em;
  text-transform: uppercase; color: var(--dark);
}

/* Slider viewport */
.testi-slider {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 1rem 1rem 2rem;
}

.testi-track {
  display: flex;
  gap: 1.4rem;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Card */
.testi-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(2,116,190,.1);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 2px 16px rgba(2,116,190,.06);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.testi-card.active {
  background: #fff;
  border-color: rgba(2,116,190,.3);
  box-shadow: 0 8px 32px rgba(2,116,190,.14);
  transform: translateY(-8px);
}

.testi-card__avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(2,116,190,.15);
  flex-shrink: 0;
}
.testi-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testi-card__name {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  margin-bottom: .2rem;
}
.testi-card__role {
  font-size: .78rem; color: #64748b;
}

.testi-card__quote {
  font-size: .88rem; color: #475569;
  line-height: 1.75; margin: 0;
}

/* Navigation */
.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2.5rem;
}
.testi-nav__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(2,116,190,.2);
  background: #fff;
  color: #64748b;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.testi-nav__btn svg { width: 18px; height: 18px; }
.testi-nav__btn:hover {
  background: #0274be; border-color: #0274be; color: #fff;
}
.testi-dots { display: flex; gap: .6rem; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background .3s ease, transform .3s ease, width .3s ease;
}
.testi-dot.active {
  background: var(--blue, #0274be);
  width: 22px;
  border-radius: 4px;
  transform: none;
}

/* Google rating summary */
.testi-google-summary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: .55rem 1.4rem .55rem .9rem;
  margin-top: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.testi-google-logo { width: 22px; height: 22px; flex-shrink: 0; }
.testi-google-summary__score {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.testi-google-summary__num {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2744;
}
.testi-stars {
  display: flex;
  gap: 1px;
}
.testi-stars svg { width: 16px; height: 16px; }
.testi-google-summary__label {
  font-size: .75rem;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
}

/* Google review card overrides */
.testi-card {
  flex-direction: column;
  gap: .9rem;
}
.testi-card__top {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.testi-card__avatar--initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--av-bg, #4285F4);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
}
.testi-card__meta { flex: 1; min-width: 0; }
.testi-card__g {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-left: auto;
}
.testi-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testi-card__stars svg { width: 16px; height: 16px; }
.testi-card__time {
  font-size: .72rem;
  color: #94a3b8;
  margin-left: .4rem;
}
.testi-card__quote {
  font-size: .9rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Google CTA link */
.testi-google-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.testi-google-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.6rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, border-color .2s, color .2s;
}
.testi-google-btn:hover {
  border-color: #4285F4;
  color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,.14);
}

/* ── FINANCING ── */
.financing {
  padding: 5rem 0;
  background: var(--orange);
}

.financing__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.financing__content h2 { color: #fff; margin-bottom: .5rem; }
.financing__content .financing__sub { color: rgba(255,255,255,.9); font-size: 1.1rem; font-weight: 600; margin-bottom: .75rem; }
.financing__content p { color: rgba(255,255,255,.75); font-size: .92rem; max-width: 560px; }

.financing .btn--primary {
  background: #fff; color: var(--orange); border-color: #fff;
  flex-shrink: 0;
}
.financing .btn--primary:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ── SERVICE AREA ── */
.service-area {
  padding: 7rem 0;
  background: #fff;
}

/* Header */
.sa-header { text-align: center; margin-bottom: 4rem; }
.sa-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #0274be; margin-bottom: 1.2rem;
}
.sa-eyebrow__line {
  display: block; width: 28px; height: 2px;
  background: #0274be; border-radius: 2px;
}
.sa-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; letter-spacing: .04em;
  text-transform: uppercase; color: var(--dark); margin-bottom: .8rem;
}
.sa-sub { font-size: .92rem; color: #64748b; }

/* Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Card */
.location-card {
  background: #f5f8fd;
  border: 1px solid rgba(2,116,190,.1);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(2,116,190,.06);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.location-card:hover {
  border-color: rgba(2,116,190,.25);
  box-shadow: 0 8px 32px rgba(2,116,190,.12);
  transform: translateY(-4px);
}

.location-card__map {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.location-card__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.location-card__top { padding: 2rem 2rem 1.6rem; }

.location-card__num {
  display: block;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  color: #0274be; margin-bottom: 1rem;
}

.location-card__city {
  font-size: 2.2rem; font-weight: 800;
  color: var(--dark); line-height: 1.1; margin-bottom: .5rem;
}

.location-card__type {
  font-size: .82rem; color: #64748b;
}

.location-card__divider {
  height: 1px;
  background: rgba(2,116,190,.1);
  margin: 0 2rem;
}

.location-card__details {
  padding: 1.6rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  flex: 1;
}

.location-card__row {
  display: flex; align-items: flex-start; gap: .9rem;
}

.location-card__icon {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
}

.location-card__row > div {
  display: flex; flex-direction: column; gap: .18rem;
}
.location-card__row span {
  font-size: .84rem; color: #475569; line-height: 1.5;
}

/* CTA button at card bottom */
.location-card__btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: #0274be;
  color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-radius: 0 0 18px 18px;
  transition: background var(--transition);
  margin-top: auto;
}
.location-card__btn svg { width: 15px; height: 15px; }
.location-card__btn:hover { background: #015ea0; }

/* ── FINAL CTA ── */
/* ── FINAL CTA ── */
.final-cta {
  position: relative;
  padding: 5rem 0 4rem;
  background: #050d1e;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

/* Animated glow orbs */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.cta-orb--1 {
  width: 500px; height: 500px;
  background: rgba(2,116,190,.22);
  top: -120px; left: -100px;
  animation-delay: 0s;
}
.cta-orb--2 {
  width: 400px; height: 400px;
  background: rgba(57,173,255,.14);
  bottom: -80px; right: -80px;
  animation-delay: -3s;
}
.cta-orb--3 {
  width: 300px; height: 300px;
  background: rgba(1,50,120,.3);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.06); }
}
.cta-orb--3 {
  animation: orbFloat3 8s ease-in-out infinite;
  animation-delay: -5s;
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%      { transform: translate(-50%,-50%) scale(1.08); }
}

.cta-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}

/* Reveal animation */
.cta-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.cta-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.cta-reveal:nth-child(2) { transition-delay: .1s; }
.cta-reveal:nth-child(3) { transition-delay: .2s; }
.cta-reveal:nth-child(4) { transition-delay: .3s; }
.cta-reveal:nth-child(5) { transition-delay: .4s; }
.cta-reveal:nth-child(6) { transition-delay: .5s; }

.cta-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  color: #39adff; text-transform: uppercase; margin-bottom: 1.2rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; letter-spacing: .03em;
  text-transform: uppercase; color: #fff;
  line-height: 1.1; margin-bottom: 1.4rem;
}
.cta-title__accent { color: #39adff; }

.cta-sub {
  font-size: .95rem; color: rgba(255,255,255,.55);
  line-height: 1.8; max-width: 540px;
  margin: 0 auto 2.2rem;
}

/* Benefits */
.cta-benefits {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .6rem 2.2rem;
  margin-bottom: 2.8rem; list-style: none;
}
.cta-benefits li {
  display: flex; align-items: center; gap: .45rem;
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.75);
}
.cta-benefits svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Buttons */
.cta-btns {
  display: flex; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 50px;
  padding: .95rem 2.2rem;
  transition: all .3s ease;
}
.cta-btn svg { width: 16px; height: 16px; transition: transform .3s ease; }
.cta-btn:hover svg { transform: translateX(4px); }

.cta-btn--primary {
  background: #0274be; color: #fff;
  box-shadow: 0 4px 24px rgba(2,116,190,.4);
}
.cta-btn--primary:hover {
  background: #015ea0;
  box-shadow: 0 6px 32px rgba(2,116,190,.55);
  transform: translateY(-2px);
}
.cta-btn--outline {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
}
.cta-btn--outline:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats bar */
.cta-stats {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  backdrop-filter: blur(12px);
}
.cta-stat {
  flex: 1; text-align: center;
}
.cta-stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 400;
  letter-spacing: .04em; color: #fff;
  margin-bottom: .25rem;
}
.cta-stat__label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.cta-stat__divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  background: #080e1a;
  padding: 5rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

/* Brand column */
.footer__logo { display: inline-block; margin-bottom: 1.2rem; }
.footer__logo-img { height: 100px; width: auto; filter: brightness(0) invert(1); }

.footer__col--brand p {
  font-size: .83rem; color: rgba(255,255,255,.4);
  line-height: 1.8; max-width: 280px;
}

/* Social icons */
.footer__social { display: flex; gap: .75rem; margin-top: 1.6rem; }
.footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,.15);
	color: rgba(255,255,255,.55);
	transition: background var(--transition), border-color var(--transition), color var(--transition);
	line-height: 36px;
	text-align: center;
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover {
  background: #0274be; border-color: #0274be; color: #fff;
}

/* Nav columns */
.footer__col h5 {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1.4rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .7rem; list-style: none; }
.footer__col li, .footer__col a {
  font-size: .85rem; color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }

/* Locations column */
.footer__col--locations h5 { margin-bottom: 1.2rem; }
.footer__location { margin-bottom: 1.8rem; }
.footer__location:last-child { margin-bottom: 0; }
.footer__location strong {
  display: block; font-size: .9rem; font-weight: 700;
  color: #fff; margin-bottom: .4rem;
}
.footer__location p {
  font-size: .82rem; color: rgba(255,255,255,.45);
  line-height: 1.6; margin-bottom: .6rem;
}
.footer__directions {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: #39adff;
  transition: color var(--transition);
}
.footer__directions svg { width: 14px; height: 14px; }
.footer__directions:hover { color: #fff; }

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer__bottom span { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer__bottom-links {
  display: flex; gap: 1.8rem;
}
.footer__bottom-links a {
  font-size: .78rem; color: rgba(255,255,255,.28);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════
   ANIMATION SYSTEM
═══════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(44px);  } to { opacity:1; transform:none; } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-30px); } to { opacity:1; transform:none; } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-52px); } to { opacity:1; transform:none; } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(52px);  } to { opacity:1; transform:none; } }
@keyframes scaleIn  { from { opacity:0; transform:scale(.86);        } to { opacity:1; transform:none; } }
@keyframes rippleOut{ from { transform:scale(0); opacity:.45; }       to { transform:scale(2.8); opacity:0; } }
@keyframes shimmer  {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes countPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.08); }
}

/* ── Scroll-animate base ── */
.sa-el {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity  .65s ease var(--sd, 0ms),
    transform .65s ease var(--sd, 0ms);
}
.sa-el.sa-up    { transform: translateY(44px); }
.sa-el.sa-down  { transform: translateY(-30px); }
.sa-el.sa-left  { transform: translateX(-52px); }
.sa-el.sa-right { transform: translateX(52px); }
.sa-el.sa-scale { transform: scale(.88); }
.sa-el.visible  { opacity: 1; transform: none; }

/* ── Nav link hover underline ── */
.nav a {
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width .3s ease;
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }

/* ── Button ripple ── */
.btn, .cta-btn, .location-card__btn, .testi-nav__btn {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  pointer-events: none;
  animation: rippleOut .6s ease forwards;
  transform-origin: center;
}

/* ── Cursor spotlight ── */
.cursor-glow {
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(2,116,190,.09) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: left .12s ease, top .12s ease;
  mix-blend-mode: screen;
}

/* ── Service card shimmer ── */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,.12) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0s;
  pointer-events: none;
}
.svc-card:hover::after {
  animation: shimmer .65s ease forwards;
}

/* ── Section eyebrow line grow ── */
.sa-eyebrow__line,
.wc-feat-grid .wc-card::before {
  transition: width .5s ease .2s;
}

/* ── Magnetic button — handled via JS ── */
.btn--hero-primary,
.btn--hero-outline,
.cta-btn--primary {
  transition: transform .2s ease, background .3s ease, box-shadow .3s ease, color .3s ease;
}

/* ── Stat number pulse on enter ── */
.cta-stat__num.counted { animation: countPulse .4s ease; }

/* ── Process step number bounce-in ── */
.process-step.visible .process-step__num {
  animation: scaleIn .5s ease forwards;
}

/* ── Footer column hover highlight ── */
.footer__col a {
  position: relative; display: inline-block;
}
.footer__col a::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,.5);
  transition: width .25s ease;
}
.footer__col a:hover::before { width: 100%; }

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  .sa-el, .ripple, .cursor-glow, .svc-card::after { display: none !important; }
  .sa-el { opacity: 1 !important; transform: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #menuToggle { display: flex; }
  .nav { display: none; }
  .nav.open {
    display: block;
    position: fixed; top: 85px; left: 0; right: 0;
    background: #0274be; padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(2,116,190,.4); z-index: 99;
  }
  /* Make the WP <ul> stack vertically when mobile nav is open */
  .nav.open ul,
  .nav.open .nav__list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
  /* Hide dropdowns on mobile — show all items flat */
  .nav.open .nav__dropdown,
  .nav.open ul ul {
    display: flex;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: .4rem 0 0 1rem;
    border-left: 2px solid rgba(255,255,255,.2);
    border-radius: 0;
    min-width: 0;
  }
  .nav.open .nav__dropdown li a,
  .nav.open ul ul li a { padding: .3rem 0; }
  .header__phone { display: none; }
  .btn--header-cta { display: none; }
  .wc-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .wc-img-wrap { aspect-ratio: 16/9; }
  .wc-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: center; }
  .process-step__connector { width: 2px; height: 40px; margin: 0; align-self: center; }
  .process-step__connector svg { display: none; }
  .testi-card { flex: 0 0 calc(50% - .75rem); }
  .testi-slider { overflow: hidden; }
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wc-header { padding: 4rem 0 2.5rem; }
  .wc-layout { padding-bottom: 4rem; }
  .process__inner { padding: 5rem 0; }
  .process__title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .process-step { max-width: 420px; width: 100%; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .testi-card { flex: 0 0 100%; }
  .final-cta { padding: 4rem 0 3rem; }
  .cta-inner { text-align: center; }
  .cta-btns { justify-content: center; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .header__inner { gap: .5rem; height: 70px; }
  .logo__img { height: 60px; }
  .header__actions { gap: .4rem; }
  .header__cart { width: 36px; height: 36px; }
  .header__cart svg { width: 16px; height: 16px; }
  #menuToggle svg { width: 20px; height: 20px; }
  .nav.open { top: 70px; }
  .hero__content { padding-top: 70px; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .wc-container { padding: 0 1.25rem; }

  /* Hero */
  .hero__content { padding-top: 90px; }
  .hero__title { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .hero__ctas { flex-direction: column; gap: .75rem; }
  .btn--hero-primary,
  .btn--hero-outline { width: 100%; justify-content: center; }
  .hero__nav { padding: 0 1.25rem 1.5rem; }
  .hero__arrow { display: none; }
  .hero__trustbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem .5rem;
    justify-content: unset;
    padding: .85rem 1.1rem;
  }
  .hero__trustbar li {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .03em;
    white-space: nowrap;
    justify-content: flex-start;
  }
  .hero__check {
    width: 22px; height: 22px;
    font-size: .65rem;
    flex-shrink: 0;
  }

  /* Why Choose */
  .wc-header { padding: 3rem 0 2rem; }
  .wc-layout { gap: 2rem; padding-bottom: 3.5rem; }
  .wc-feat-grid { grid-template-columns: 1fr; }
  .wc-industry-grid { grid-template-columns: 1fr 1fr; }
  .wc-trust-grid { grid-template-columns: 1fr 1fr; }
  .wc-badge { position: static; margin-top: 1.5rem; border-radius: 12px; }

  /* Services */
  .services { padding: 4rem 0; }
  .svc-grid--3 { grid-template-columns: 1fr; }

  /* Process */
  .process__inner { padding: 3.5rem 0; }
  .process__title { font-size: 1.8rem; }
  .process-steps { gap: .75rem; }
  .process-step { padding: 1.25rem 1rem; }

  /* Products */
  .products { padding: 4rem 0; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }

  /* Testimonials */
  .testimonials { padding: 4rem 0; }
  .testi-card { flex: 0 0 100%; }
  .testi-nav { gap: 1rem; margin-top: 1.5rem; }

  /* Service area */
  .service-area { padding: 4rem 0; }
  .locations-grid { grid-template-columns: 1fr; }

  /* CTA */
  .final-cta { padding: 3.5rem 0 3rem; }
  .cta-inner { text-align: center; padding: 0 .5rem; }
  .cta-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-btn--primary,
  .cta-btn--outline { width: 100%; justify-content: center; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: .75rem; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* ── LEGAL PAGES (Terms of Service, Privacy Policy) ── */
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.legal-toc__title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue, #015ea0);
  margin: 0 0 1rem;
}

.legal-toc__list {
  list-style: decimal;
  padding-left: 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.legal-toc__list li { font-size: .875rem; line-height: 1.4; }

.legal-toc__list a {
  color: #4a5568;
  text-decoration: none;
  transition: color .2s;
}

.legal-toc__list a:hover { color: var(--blue, #015ea0); }

.legal-body { min-width: 0; }

.legal-section {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 1rem;
}

.legal-section p {
  color: #4a5568;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: .75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  color: #4a5568;
  line-height: 1.7;
}

.legal-contact-card {
  background: #f8fafc;
  border-left: 4px solid var(--blue, #015ea0);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  color: #4a5568;
  line-height: 1.9;
}

.legal-contact-card a { color: var(--blue, #015ea0); }
.legal-contact-card a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* Single-column legal layout (no TOC) */
.legal-wrap--single { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.legal-wrap--single .legal-section:first-child { padding-top: 1.5rem; }

.legal-body a { color: var(--blue, #015ea0); }
.legal-body a:hover { text-decoration: underline; }

/* ── COOKIE POLICY CARDS ── */
.cookie-table-wrap { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.cookie-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.cookie-card__name {
  background: var(--blue, #015ea0);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .7rem 1.25rem;
}

.cookie-card__dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
}

.cookie-card__dl dt,
.cookie-card__dl dd {
  padding: .6rem 1.25rem;
  margin: 0;
  font-size: .875rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f4f8;
  color: #4a5568;
}

.cookie-card__dl dt {
  font-weight: 600;
  color: #1a202c;
  background: #f8fafc;
}

.cookie-card__dl dd:last-child,
.cookie-card__dl dt:nth-last-child(2) { border-bottom: none; }

.cookie-card__dl ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

@media (max-width: 600px) {
  .cookie-card__dl { grid-template-columns: 1fr; }
  .cookie-card__dl dt { border-bottom: none; padding-bottom: .25rem; }
}

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }

.accordion__item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}

.accordion__trigger:hover { background: #eef4fb; }
.accordion__trigger[aria-expanded="true"] { background: #e8f2fb; border-bottom: 1px solid #d0e4f5; }

.accordion__category {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue, #015ea0);
  background: rgba(1,94,160,.08);
  padding: .2rem .55rem;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}

.accordion__label {
  font-size: .9rem;
  font-weight: 600;
  color: #1a202c;
  flex: 1;
}

.accordion__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: #718096;
  transition: transform .25s ease;
}

.accordion__icon svg { width: 100%; height: 100%; display: block; }
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(180deg); }

.accordion__trigger--simple .accordion__label { font-weight: 500; font-size: .875rem; }

.accordion__panel {
  padding: 1.25rem;
  background: #fff;
  border-top: 1px solid #f0f4f8;
}

.accordion__panel[hidden] { display: none; }

/* Privacy definition list inside accordion */
.privacy-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  margin: 0;
}

.privacy-dl dt,
.privacy-dl dd {
  padding: .55rem .75rem;
  font-size: .85rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f4f8;
  margin: 0;
  color: #4a5568;
}

.privacy-dl dt {
  font-weight: 600;
  color: #1a202c;
  background: #f8fafc;
}

.privacy-dl dt:last-of-type,
.privacy-dl dd:last-child { border-bottom: none; }

.privacy-dl ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

@media (max-width: 600px) {
  .privacy-dl { grid-template-columns: 1fr; }
  .privacy-dl dt { border-bottom: none; padding-bottom: .25rem; }
  .accordion__category { display: none; }
}
