/* =========================================================
   Diamond Showers — Premium Glass Shower Installation
   Peabody, MA · A Becker Group Company
   ========================================================= */

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

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

:root {
  /* Color palette */
  --blue:         #4AA8D8;
  --blue-deep:    #2A7AA8;
  --blue-bright:  #00BFFF;
  --blue-light:   #7DD4F5;
  --blue-pale:    #AADDFF;
  --blue-tint:    rgba(74,168,216,0.08);
  --blue-glow:    rgba(74,168,216,0.20);

  --white:        #FFFFFF;
  --off-white:    #F8FAFD;
  --pale:         #EEF4F9;

  --ink:          #0B1B2A;
  --ink-soft:     #2A3F55;
  --body:         #4A5C70;
  --muted:        #8497AC;
  --whisper:      #B6C2D2;

  --line:         rgba(11,27,42,0.08);
  --line-strong:  rgba(11,27,42,0.14);
  --line-blue:    rgba(74,168,216,0.22);

  --shadow-sm:    0 1px 2px rgba(11,27,42,0.04);
  --shadow:       0 8px 30px rgba(11,27,42,0.06);
  --shadow-md:    0 16px 50px rgba(11,27,42,0.10);
  --shadow-blue:  0 16px 50px rgba(74,168,216,0.18);

  --radius:       4px;
  --radius-lg:    8px;

  --display:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:    1200px;
  --container-wide: 1780px;
  --transition:   0.32s cubic-bezier(0.22, 1, 0.36, 1);

  --topbar-h:     38px;
  --nav-h:        76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.8rem, 5.6vw, 5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.45rem); font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.005em; }

p { color: var(--body); font-size: 1rem; line-height: 1.75; font-weight: 400; }
.lead { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.65; font-weight: 400; }

strong { font-weight: 600; color: var(--ink); }

/* ── Layout primitives ────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 112px 0; }
.section-tight { padding: 80px 0; }
.section-alt { background: var(--off-white); }

/* ── Eyebrow (editorial label) ─────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── Section header ──────────────────────────────────── */
.sec-head { max-width: 720px; margin-bottom: 64px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head .lead { color: var(--body); }

/* Numbered editorial section index */
.sec-index {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--blue);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.sec-index::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blue);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
}
.btn i { font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════ */
.topbar {
  background: var(--ink);
  color: var(--whisper);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--blue-light); font-size: 0.78rem; }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-right a {
  color: var(--whisper);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.topbar-right a:hover { color: var(--blue-light); }
.topbar-right i { color: var(--blue-light); font-size: 0.78rem; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 30px rgba(11,27,42,0.06);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 42px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 10px 16px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links .btn { margin-left: 12px; padding: 11px 22px; font-size: 0.7rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════
   HERO — Bold modern editorial
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  padding: 60px 0 80px;
}

/* Layered atmospheric background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 700px at 80% 20%, rgba(125,212,245,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 600px at 20% 90%, rgba(74,168,216,0.10) 0%, transparent 65%),
    linear-gradient(180deg, var(--white) 0%, #F5FAFD 100%);
}

/* Caustic light pattern — like sunlight refracting through water */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 60% 30%, rgba(125,212,245,0.25) 0%, transparent 8%),
    radial-gradient(circle at 75% 50%, rgba(170,221,255,0.20) 0%, transparent 10%),
    radial-gradient(circle at 88% 25%, rgba(74,168,216,0.15) 0%, transparent 6%),
    radial-gradient(circle at 92% 60%, rgba(170,221,255,0.18) 0%, transparent 8%),
    radial-gradient(circle at 70% 75%, rgba(125,212,245,0.15) 0%, transparent 7%);
  filter: blur(2px);
  opacity: 0.7;
}

/* Animated diagonal shimmer band */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -20%;
  width: 80%;
  height: 130%;
  background: linear-gradient(110deg,
    transparent 38%,
    rgba(255,255,255,0.6) 48%,
    rgba(170,221,255,0.5) 50%,
    rgba(255,255,255,0.6) 52%,
    transparent 62%
  );
  filter: blur(50px);
  transform: skewX(-12deg);
  animation: shimmer 10s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes shimmer {
  0%, 100% { transform: skewX(-12deg) translateX(0); opacity: 0.35; }
  50% { transform: skewX(-12deg) translateX(-80px); opacity: 0.65; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

/* Eyebrow — minimalist pill with bullet */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(74,168,216,0.18);
}

/* Big bold display headline */
.hero h1 {
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
}
.hero h1 .light {
  font-weight: 300;
  color: var(--ink-soft);
  display: block;
}
.hero h1 .accent {
  color: var(--blue-deep);
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* Inline stat row at bottom — bigger, bolder numbers */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 22px;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.hero-stat strong {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Hero visual (right side) — diamond showcase ───── */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

/* Decorative concentric rings behind logo */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(74,168,216,0.18);
  animation: ringPulse 5s ease-in-out infinite;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px dashed rgba(74,168,216,0.14);
  animation: ringPulse 5s ease-in-out infinite 1s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

/* The diamond / logo — center showpiece */
.hero-diamond {
  position: relative;
  width: 70%;
  max-width: 380px;
  z-index: 4;
  filter: drop-shadow(0 24px 60px rgba(74,168,216,0.35)) drop-shadow(0 8px 20px rgba(11,27,42,0.08));
  animation: floatDiamond 6s ease-in-out infinite;
}
.hero-diamond img { width: 100%; height: auto; display: block; }
@keyframes floatDiamond {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

/* Caustic light puddle under the diamond */
.hero-caustic {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 70%;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(74,168,216,0.3) 0%, transparent 70%);
  filter: blur(20px);
  animation: causticPulse 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes causticPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scaleX(1.1); }
}

/* Floating spec chips around the diamond */
.float-spec {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 40px rgba(74,168,216,0.15), 0 4px 12px rgba(11,27,42,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  white-space: nowrap;
}
.float-spec-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.float-spec-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.float-spec-meta strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.float-spec-meta span {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.float-spec-1 { top: 5%; left: -12%; animation: floatA 6s ease-in-out infinite; }
.float-spec-2 { top: 42%; right: -16%; animation: floatA 7s ease-in-out infinite 0.8s; }
.float-spec-3 { bottom: 8%; left: -8%; animation: floatA 6.5s ease-in-out infinite 1.4s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ═══════════════════════════════════════════════════════
   TRUST BAND
   ═══════════════════════════════════════════════════════ */
.trust-band {
  background: var(--ink);
  color: var(--whisper);
  padding: 22px 0;
}
.trust-band .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.trust-item i { color: var(--blue-light); }
.trust-sep {
  width: 4px;
  height: 4px;
  background: var(--blue);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════════════
   INTRO
   ═══════════════════════════════════════════════════════ */
.intro {
  padding: 120px 0;
  background: var(--white);
}
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.intro-aside {
  border-left: 1px solid var(--line-blue);
  padding-left: 32px;
}
.intro-aside .sec-index { margin-bottom: 16px; }
.intro-aside h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 0;
  color: var(--ink);
}
.intro-aside h2 em {
  display: block;
  color: var(--blue-deep);
  font-weight: 800;
  font-style: normal;
  margin-top: 4px;
}

.intro-main p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.intro-main p:last-child { margin-bottom: 0; }
.intro-main strong { color: var(--ink); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services { background: var(--off-white); }
.services .container { max-width: var(--container-wide); padding: 0 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-blue);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .featured {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-deep);
  background: var(--blue-tint);
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.svc-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-tint);
  border: 1px solid var(--line-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.3rem;
  color: var(--blue-deep);
  transition: all var(--transition);
}
.svc-card:hover .svc-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(-3deg);
}
.svc-card h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 500;
}
.svc-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 22px;
}
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.svc-features li i {
  color: var(--blue);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════ */
.process {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: 'PROCESS';
  position: absolute;
  top: 40px;
  right: -60px;
  font-family: var(--display);
  font-size: 13rem;
  color: var(--off-white);
  font-weight: 300;
  letter-spacing: 0.1em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.process > .container { position: relative; z-index: 1; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: var(--line-blue);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 24px;
  position: relative;
  transition: all var(--transition);
}
.process-num::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--blue-tint);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.process-step:hover .process-num {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.process-step:hover .process-num::after { opacity: 1; }

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--body);
}
.process-step .step-icon {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 6px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--line);
}
.gal-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* Glass-themed gradient placeholders */
.gal-bg-1 { background: linear-gradient(135deg, #4AA8D8 0%, #7DD4F5 50%, #AADDFF 100%); }
.gal-bg-2 { background: linear-gradient(160deg, #2A7AA8 0%, #4AA8D8 60%, #7DD4F5 100%); }
.gal-bg-3 { background: linear-gradient(135deg, #AADDFF 0%, #EEF4F9 60%, #FFFFFF 100%); }
.gal-bg-4 { background: linear-gradient(120deg, #0B1B2A 0%, #2A7AA8 70%, #4AA8D8 100%); }
.gal-bg-5 { background: linear-gradient(135deg, #7DD4F5 0%, #FFFFFF 100%); }
.gal-bg-6 { background: linear-gradient(160deg, #EEF4F9 0%, #AADDFF 80%, #4AA8D8 100%); }
.gal-bg-7 { background: linear-gradient(135deg, #4AA8D8 0%, #0B1B2A 100%); }
.gal-bg-8 { background: linear-gradient(180deg, #FFFFFF 0%, #7DD4F5 100%); }

.gal-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
  z-index: 1;
}
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,27,42,0.5) 0%, transparent 50%);
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition);
}
.gal-item:hover::after { opacity: 1; }
.gal-label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.gal-item:hover .gal-label { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   FINISHES & GLASS OPTIONS
   ═══════════════════════════════════════════════════════ */
.options { background: var(--white); }
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.opt-block h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.opt-block .opt-desc {
  font-size: 0.95rem;
  color: var(--body);
  margin-bottom: 32px;
  line-height: 1.7;
}
.finishes-list, .glass-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.finish-row, .glass-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.finish-row:hover, .glass-row:hover {
  border-color: var(--line-blue);
  background: var(--white);
  box-shadow: var(--shadow);
}
.finish-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(11,27,42,0.1);
  box-shadow: inset 2px 2px 4px rgba(255,255,255,0.4), inset -2px -2px 4px rgba(0,0,0,0.15);
}
.sw-chrome      { background: linear-gradient(135deg, #E8ECF0 0%, #C0C8D0 50%, #8A95A1 100%); }
.sw-nickel      { background: linear-gradient(135deg, #C8CCD0 0%, #9CA3AA 50%, #6F7681 100%); }
.sw-matte-black { background: linear-gradient(135deg, #3A3A3A 0%, #1A1A1A 100%); }
.sw-gold        { background: linear-gradient(135deg, #F5D580 0%, #D4A843 50%, #A07F26 100%); }
.sw-bronze      { background: linear-gradient(135deg, #8B6A4A 0%, #5A4530 50%, #382A1F 100%); }

.finish-name, .glass-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  flex: 1;
}
.finish-desc, .glass-desc {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.glass-visual {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid var(--line-blue);
}
.gv-clear     { background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(170,221,255,0.15) 100%); }
.gv-low-iron  { background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(125,212,245,0.2) 100%); }
.gv-frosted   {
  background: rgba(238,244,249,0.9);
  position: relative;
}
.gv-frosted::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(170,221,255,0.4) 2px, rgba(170,221,255,0.4) 3px);
}
.gv-rain      {
  background: rgba(255,255,255,0.7);
  background-image:
    radial-gradient(circle at 25% 30%, rgba(74,168,216,0.5) 1px, transparent 2px),
    radial-gradient(circle at 75% 70%, rgba(74,168,216,0.5) 1px, transparent 2px),
    radial-gradient(circle at 60% 20%, rgba(74,168,216,0.4) 1px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(74,168,216,0.4) 1px, transparent 2px);
}

/* ═══════════════════════════════════════════════════════
   WHY DIAMOND (split feature)
   ═══════════════════════════════════════════════════════ */
.why { background: var(--ink); color: var(--whisper); padding: 120px 0; }
.why .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why h2 { color: var(--white); margin-bottom: 24px; }
.why h2 em { color: var(--blue-light); font-weight: 800; font-style: normal; }
.why .eyebrow { color: var(--blue-light); }
.why .eyebrow::before { background: var(--blue-light); }
.why .lead { color: var(--whisper); }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-feat {
  padding-left: 22px;
  border-left: 1px solid rgba(125,212,245,0.25);
}
.why-feat i {
  color: var(--blue-light);
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: block;
}
.why-feat h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.why-feat p {
  font-size: 0.88rem;
  color: var(--whisper);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials { background: var(--off-white); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--blue-tint);
  font-weight: 500;
  line-height: 1;
}
.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.85rem;
}
.test-text {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  flex-shrink: 0;
}
.test-info { flex: 1; }
.test-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.test-meta { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq { background: var(--white); }
.faq .container { max-width: 880px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--blue-deep); }
.faq-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  margin-right: 18px;
  letter-spacing: 0.05em;
}
.faq-q-text { flex: 1; }
.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blue-deep);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a-inner {
  padding: 0 0 26px 28px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--body);
  max-width: 760px;
}
.faq-item.open .faq-a { max-height: 360px; }

/* ═══════════════════════════════════════════════════════
   CTA banner
   ═══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, var(--blue-bright) 130%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15) 0%, transparent 40%);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3rem);
}
.cta-banner h2 em { color: var(--white); font-weight: 300; font-style: normal; opacity: 0.85; }
.cta-banner .lead {
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.cta-banner .btn { padding: 16px 36px; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.cta-banner .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.cta-banner .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact {
  background: var(--white);
  padding: 120px 0;
}
.contact .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-wrap { position: relative; }
.input-wrap label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.input-wrap select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A5C70'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 36px;
}
.input-wrap textarea { resize: vertical; min-height: 130px; font-family: var(--sans); }
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-tint);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 36px;
}

/* Contact info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.info-card h4 {
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.info-row:last-child { margin-bottom: 0; }
.info-row i {
  color: var(--blue-deep);
  font-size: 1rem;
  margin-top: 4px;
  width: 18px;
  flex-shrink: 0;
}
.info-row a, .info-row span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}
.info-row a:hover { color: var(--blue-deep); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  font-size: 0.92rem;
}
.hours-grid dt { color: var(--ink-soft); font-weight: 600; }
.hours-grid dd { color: var(--body); }

.parent-card {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-tint), var(--white));
  border: 1px solid var(--line-blue);
  border-radius: var(--radius);
}
.parent-card .small {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--blue-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.parent-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.6;
}
.parent-card a {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
}
.parent-card a i {
  font-size: 0.75rem;
  transition: transform var(--transition);
}
.parent-card a:hover { color: var(--blue-deep); }
.parent-card a:hover i { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--whisper);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer .brand-text .brand-name { color: var(--white); }
.footer .brand-text .brand-sub { color: var(--blue-light); }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--whisper);
  margin: 22px 0;
  max-width: 320px;
}
.footer-soc {
  display: flex;
  gap: 10px;
}
.footer-soc a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whisper);
  transition: all var(--transition);
}
.footer-soc a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.footer-col h5 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(125,212,245,0.18);
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  color: var(--whisper);
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue-light); }
.footer-col a i { color: var(--blue); font-size: 0.7rem; }
.footer-col span { font-size: 0.88rem; line-height: 1.6; }
.footer-col span i { color: var(--blue); margin-right: 8px; }

.footer-bot {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(182,194,210,0.6);
}
.footer-bot .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bot a { color: rgba(182,194,210,0.7); }
.footer-bot a:hover { color: var(--blue-light); }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  font-size: 1.6rem;
  transition: transform var(--transition);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.6), 0 0 0 14px rgba(37,211,102,0.08); }
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
.reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  .services .container { padding: 0 28px; }
}

@media (max-width: 1180px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-stats { max-width: 100%; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .float-spec-1 { left: 0; }
  .float-spec-2 { right: -4%; }
  .float-spec-3 { left: 4%; }
  .intro .container { grid-template-columns: 1fr; gap: 40px; }
  .why .container { grid-template-columns: 1fr; gap: 40px; }
  .options-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact .container { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .test-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .topbar-left span { display: none; }
  .topbar-right { gap: 14px; }
  .topbar-right a span { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(11,27,42,0.1);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 12px; font-size: 0.85rem; border-bottom: 1px solid var(--line); }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links .btn { margin: 16px 0 0; padding: 14px 22px; justify-content: center; }
  .hamburger { display: flex; }
  .nav.menu-open { box-shadow: 0 1px 30px rgba(11,27,42,0.1); }

  .hero { padding: 50px 0 80px; min-height: auto; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.4rem) !important; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; max-width: 100%; }
  .hero-stat { padding-right: 12px; }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .float-spec-1, .float-spec-2, .float-spec-3 { display: none; }
  .hero-visual::before, .hero-visual::after { display: none; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 32px 28px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gal-item.tall { grid-row: span 1; }
  .gal-item.wide { grid-column: span 2; }
  .why-features { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bot .container { flex-direction: column; text-align: center; }

  .trust-band .container { gap: 16px; }
  .trust-item { font-size: 0.74rem; }
  .trust-sep { display: none; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-banner .btn { justify-content: center; }
  .test-card { padding: 28px 24px; }
  .process::before { font-size: 7rem; top: 60px; right: -30px; }
}
