:root {
  --amber: #03BCD0;
  --amber-bright: #5DD9E8;
  --amber-dark: #027C89;
  --navy: #07242E;
  --navy-2: #0E3340;
  --navy-3: #15414f;
  --slate: #5A7682;
  --line: #D9E5E7;
  --line-2: #C7D6D9;
  --off-white: #E6F4F6;
  --cream: #F0F8F9;
  --white: #FFFFFF;
  --teal: #027C89;

  --font-display: 'Helvetica Neue', 'Arial Black', Arial, system-ui, sans-serif;
  --font-cond: 'Arial Narrow', 'Helvetica Neue Condensed', Impact, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Courier New', monospace;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1100px) {
  .container {
    padding: 0 3rem;
  }
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .ti {
  font-size: 1.1rem;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(3, 188, 208, 0.55);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.trust-strip {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .trust-strip {
    display: flex;
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-cell:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon .ti {
  font-size: 1.1rem;
}

.trust-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .topbar-right {
    justify-content: center;
  }
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-right a:hover {
  color: var(--amber);
}

.topbar-socials {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s;
}

.topbar-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ─────────── HEADER ─────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.logo img {
  height: 60px;
}

@media (min-width: 768px) {
  .logo img {
    height: 77px;
  }
}

.nav {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.15s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--amber-dark);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-phone-icon .ti {
  font-size: 1.3rem;
}

.header-phone-text {
  line-height: 1.1;
}

.header-phone-text small {
  font-size: 0.72rem;
  color: var(--slate);
  display: block;
}

.header-phone-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .ti {
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 720px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig1%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex1%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%281320%2C220%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig1%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 9s ease;
}

.hero-bg.zooming {
  transform: scale(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.95) 0%, rgba(7, 36, 46, 0.78) 45%, rgba(7, 36, 46, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 320px;
  height: 320px;
  border: 24px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  padding: 5rem 0 7rem;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(3, 188, 208, 0.15);
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.hero-callout-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  position: relative;
}

.hero-callout-icon .ti {
  font-size: 1.4rem;
}

.hero-callout-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(3, 188, 208, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-callout-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-callout-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}

/* hero side dots (slider feel) */
.hero-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-dots {
    display: flex;
  }
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.hero-dots span.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* ticker / marquee under hero */
.ticker {
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.ticker-item .ti {
  color: var(--navy);
}

.ticker-sep {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ─────────── FEATURE STRIP (3 floating cards) ─────────── */
.features-float {
  background: var(--off-white);
  padding: 0 0 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.18);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover .feature-content>* {
  color: var(--white);
}

.feature-card:hover .feature-icon {
  background: var(--amber);
  color: var(--navy);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-icon .ti {
  font-size: 1.7rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ─────────── SECTION CHROME ─────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-off {
  background: var(--off-white);
}

.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.eyebrow.eyebrow-light {
  color: var(--amber);
}

.eyebrow.eyebrow-light::before {
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.section-intro.intro-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--navy);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.section-watermark.wm-light {
  color: var(--white);
  opacity: 0.04;
}

/* ─────────── ABOUT ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.4);
}

@media (max-width: 540px) {
  .experience-badge {
    left: 0;
  }
}

.experience-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge .num sup {
  font-size: 0.5em;
  vertical-align: top;
}

.experience-badge .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  line-height: 1.1;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.about-feature:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon .ti {
  font-size: 1.4rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─────────── QUOTE STRIP (dark with phone CTA) ─────────── */
.quote-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.quote-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 500px;
  background: var(--amber);
  transform: skewX(-18deg) translateX(-50%);
  opacity: 0.95;
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .quote-strip::after {
    display: block;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1.4fr auto 1fr;
  }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-heading em {
  font-style: normal;
  color: var(--amber);
}

.quote-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.quote-play .ti {
  font-size: 2rem;
  margin-left: 4px;
}

.quote-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.quote-play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2.5s ease-in-out 0.5s infinite;
}

.quote-call {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .quote-call {
    text-align: center;
    align-items: center;
  }
}

.quote-call small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-call strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ─────────── CATEGORIES (image cards) ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.55;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  opacity: 0.7;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.2) 0%, rgba(7, 36, 46, 0.85) 70%, rgba(7, 36, 46, 0.95) 100%);
}

.cat-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.cat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.15em;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
}

.cat-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cat-arrow {
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-start;
}

.cat-arrow .ti {
  font-size: 1.2rem;
}

.cat-card:hover .cat-arrow {
  background: var(--white);
  transform: rotate(-45deg);
}


/* ─────────── PER-CARD IMAGE SLIDER ─────────── */
.product-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.product-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px -4px rgba(7, 36, 46, 0.3);
}

.product-slider:hover .product-slider-arrow {
  opacity: 1;
}

.product-slider-prev {
  left: 0.7rem;
}

.product-slider-next {
  right: 0.7rem;
}

.product-slider-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* Always show arrows on touch (no hover) */
@media (hover: none) {
  .product-slider-arrow {
    opacity: 0.9;
  }
}

.product-slider-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.product-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(7, 36, 46, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-slider-dot:hover {
  background: rgba(7, 36, 46, 0.5);
}

.product-slider-dot.active {
  background: var(--amber);
  width: 20px;
  border-radius: 99px;
}

.product-cat-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.9rem;
  z-index: 3;
  background: rgba(7, 36, 46, 0.9);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  padding: 0.28rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ─────────── PRODUCTS GRID ─────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -15px rgba(7, 36, 46, 0.18);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-cta {
  background: var(--amber);
  color: var(--navy);
}

.product-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--off-white);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-num-corner {
  z-index: 3;
}

.product-num-corner-DUP {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.6rem 1.7rem 1.7rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  min-height: 3em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.product-cta .ti {
  font-size: 1rem;
}

/* ─────────── INDUSTRIES STRIP (Why customers come) ─────────── */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .industries-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile-bg {
  transform: scale(1.1);
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.1) 0%, rgba(7, 36, 46, 0.92) 100%);
  transition: background 0.3s;
}

.industry-tile:hover::before {
  background: linear-gradient(180deg, rgba(3, 188, 208, 0.4) 0%, rgba(7, 36, 46, 0.92) 100%);
}

.industry-tile-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  z-index: 2;
}

.industry-tile-label small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.industry-tile-label h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ─────────── WHY US / FAQ split ─────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.why-image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.7rem;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
  max-width: 280px;
}

.why-image-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.why-image-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
}

.acc-item {
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  background: var(--white);
  transition: all 0.2s;
}

.acc-item.open {
  border-color: var(--amber);
  box-shadow: 0 10px 30px -10px rgba(7, 36, 46, 0.1);
}

.acc-q {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.acc-q-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.acc-item.open .acc-q-icon {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-a {
  max-height: 320px;
}

.acc-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─────────── STATS COUNTER BAND ─────────── */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  position: relative;
}

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

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat {
    border-right: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--amber);
  margin-left: 0.05em;
  vertical-align: top;
}

.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
}


/* ─────────── CLIENTS LOGO WALL ─────────── */
.clients-section {
  background: var(--white);
}

.clients-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-wall {
    grid-template-columns: repeat(8, 1fr);
  }
}

.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all 0.25s ease;
  position: relative;
}

.client-cell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.client-cell:hover {
  background: var(--cream);
}

.client-cell:hover::after {
  transform: scaleX(1);
}

.client-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.65;
  transition: all 0.25s ease;
}

.client-cell:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}


.product-real-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(3, 188, 208, 0.3);
}

.product-img-wrap {
  background: #FFFFFF;
}

.product-img {
  object-fit: contain !important;
  padding: 1rem;
}


/* ─────────── INDUSTRIES (BENTO LAYOUT, v8) ─────────── */
.industries-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .industries-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
    gap: 1.4rem;
  }

  .ind-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
  isolation: isolate;
}

.ind-card-featured {
  aspect-ratio: auto;
  min-height: 460px;
}

@media (max-width: 1023px) {
  .ind-card-featured {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .ind-card {
    aspect-ratio: 4 / 3;
  }

  .ind-card-featured {
    aspect-ratio: 4 / 3;
  }
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.ind-card:hover .ind-bg {
  transform: scale(1.06);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0) 0%, rgba(7, 36, 46, 0.25) 35%, rgba(7, 36, 46, 0.85) 78%, rgba(7, 36, 46, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.05) 0%, rgba(7, 36, 46, 0.4) 35%, rgba(7, 36, 46, 0.92) 78%, rgba(7, 36, 46, 0.98) 100%);
}

.ind-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.ind-card-featured .ind-content {
  padding: 2.2rem;
}

.ind-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ind-card-featured .ind-num {
  font-size: 1.1rem;
}

.ind-bottom {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ind-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.ind-card-featured .ind-name {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .ind-card-featured .ind-name {
    font-size: 3rem;
  }
}

.ind-apps {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin-bottom: 0.9rem;
  /* Reveal on hover (or always visible on featured) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.ind-card:hover .ind-apps,
.ind-card-featured .ind-apps {
  max-height: 4.5em;
  opacity: 1;
  margin-bottom: 0.9rem;
}

.ind-card-featured .ind-apps {
  font-size: 0.9rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
}

.ind-card:hover .ind-cta {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.ind-cta svg {
  transition: transform 0.3s ease;
}

.ind-card:hover .ind-cta svg {
  transform: translateX(4px);
}

/* CTA card (12th bento cell) */
.ind-cta-card {
  aspect-ratio: 1 / 1;
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.ind-cta-card:hover {
  background: var(--amber-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
}

.ind-cta-card-inner {
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ind-cta-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.7;
}

.ind-cta-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ind-cta-card-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ind-cta-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ind-cta-card:hover .ind-cta-card-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .ind-cta-card {
    aspect-ratio: 4 / 3;
  }
}

/* Hide the legacy industries-strip (we replaced its container) */
.industries-strip {
  display: none !important;
}


/* ─────────── ABOUT v10 ─────────── */
.about-v10 {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-v10 {
    padding: 4.5rem 0;
  }
}

.about-v10-gear {
  position: absolute;
  top: 0;
  right: -120px;
  width: 700px;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .about-v10-gear {
    display: none;
  }
}

.about-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v10-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

/* IMAGE COLLAGE */
.about-v10-images {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-v10-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px -15px rgba(7, 36, 46, 0.35);
}

.about-v10-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-img-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(7, 36, 46, 0.3);
}

.about-v10-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-badge {
  position: absolute;
  top: 28%;
  right: 0;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
  border-radius: 4px;
  min-width: 140px;
}

.about-v10-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-v10-badge-num sup {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 1px;
}

.about-v10-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* CONTENT */
.about-v10-eyebrow {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  /* cyan */
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

.about-v10-eyebrow .brush {
  position: absolute;
  left: -10px;
  bottom: -8px;
  z-index: -1;
}

.about-v10-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-v10-title em {
  font-style: normal;
  color: var(--amber);
}

.about-v10-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.about-v10-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .about-v10-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.about-v10-feature {
  background: #F0F8F9;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.about-v10-feature:hover {
  background: #FFFFFF;
  box-shadow: 0 18px 40px -12px rgba(7, 36, 46, 0.18);
  transform: translateY(-3px);
}

.about-v10-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 22px -6px rgba(3, 188, 208, 0.45);
}

.about-v10-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.about-v10-feature p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
}

/* CTA pill button (matches reference's green pill but in our cyan) */
.about-v10-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 14px 30px -8px rgba(3, 188, 208, 0.45);
}

.about-v10-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -10px rgba(3, 188, 208, 0.55);
}

.about-v10-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-v10-cta>span:first-child {
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-v10-cta-icon {
  width: 56px;
  background: var(--navy);
  color: var(--amber);
  transition: background 0.2s ease;
}

.about-v10-cta:hover .about-v10-cta-icon {
  background: #03A0B0;
}

/* Hide the legacy about section */
.section.about,
.section.section-bg-off#about {
  display: none !important;
}


/* ─────────── WHY US v12 (editorial timeline) ─────────── */
.why-v12 {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .why-v12 {
    padding: 4.5rem 0 5rem;
  }
}

/* Background pattern */
.why-v12-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.why-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow-tl {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
}

.why-v12-glow-br {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.06) 0%, transparent 60%);
}

.why-v12 .container {
  position: relative;
  z-index: 2;
}

.why-v12-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-v12-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }
}

/* LEFT: sticky intro */
.why-v12-intro {
  position: relative;
}

@media (min-width: 1024px) {
  .why-v12-intro {
    position: sticky;
    top: 120px;
  }
}

.why-v12-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.why-v12-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.why-v12-eyebrow-light {
  color: var(--amber);
}

.why-v12-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.why-v12-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.why-v12-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.why-v12-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero stat card */
.why-v12-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 4px;
  max-width: 480px;
  overflow: hidden;
}

.why-v12-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.why-v12-stat-pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0);
    transform: scale(1.2);
  }
}

.why-v12-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-v12-stat-num span {
  font-size: 0.55em;
  margin-left: 1px;
}

.why-v12-stat-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-v12-stat-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-v12-stat-label span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* RIGHT: numbered timeline */
.why-v12-list {
  position: relative;
}

/* The vertical timeline rail */
.why-v12-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(3, 188, 208, 0.05) 0%,
      rgba(3, 188, 208, 0.4) 20%,
      rgba(3, 188, 208, 0.4) 80%,
      rgba(3, 188, 208, 0.05) 100%);
  z-index: 0;
}

@media (min-width: 540px) {
  .why-v12-list::before {
    left: 36px;
  }
}

.why-v12-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  transition: transform 0.3s ease;
}

@media (min-width: 540px) {
  .why-v12-item {
    grid-template-columns: 80px 1fr;
    gap: 1.6rem;
  }
}

.why-v12-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-v12-item:hover {
  transform: translateX(4px);
}

.why-v12-item:hover .why-v12-num {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.why-v12-item:hover .why-v12-num span {
  color: var(--navy);
}

.why-v12-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(3, 188, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  z-index: 1;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 540px) {
  .why-v12-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
}

.why-v12-num span {
  font-style: italic;
  transition: color 0.25s ease;
}

.why-v12-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

@media (min-width: 540px) {
  .why-v12-body h3 {
    font-size: 1.45rem;
  }
}

.why-v12-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.why-v12-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.why-v12-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-v12-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ block at the bottom */
.why-v12-faq-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .why-v12-faq-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.why-v12-faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-v12-faq-head {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.why-v12-faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.why-v12-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.why-v12-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .why-v12-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

.why-v12-faq-item {
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
  border-left: 3px solid rgba(3, 188, 208, 0.4);
}

.why-v12-faq-item:hover {
  background: rgba(3, 188, 208, 0.05);
  border-left-color: var(--amber);
  transform: translateY(-2px);
}

.why-v12-faq-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.why-v12-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide the legacy why-us section */
.section.section-bg-cream#why-us:not(.why-v12) {
  display: none !important;
}



/* Real product photos in footer — center-crop them */
.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* ─────────── CONTACT MAP BLOCK (v14) ─────────── */
/* Section keeps its navy background (form contrast) */
.contact-v13 {
  position: relative;
  isolation: isolate;
}

/* The new visible map block sits inside the container, after the form row */
.contact-map-section {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .contact-map-section {
    margin-top: 3rem;
  }
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background: var(--navy);
  border: 1px solid rgba(3, 188, 208, 0.2);
}

@media (max-width: 1023px) {
  .contact-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .contact-map-wrapper {
    height: 720px;
  }
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Subtle desaturation so the map sits well in the page tone, but
       remains clearly recognizable as a map */
  filter: saturate(0.85) contrast(1.02);
}

/* Floating "Visit Our Office" address card */
.contact-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
  /* cyan accent */
}

@media (max-width: 639px) {
  .contact-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.contact-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  /* cyan */
  margin-bottom: 0.85rem;
}

.contact-map-card-tag svg {
  flex-shrink: 0;
  color: var(--amber);
}

.contact-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.contact-map-card-address {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.contact-map-card-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-map-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.18s ease;
}

.contact-map-card-phone svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-map-card-phone:hover {
  color: var(--amber);
}

.contact-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.contact-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.contact-map-card-cta svg {
  transition: transform 0.2s ease;
}

.contact-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin marker — decorative ring on the map indicating our location */
.contact-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: mapPinPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  /* Hide on mobile where the address card covers center */
  display: none;
}

@media (min-width: 768px) {
  .contact-map-wrapper::after {
    display: block;
    top: 50%;
    left: 65%;
  }
}

@keyframes mapPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7),
      0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0),
      0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0),
      0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}


/* ─────────── TESTIMONIALS ─────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
}

.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ─────────── AI FINDER ─────────── */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.ai-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 540px) {
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-features li .ti {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ai-chat {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.ai-chat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-title-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-title-icon .ti {
  font-size: 1.1rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.msg {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
}

.msg-bot {
  color: rgba(255, 255, 255, 0.9);
}

.msg-user {
  justify-content: flex-end;
}

.msg-bubble {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 85%;
  border-radius: 4px 4px 4px 0;
}

.msg-user .msg-bubble {
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px 4px 0 4px;
  font-weight: 500;
}

.ai-rec {
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 188, 208, 0.12);
  border-left: 3px solid var(--amber);
  font-size: 0.88rem;
  color: var(--white);
}

.ai-rec strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

/* ─────────── CONTACT / CTA ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .ti {
  font-size: 1.4rem;
}

.contact-card-text small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-top: 0.15rem;
}

.form-block {
  background: var(--white);
  padding: 2.5rem;
  border-top: 6px solid var(--amber);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.15);
}

.form-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.form-block>p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 540px) {
  .form-row.r2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: all 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-block .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─────────── BOTTOM FEATURE BAND ─────────── */
.bottom-band {
  background: var(--amber);
  color: var(--navy);
  padding: 0;
}

.bottom-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .bottom-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cell {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid rgba(7, 36, 46, 0.15);
}

.bb-cell:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .bb-cell {
    border-right: none;
    border-bottom: 1px solid rgba(7, 36, 46, 0.15);
  }

  .bb-cell:last-child {
    border-bottom: none;
  }
}

.bb-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.bb-icon .ti {
  font-size: 1.5rem;
}

.bb-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.bb-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo img {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-tag {
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
  transition: transform 0.15s;
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-list a:hover::before {
  transform: translateX(3px);
}

.footer-recent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-recent-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-img {
  width: 64px;
  height: 64px;
  background: var(--navy-2);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-recent-content small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-recent-content a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.15s;
}

.footer-recent-content a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(3, 188, 208, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-contact-icon .ti {
  font-size: 1rem;
}

.footer-contact small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.footer-contact strong,
.footer-contact a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .ti {
  font-size: 1.85rem;
}

/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}


/* About sample ribbon + photo note (v17) */
.about-v10-img-main {
  position: relative;
}

.about-v10-img-main img {
  object-fit: cover;
}

.about-v10-sample-ribbon {
  position: absolute;
  top: 14px;
  left: -34px;
  transform: rotate(-45deg);
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 2.6rem;
  z-index: 4;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.4);
}

.about-v10-photo-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding: 0.9rem 1.1rem;
  background: rgba(3, 188, 208, 0.07);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--slate);
}

.about-v10-photo-note svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-v10-photo-note strong {
  color: var(--navy);
  font-weight: 700;
}


/* ─────────── RESPONSIVE SAFETY NET (v19) ─────────── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Media inside fixed-aspect frames must still fill them */
.product-slide img,
.hero-slide-bg,
.about-v10-img-main img,
.about-v10-img-detail img,
.contact-map-frame {
  max-width: none;
}

/* Let wide tables scroll rather than overflow the page */
table {
  max-width: 100%;
}

/* Prevent long unbroken strings (emails, URLs) from forcing width */
.footer-recent-content a,
.ct-method-value,
.ct-office-row-value {
  overflow-wrap: anywhere;
  word-break: break-word;
}

--amber-bright: #5DD9E8;
--amber-dark: #027C89;
--navy: #07242E;
--navy-2: #0E3340;
--navy-3: #15414f;
--slate: #5A7682;
--line: #D9E5E7;
--line-2: #C7D6D9;
--off-white: #E6F4F6;
--cream: #F0F8F9;
--white: #FFFFFF;
--teal: #027C89;

--font-display: 'Helvetica Neue',
'Arial Black',
Arial,
system-ui,
sans-serif;
--font-cond: 'Arial Narrow',
'Helvetica Neue Condensed',
Impact,
system-ui,
sans-serif;
--font-body: -apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
'Helvetica Neue',
Arial,
system-ui,
sans-serif;
--font-mono: ui-monospace,
'SF Mono',
Menlo,
Consolas,
'Courier New',
monospace;

--container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1100px) {
  .container {
    padding: 0 3rem;
  }
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .ti {
  font-size: 1.1rem;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(3, 188, 208, 0.55);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.trust-strip {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .trust-strip {
    display: flex;
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-cell:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon .ti {
  font-size: 1.1rem;
}

.trust-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .topbar-right {
    justify-content: center;
  }
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-right a:hover {
  color: var(--amber);
}

.topbar-socials {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s;
}

.topbar-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ─────────── HEADER ─────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.logo img {
  height: 60px;
}

@media (min-width: 768px) {
  .logo img {
    height: 77px;
  }
}

.nav {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.15s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--amber-dark);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-phone-icon .ti {
  font-size: 1.3rem;
}

.header-phone-text {
  line-height: 1.1;
}

.header-phone-text small {
  font-size: 0.72rem;
  color: var(--slate);
  display: block;
}

.header-phone-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .ti {
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 720px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig1%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex1%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%281320%2C220%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig1%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 9s ease;
}

.hero-bg.zooming {
  transform: scale(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.95) 0%, rgba(7, 36, 46, 0.78) 45%, rgba(7, 36, 46, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 320px;
  height: 320px;
  border: 24px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  padding: 5rem 0 7rem;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(3, 188, 208, 0.15);
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.hero-callout-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  position: relative;
}

.hero-callout-icon .ti {
  font-size: 1.4rem;
}

.hero-callout-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(3, 188, 208, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-callout-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-callout-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}

/* hero side dots (slider feel) */
.hero-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-dots {
    display: flex;
  }
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.hero-dots span.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* ticker / marquee under hero */
.ticker {
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.ticker-item .ti {
  color: var(--navy);
}

.ticker-sep {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ─────────── FEATURE STRIP (3 floating cards) ─────────── */
.features-float {
  background: var(--off-white);
  padding: 0 0 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.18);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover .feature-content>* {
  color: var(--white);
}

.feature-card:hover .feature-icon {
  background: var(--amber);
  color: var(--navy);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-icon .ti {
  font-size: 1.7rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ─────────── SECTION CHROME ─────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-off {
  background: var(--off-white);
}

.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.eyebrow.eyebrow-light {
  color: var(--amber);
}

.eyebrow.eyebrow-light::before {
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.section-intro.intro-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--navy);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.section-watermark.wm-light {
  color: var(--white);
  opacity: 0.04;
}

/* ─────────── ABOUT ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.4);
}

@media (max-width: 540px) {
  .experience-badge {
    left: 0;
  }
}

.experience-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge .num sup {
  font-size: 0.5em;
  vertical-align: top;
}

.experience-badge .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  line-height: 1.1;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.about-feature:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon .ti {
  font-size: 1.4rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─────────── QUOTE STRIP (dark with phone CTA) ─────────── */
.quote-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.quote-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 500px;
  background: var(--amber);
  transform: skewX(-18deg) translateX(-50%);
  opacity: 0.95;
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .quote-strip::after {
    display: block;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1.4fr auto 1fr;
  }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-heading em {
  font-style: normal;
  color: var(--amber);
}

.quote-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.quote-play .ti {
  font-size: 2rem;
  margin-left: 4px;
}

.quote-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.quote-play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2.5s ease-in-out 0.5s infinite;
}

.quote-call {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .quote-call {
    text-align: center;
    align-items: center;
  }
}

.quote-call small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-call strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ─────────── CATEGORIES (image cards) ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.55;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  opacity: 0.7;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.2) 0%, rgba(7, 36, 46, 0.85) 70%, rgba(7, 36, 46, 0.95) 100%);
}

.cat-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.cat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.15em;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
}

.cat-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cat-arrow {
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-start;
}

.cat-arrow .ti {
  font-size: 1.2rem;
}

.cat-card:hover .cat-arrow {
  background: var(--white);
  transform: rotate(-45deg);
}

/* ─────────── PRODUCTS GRID ─────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -15px rgba(7, 36, 46, 0.18);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-cta {
  background: var(--amber);
  color: var(--navy);
}

.product-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--off-white);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-num-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.6rem 1.7rem 1.7rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  min-height: 3em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.product-cta .ti {
  font-size: 1rem;
}

/* ─────────── INDUSTRIES STRIP (Why customers come) ─────────── */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .industries-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile-bg {
  transform: scale(1.1);
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.1) 0%, rgba(7, 36, 46, 0.92) 100%);
  transition: background 0.3s;
}

.industry-tile:hover::before {
  background: linear-gradient(180deg, rgba(3, 188, 208, 0.4) 0%, rgba(7, 36, 46, 0.92) 100%);
}

.industry-tile-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  z-index: 2;
}

.industry-tile-label small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.industry-tile-label h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ─────────── WHY US / FAQ split ─────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.why-image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.7rem;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
  max-width: 280px;
}

.why-image-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.why-image-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
}

.acc-item {
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  background: var(--white);
  transition: all 0.2s;
}

.acc-item.open {
  border-color: var(--amber);
  box-shadow: 0 10px 30px -10px rgba(7, 36, 46, 0.1);
}

.acc-q {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.acc-q-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.acc-item.open .acc-q-icon {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-a {
  max-height: 320px;
}

.acc-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─────────── STATS COUNTER BAND ─────────── */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  position: relative;
}

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

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat {
    border-right: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--amber);
  margin-left: 0.05em;
  vertical-align: top;
}

.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
}


/* ─────────── CLIENTS LOGO WALL ─────────── */
.clients-section {
  background: var(--white);
}

.clients-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-wall {
    grid-template-columns: repeat(8, 1fr);
  }
}

.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all 0.25s ease;
  position: relative;
}

.client-cell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.client-cell:hover {
  background: var(--cream);
}

.client-cell:hover::after {
  transform: scaleX(1);
}

.client-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.65;
  transition: all 0.25s ease;
}

.client-cell:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}


.product-real-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(3, 188, 208, 0.3);
}

.product-img-wrap {
  background: #FFFFFF;
}

.product-img {
  object-fit: contain !important;
  padding: 1rem;
}


/* ─────────── INDUSTRIES (BENTO LAYOUT, v8) ─────────── */
.industries-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .industries-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
    gap: 1.4rem;
  }

  .ind-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
  isolation: isolate;
}

.ind-card-featured {
  aspect-ratio: auto;
  min-height: 460px;
}

@media (max-width: 1023px) {
  .ind-card-featured {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .ind-card {
    aspect-ratio: 4 / 3;
  }

  .ind-card-featured {
    aspect-ratio: 4 / 3;
  }
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.ind-card:hover .ind-bg {
  transform: scale(1.06);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0) 0%, rgba(7, 36, 46, 0.25) 35%, rgba(7, 36, 46, 0.85) 78%, rgba(7, 36, 46, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.05) 0%, rgba(7, 36, 46, 0.4) 35%, rgba(7, 36, 46, 0.92) 78%, rgba(7, 36, 46, 0.98) 100%);
}

.ind-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.ind-card-featured .ind-content {
  padding: 2.2rem;
}

.ind-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ind-card-featured .ind-num {
  font-size: 1.1rem;
}

.ind-bottom {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ind-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.ind-card-featured .ind-name {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .ind-card-featured .ind-name {
    font-size: 3rem;
  }
}

.ind-apps {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin-bottom: 0.9rem;
  /* Reveal on hover (or always visible on featured) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.ind-card:hover .ind-apps,
.ind-card-featured .ind-apps {
  max-height: 4.5em;
  opacity: 1;
  margin-bottom: 0.9rem;
}

.ind-card-featured .ind-apps {
  font-size: 0.9rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
}

.ind-card:hover .ind-cta {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.ind-cta svg {
  transition: transform 0.3s ease;
}

.ind-card:hover .ind-cta svg {
  transform: translateX(4px);
}

/* CTA card (12th bento cell) */
.ind-cta-card {
  aspect-ratio: 1 / 1;
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.ind-cta-card:hover {
  background: var(--amber-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
}

.ind-cta-card-inner {
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ind-cta-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.7;
}

.ind-cta-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ind-cta-card-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ind-cta-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ind-cta-card:hover .ind-cta-card-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .ind-cta-card {
    aspect-ratio: 4 / 3;
  }
}

/* Hide the legacy industries-strip (we replaced its container) */
.industries-strip {
  display: none !important;
}


/* ─────────── ABOUT v10 ─────────── */
.about-v10 {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-v10 {
    padding: 4.5rem 0;
  }
}

.about-v10-gear {
  position: absolute;
  top: 0;
  right: -120px;
  width: 700px;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .about-v10-gear {
    display: none;
  }
}

.about-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v10-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

/* IMAGE COLLAGE */
.about-v10-images {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-v10-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px -15px rgba(7, 36, 46, 0.35);
}

.about-v10-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-img-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(7, 36, 46, 0.3);
}

.about-v10-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-badge {
  position: absolute;
  top: 28%;
  right: 0;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
  border-radius: 4px;
  min-width: 140px;
}

.about-v10-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-v10-badge-num sup {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 1px;
}

.about-v10-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* CONTENT */
.about-v10-eyebrow {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  /* cyan */
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

.about-v10-eyebrow .brush {
  position: absolute;
  left: -10px;
  bottom: -8px;
  z-index: -1;
}

.about-v10-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-v10-title em {
  font-style: normal;
  color: var(--amber);
}

.about-v10-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.about-v10-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .about-v10-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.about-v10-feature {
  background: #F0F8F9;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.about-v10-feature:hover {
  background: #FFFFFF;
  box-shadow: 0 18px 40px -12px rgba(7, 36, 46, 0.18);
  transform: translateY(-3px);
}

.about-v10-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 22px -6px rgba(3, 188, 208, 0.45);
}

.about-v10-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.about-v10-feature p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
}

/* CTA pill button (matches reference's green pill but in our cyan) */
.about-v10-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 14px 30px -8px rgba(3, 188, 208, 0.45);
}

.about-v10-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -10px rgba(3, 188, 208, 0.55);
}

.about-v10-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-v10-cta>span:first-child {
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-v10-cta-icon {
  width: 56px;
  background: var(--navy);
  color: var(--amber);
  transition: background 0.2s ease;
}

.about-v10-cta:hover .about-v10-cta-icon {
  background: #03A0B0;
}

/* Hide the legacy about section */
.section.about,
.section.section-bg-off#about {
  display: none !important;
}


/* ─────────── WHY US v12 (editorial timeline) ─────────── */
.why-v12 {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .why-v12 {
    padding: 4.5rem 0 5rem;
  }
}

/* Background pattern */
.why-v12-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.why-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow-tl {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
}

.why-v12-glow-br {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.06) 0%, transparent 60%);
}

.why-v12 .container {
  position: relative;
  z-index: 2;
}

.why-v12-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-v12-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }
}

/* LEFT: sticky intro */
.why-v12-intro {
  position: relative;
}

@media (min-width: 1024px) {
  .why-v12-intro {
    position: sticky;
    top: 120px;
  }
}

.why-v12-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.why-v12-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.why-v12-eyebrow-light {
  color: var(--amber);
}

.why-v12-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.why-v12-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.why-v12-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.why-v12-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero stat card */
.why-v12-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 4px;
  max-width: 480px;
  overflow: hidden;
}

.why-v12-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.why-v12-stat-pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0);
    transform: scale(1.2);
  }
}

.why-v12-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-v12-stat-num span {
  font-size: 0.55em;
  margin-left: 1px;
}

.why-v12-stat-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-v12-stat-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-v12-stat-label span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* RIGHT: numbered timeline */
.why-v12-list {
  position: relative;
}

/* The vertical timeline rail */
.why-v12-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(3, 188, 208, 0.05) 0%,
      rgba(3, 188, 208, 0.4) 20%,
      rgba(3, 188, 208, 0.4) 80%,
      rgba(3, 188, 208, 0.05) 100%);
  z-index: 0;
}

@media (min-width: 540px) {
  .why-v12-list::before {
    left: 36px;
  }
}

.why-v12-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  transition: transform 0.3s ease;
}

@media (min-width: 540px) {
  .why-v12-item {
    grid-template-columns: 80px 1fr;
    gap: 1.6rem;
  }
}

.why-v12-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-v12-item:hover {
  transform: translateX(4px);
}

.why-v12-item:hover .why-v12-num {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.why-v12-item:hover .why-v12-num span {
  color: var(--navy);
}

.why-v12-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(3, 188, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  z-index: 1;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 540px) {
  .why-v12-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
}

.why-v12-num span {
  font-style: italic;
  transition: color 0.25s ease;
}

.why-v12-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

@media (min-width: 540px) {
  .why-v12-body h3 {
    font-size: 1.45rem;
  }
}

.why-v12-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.why-v12-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.why-v12-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-v12-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ block at the bottom */
.why-v12-faq-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .why-v12-faq-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.why-v12-faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-v12-faq-head {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.why-v12-faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.why-v12-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.why-v12-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .why-v12-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

.why-v12-faq-item {
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
  border-left: 3px solid rgba(3, 188, 208, 0.4);
}

.why-v12-faq-item:hover {
  background: rgba(3, 188, 208, 0.05);
  border-left-color: var(--amber);
  transform: translateY(-2px);
}

.why-v12-faq-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.why-v12-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide the legacy why-us section */
.section.section-bg-cream#why-us:not(.why-v12) {
  display: none !important;
}



/* Real product photos in footer — center-crop them */
.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* ─────────── CONTACT MAP BLOCK (v14) ─────────── */
/* Section keeps its navy background (form contrast) */
.contact-v13 {
  position: relative;
  isolation: isolate;
}

/* The new visible map block sits inside the container, after the form row */
.contact-map-section {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .contact-map-section {
    margin-top: 3rem;
  }
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background: var(--navy);
  border: 1px solid rgba(3, 188, 208, 0.2);
}

@media (max-width: 1023px) {
  .contact-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .contact-map-wrapper {
    height: 720px;
  }
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Subtle desaturation so the map sits well in the page tone, but
       remains clearly recognizable as a map */
  filter: saturate(0.85) contrast(1.02);
}

/* Floating "Visit Our Office" address card */
.contact-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
  /* cyan accent */
}

@media (max-width: 639px) {
  .contact-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.contact-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  /* cyan */
  margin-bottom: 0.85rem;
}

.contact-map-card-tag svg {
  flex-shrink: 0;
  color: var(--amber);
}

.contact-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.contact-map-card-address {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.contact-map-card-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-map-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.18s ease;
}

.contact-map-card-phone svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-map-card-phone:hover {
  color: var(--amber);
}

.contact-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.contact-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.contact-map-card-cta svg {
  transition: transform 0.2s ease;
}

.contact-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin marker — decorative ring on the map indicating our location */
.contact-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: mapPinPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  /* Hide on mobile where the address card covers center */
  display: none;
}

@media (min-width: 768px) {
  .contact-map-wrapper::after {
    display: block;
    top: 50%;
    left: 65%;
  }
}

@keyframes mapPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7),
      0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0),
      0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0),
      0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}


/* ─────────── TESTIMONIALS ─────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
}

.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ─────────── AI FINDER ─────────── */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.ai-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 540px) {
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-features li .ti {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ai-chat {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.ai-chat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-title-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-title-icon .ti {
  font-size: 1.1rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.msg {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
}

.msg-bot {
  color: rgba(255, 255, 255, 0.9);
}

.msg-user {
  justify-content: flex-end;
}

.msg-bubble {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 85%;
  border-radius: 4px 4px 4px 0;
}

.msg-user .msg-bubble {
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px 4px 0 4px;
  font-weight: 500;
}

.ai-rec {
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 188, 208, 0.12);
  border-left: 3px solid var(--amber);
  font-size: 0.88rem;
  color: var(--white);
}

.ai-rec strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

/* ─────────── CONTACT / CTA ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .ti {
  font-size: 1.4rem;
}

.contact-card-text small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-top: 0.15rem;
}

.form-block {
  background: var(--white);
  padding: 2.5rem;
  border-top: 6px solid var(--amber);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.15);
}

.form-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.form-block>p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 540px) {
  .form-row.r2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: all 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-block .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─────────── BOTTOM FEATURE BAND ─────────── */
.bottom-band {
  background: var(--amber);
  color: var(--navy);
  padding: 0;
}

.bottom-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .bottom-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cell {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid rgba(7, 36, 46, 0.15);
}

.bb-cell:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .bb-cell {
    border-right: none;
    border-bottom: 1px solid rgba(7, 36, 46, 0.15);
  }

  .bb-cell:last-child {
    border-bottom: none;
  }
}

.bb-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.bb-icon .ti {
  font-size: 1.5rem;
}

.bb-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.bb-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo img {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-tag {
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
  transition: transform 0.15s;
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-list a:hover::before {
  transform: translateX(3px);
}

.footer-recent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-recent-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-img {
  width: 64px;
  height: 64px;
  background: var(--navy-2);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-recent-content small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-recent-content a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.15s;
}

.footer-recent-content a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(3, 188, 208, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-contact-icon .ti {
  font-size: 1rem;
}

.footer-contact small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.footer-contact strong,
.footer-contact a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .ti {
  font-size: 1.85rem;
}

/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}


/* ─────────── RESPONSIVE SAFETY NET (v3) ─────────── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

table {
  max-width: 100%;
}

.footer-recent-content a,
.ct-method-value,
.ct-office-row-value,
.plp-card-name,
.pdp-buybox-title {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Keep aspect-framed media filling their frames */
.pdp-slide img,
.plp-card-img-wrap img,
.ct-ceo-photo img,
.contact-map-frame,
.ct-map-frame,
.plp-popup-img img,
.pdp-popup-img img {
  max-width: none;
}


:root {
  --amber: #03BCD0;
  --amber-bright: #5DD9E8;
  --amber-dark: #027C89;
  --navy: #07242E;
  --navy-2: #0E3340;
  --navy-3: #15414f;
  --slate: #5A7682;
  --line: #D9E5E7;
  --line-2: #C7D6D9;
  --off-white: #E6F4F6;
  --cream: #F0F8F9;
  --white: #FFFFFF;
  --teal: #027C89;

  --font-display: 'Helvetica Neue', 'Arial Black', Arial, system-ui, sans-serif;
  --font-cond: 'Arial Narrow', 'Helvetica Neue Condensed', Impact, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Courier New', monospace;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1100px) {
  .container {
    padding: 0 3rem;
  }
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .ti {
  font-size: 1.1rem;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(3, 188, 208, 0.55);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.trust-strip {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .trust-strip {
    display: flex;
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-cell:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon .ti {
  font-size: 1.1rem;
}

.trust-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .topbar-right {
    justify-content: center;
  }
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-right a:hover {
  color: var(--amber);
}

.topbar-socials {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s;
}

.topbar-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ─────────── HEADER ─────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.logo img {
  height: 60px;
}

@media (min-width: 768px) {
  .logo img {
    height: 77px;
  }
}

.nav {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.15s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--amber-dark);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-phone-icon .ti {
  font-size: 1.3rem;
}

.header-phone-text {
  line-height: 1.1;
}

.header-phone-text small {
  font-size: 0.72rem;
  color: var(--slate);
  display: block;
}

.header-phone-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .ti {
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 720px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig1%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex1%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%281320%2C220%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig1%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 9s ease;
}

.hero-bg.zooming {
  transform: scale(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.95) 0%, rgba(7, 36, 46, 0.78) 45%, rgba(7, 36, 46, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 320px;
  height: 320px;
  border: 24px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  padding: 5rem 0 7rem;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(3, 188, 208, 0.15);
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.hero-callout-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  position: relative;
}

.hero-callout-icon .ti {
  font-size: 1.4rem;
}

.hero-callout-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(3, 188, 208, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-callout-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-callout-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}

/* hero side dots (slider feel) */
.hero-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-dots {
    display: flex;
  }
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.hero-dots span.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* ticker / marquee under hero */
.ticker {
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.ticker-item .ti {
  color: var(--navy);
}

.ticker-sep {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ─────────── FEATURE STRIP (3 floating cards) ─────────── */
.features-float {
  background: var(--off-white);
  padding: 0 0 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.18);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover .feature-content>* {
  color: var(--white);
}

.feature-card:hover .feature-icon {
  background: var(--amber);
  color: var(--navy);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-icon .ti {
  font-size: 1.7rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ─────────── SECTION CHROME ─────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-off {
  background: var(--off-white);
}

.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.eyebrow.eyebrow-light {
  color: var(--amber);
}

.eyebrow.eyebrow-light::before {
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.section-intro.intro-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--navy);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.section-watermark.wm-light {
  color: var(--white);
  opacity: 0.04;
}

/* ─────────── ABOUT ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.4);
}

@media (max-width: 540px) {
  .experience-badge {
    left: 0;
  }
}

.experience-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge .num sup {
  font-size: 0.5em;
  vertical-align: top;
}

.experience-badge .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  line-height: 1.1;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.about-feature:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon .ti {
  font-size: 1.4rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─────────── QUOTE STRIP (dark with phone CTA) ─────────── */
.quote-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.quote-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 500px;
  background: var(--amber);
  transform: skewX(-18deg) translateX(-50%);
  opacity: 0.95;
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .quote-strip::after {
    display: block;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1.4fr auto 1fr;
  }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-heading em {
  font-style: normal;
  color: var(--amber);
}

.quote-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.quote-play .ti {
  font-size: 2rem;
  margin-left: 4px;
}

.quote-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.quote-play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2.5s ease-in-out 0.5s infinite;
}

.quote-call {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .quote-call {
    text-align: center;
    align-items: center;
  }
}

.quote-call small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-call strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ─────────── CATEGORIES (image cards) ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.55;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  opacity: 0.7;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.2) 0%, rgba(7, 36, 46, 0.85) 70%, rgba(7, 36, 46, 0.95) 100%);
}

.cat-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.cat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.15em;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
}

.cat-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cat-arrow {
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-start;
}

.cat-arrow .ti {
  font-size: 1.2rem;
}

.cat-card:hover .cat-arrow {
  background: var(--white);
  transform: rotate(-45deg);
}

/* ─────────── PRODUCTS GRID ─────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -15px rgba(7, 36, 46, 0.18);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-cta {
  background: var(--amber);
  color: var(--navy);
}

.product-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--off-white);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-num-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.6rem 1.7rem 1.7rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  min-height: 3em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.product-cta .ti {
  font-size: 1rem;
}

/* ─────────── INDUSTRIES STRIP (Why customers come) ─────────── */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .industries-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile-bg {
  transform: scale(1.1);
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.1) 0%, rgba(7, 36, 46, 0.92) 100%);
  transition: background 0.3s;
}

.industry-tile:hover::before {
  background: linear-gradient(180deg, rgba(3, 188, 208, 0.4) 0%, rgba(7, 36, 46, 0.92) 100%);
}

.industry-tile-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  z-index: 2;
}

.industry-tile-label small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.industry-tile-label h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ─────────── WHY US / FAQ split ─────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.why-image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.7rem;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
  max-width: 280px;
}

.why-image-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.why-image-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
}

.acc-item {
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  background: var(--white);
  transition: all 0.2s;
}

.acc-item.open {
  border-color: var(--amber);
  box-shadow: 0 10px 30px -10px rgba(7, 36, 46, 0.1);
}

.acc-q {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.acc-q-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.acc-item.open .acc-q-icon {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-a {
  max-height: 320px;
}

.acc-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─────────── STATS COUNTER BAND ─────────── */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  position: relative;
}

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

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat {
    border-right: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--amber);
  margin-left: 0.05em;
  vertical-align: top;
}

.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
}


/* ─────────── CLIENTS LOGO WALL ─────────── */
.clients-section {
  background: var(--white);
}

.clients-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-wall {
    grid-template-columns: repeat(8, 1fr);
  }
}

.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all 0.25s ease;
  position: relative;
}

.client-cell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.client-cell:hover {
  background: var(--cream);
}

.client-cell:hover::after {
  transform: scaleX(1);
}

.client-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.65;
  transition: all 0.25s ease;
}

.client-cell:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}


.product-real-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(3, 188, 208, 0.3);
}

.product-img-wrap {
  background: #FFFFFF;
}

.product-img {
  object-fit: contain !important;
  padding: 1rem;
}


/* ─────────── INDUSTRIES (BENTO LAYOUT, v8) ─────────── */
.industries-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .industries-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
    gap: 1.4rem;
  }

  .ind-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
  isolation: isolate;
}

.ind-card-featured {
  aspect-ratio: auto;
  min-height: 460px;
}

@media (max-width: 1023px) {
  .ind-card-featured {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .ind-card {
    aspect-ratio: 4 / 3;
  }

  .ind-card-featured {
    aspect-ratio: 4 / 3;
  }
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.ind-card:hover .ind-bg {
  transform: scale(1.06);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0) 0%, rgba(7, 36, 46, 0.25) 35%, rgba(7, 36, 46, 0.85) 78%, rgba(7, 36, 46, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.05) 0%, rgba(7, 36, 46, 0.4) 35%, rgba(7, 36, 46, 0.92) 78%, rgba(7, 36, 46, 0.98) 100%);
}

.ind-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.ind-card-featured .ind-content {
  padding: 2.2rem;
}

.ind-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ind-card-featured .ind-num {
  font-size: 1.1rem;
}

.ind-bottom {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ind-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.ind-card-featured .ind-name {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .ind-card-featured .ind-name {
    font-size: 3rem;
  }
}

.ind-apps {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin-bottom: 0.9rem;
  /* Reveal on hover (or always visible on featured) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.ind-card:hover .ind-apps,
.ind-card-featured .ind-apps {
  max-height: 4.5em;
  opacity: 1;
  margin-bottom: 0.9rem;
}

.ind-card-featured .ind-apps {
  font-size: 0.9rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
}

.ind-card:hover .ind-cta {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.ind-cta svg {
  transition: transform 0.3s ease;
}

.ind-card:hover .ind-cta svg {
  transform: translateX(4px);
}

/* CTA card (12th bento cell) */
.ind-cta-card {
  aspect-ratio: 1 / 1;
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.ind-cta-card:hover {
  background: var(--amber-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
}

.ind-cta-card-inner {
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ind-cta-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.7;
}

.ind-cta-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ind-cta-card-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ind-cta-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ind-cta-card:hover .ind-cta-card-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .ind-cta-card {
    aspect-ratio: 4 / 3;
  }
}

/* Hide the legacy industries-strip (we replaced its container) */
.industries-strip {
  display: none !important;
}


/* ─────────── ABOUT v10 ─────────── */
.about-v10 {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-v10 {
    padding: 4.5rem 0;
  }
}

.about-v10-gear {
  position: absolute;
  top: 0;
  right: -120px;
  width: 700px;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .about-v10-gear {
    display: none;
  }
}

.about-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v10-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

/* IMAGE COLLAGE */
.about-v10-images {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-v10-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px -15px rgba(7, 36, 46, 0.35);
}

.about-v10-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-img-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(7, 36, 46, 0.3);
}

.about-v10-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-badge {
  position: absolute;
  top: 28%;
  right: 0;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
  border-radius: 4px;
  min-width: 140px;
}

.about-v10-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-v10-badge-num sup {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 1px;
}

.about-v10-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* CONTENT */
.about-v10-eyebrow {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  /* cyan */
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

.about-v10-eyebrow .brush {
  position: absolute;
  left: -10px;
  bottom: -8px;
  z-index: -1;
}

.about-v10-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-v10-title em {
  font-style: normal;
  color: var(--amber);
}

.about-v10-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.about-v10-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .about-v10-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.about-v10-feature {
  background: #F0F8F9;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.about-v10-feature:hover {
  background: #FFFFFF;
  box-shadow: 0 18px 40px -12px rgba(7, 36, 46, 0.18);
  transform: translateY(-3px);
}

.about-v10-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 22px -6px rgba(3, 188, 208, 0.45);
}

.about-v10-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.about-v10-feature p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
}

/* CTA pill button (matches reference's green pill but in our cyan) */
.about-v10-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 14px 30px -8px rgba(3, 188, 208, 0.45);
}

.about-v10-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -10px rgba(3, 188, 208, 0.55);
}

.about-v10-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-v10-cta>span:first-child {
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-v10-cta-icon {
  width: 56px;
  background: var(--navy);
  color: var(--amber);
  transition: background 0.2s ease;
}

.about-v10-cta:hover .about-v10-cta-icon {
  background: #03A0B0;
}

/* Hide the legacy about section */
.section.about,
.section.section-bg-off#about {
  display: none !important;
}


/* ─────────── WHY US v12 (editorial timeline) ─────────── */
.why-v12 {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .why-v12 {
    padding: 4.5rem 0 5rem;
  }
}

/* Background pattern */
.why-v12-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.why-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow-tl {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
}

.why-v12-glow-br {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.06) 0%, transparent 60%);
}

.why-v12 .container {
  position: relative;
  z-index: 2;
}

.why-v12-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-v12-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }
}

/* LEFT: sticky intro */
.why-v12-intro {
  position: relative;
}

@media (min-width: 1024px) {
  .why-v12-intro {
    position: sticky;
    top: 120px;
  }
}

.why-v12-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.why-v12-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.why-v12-eyebrow-light {
  color: var(--amber);
}

.why-v12-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.why-v12-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.why-v12-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.why-v12-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero stat card */
.why-v12-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 4px;
  max-width: 480px;
  overflow: hidden;
}

.why-v12-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.why-v12-stat-pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0);
    transform: scale(1.2);
  }
}

.why-v12-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-v12-stat-num span {
  font-size: 0.55em;
  margin-left: 1px;
}

.why-v12-stat-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-v12-stat-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-v12-stat-label span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* RIGHT: numbered timeline */
.why-v12-list {
  position: relative;
}

/* The vertical timeline rail */
.why-v12-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(3, 188, 208, 0.05) 0%,
      rgba(3, 188, 208, 0.4) 20%,
      rgba(3, 188, 208, 0.4) 80%,
      rgba(3, 188, 208, 0.05) 100%);
  z-index: 0;
}

@media (min-width: 540px) {
  .why-v12-list::before {
    left: 36px;
  }
}

.why-v12-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  transition: transform 0.3s ease;
}

@media (min-width: 540px) {
  .why-v12-item {
    grid-template-columns: 80px 1fr;
    gap: 1.6rem;
  }
}

.why-v12-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-v12-item:hover {
  transform: translateX(4px);
}

.why-v12-item:hover .why-v12-num {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.why-v12-item:hover .why-v12-num span {
  color: var(--navy);
}

.why-v12-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(3, 188, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  z-index: 1;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 540px) {
  .why-v12-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
}

.why-v12-num span {
  font-style: italic;
  transition: color 0.25s ease;
}

.why-v12-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

@media (min-width: 540px) {
  .why-v12-body h3 {
    font-size: 1.45rem;
  }
}

.why-v12-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.why-v12-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.why-v12-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-v12-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ block at the bottom */
.why-v12-faq-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .why-v12-faq-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.why-v12-faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-v12-faq-head {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.why-v12-faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.why-v12-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.why-v12-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .why-v12-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

.why-v12-faq-item {
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
  border-left: 3px solid rgba(3, 188, 208, 0.4);
}

.why-v12-faq-item:hover {
  background: rgba(3, 188, 208, 0.05);
  border-left-color: var(--amber);
  transform: translateY(-2px);
}

.why-v12-faq-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.why-v12-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide the legacy why-us section */
.section.section-bg-cream#why-us:not(.why-v12) {
  display: none !important;
}



/* Real product photos in footer — center-crop them */
.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* ─────────── CONTACT MAP BLOCK (v14) ─────────── */
/* Section keeps its navy background (form contrast) */
.contact-v13 {
  position: relative;
  isolation: isolate;
}

/* The new visible map block sits inside the container, after the form row */
.contact-map-section {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .contact-map-section {
    margin-top: 3rem;
  }
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background: var(--navy);
  border: 1px solid rgba(3, 188, 208, 0.2);
}

@media (max-width: 1023px) {
  .contact-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .contact-map-wrapper {
    height: 720px;
  }
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Subtle desaturation so the map sits well in the page tone, but
       remains clearly recognizable as a map */
  filter: saturate(0.85) contrast(1.02);
}

/* Floating "Visit Our Office" address card */
.contact-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
  /* cyan accent */
}

@media (max-width: 639px) {
  .contact-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.contact-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  /* cyan */
  margin-bottom: 0.85rem;
}

.contact-map-card-tag svg {
  flex-shrink: 0;
  color: var(--amber);
}

.contact-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.contact-map-card-address {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.contact-map-card-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-map-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.18s ease;
}

.contact-map-card-phone svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-map-card-phone:hover {
  color: var(--amber);
}

.contact-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.contact-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.contact-map-card-cta svg {
  transition: transform 0.2s ease;
}

.contact-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin marker — decorative ring on the map indicating our location */
.contact-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: mapPinPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  /* Hide on mobile where the address card covers center */
  display: none;
}

@media (min-width: 768px) {
  .contact-map-wrapper::after {
    display: block;
    top: 50%;
    left: 65%;
  }
}

@keyframes mapPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7),
      0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0),
      0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0),
      0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}


/* ─────────── TESTIMONIALS ─────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
}

.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ─────────── AI FINDER ─────────── */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.ai-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 540px) {
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-features li .ti {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ai-chat {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.ai-chat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-title-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-title-icon .ti {
  font-size: 1.1rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.msg {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
}

.msg-bot {
  color: rgba(255, 255, 255, 0.9);
}

.msg-user {
  justify-content: flex-end;
}

.msg-bubble {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 85%;
  border-radius: 4px 4px 4px 0;
}

.msg-user .msg-bubble {
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px 4px 0 4px;
  font-weight: 500;
}

.ai-rec {
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 188, 208, 0.12);
  border-left: 3px solid var(--amber);
  font-size: 0.88rem;
  color: var(--white);
}

.ai-rec strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

/* ─────────── CONTACT / CTA ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .ti {
  font-size: 1.4rem;
}

.contact-card-text small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-top: 0.15rem;
}

.form-block {
  background: var(--white);
  padding: 2.5rem;
  border-top: 6px solid var(--amber);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.15);
}

.form-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.form-block>p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 540px) {
  .form-row.r2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: all 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-block .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─────────── BOTTOM FEATURE BAND ─────────── */
.bottom-band {
  background: var(--amber);
  color: var(--navy);
  padding: 0;
}

.bottom-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .bottom-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cell {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid rgba(7, 36, 46, 0.15);
}

.bb-cell:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .bb-cell {
    border-right: none;
    border-bottom: 1px solid rgba(7, 36, 46, 0.15);
  }

  .bb-cell:last-child {
    border-bottom: none;
  }
}

.bb-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.bb-icon .ti {
  font-size: 1.5rem;
}

.bb-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.bb-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo img {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-tag {
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
  transition: transform 0.15s;
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-list a:hover::before {
  transform: translateX(3px);
}

.footer-recent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-recent-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-img {
  width: 64px;
  height: 64px;
  background: var(--navy-2);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-recent-content small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-recent-content a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.15s;
}

.footer-recent-content a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(3, 188, 208, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-contact-icon .ti {
  font-size: 1rem;
}

.footer-contact small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.footer-contact strong,
.footer-contact a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .ti {
  font-size: 1.85rem;
}

/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════
     CONTACT PAGE (v1)
     ═══════════════════════════════════════════════════════════ */

/* ─────────── HERO ─────────── */
.ct-hero {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .ct-hero {
    padding: 3.5rem 0 3rem;
  }
}

.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.ct-hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.ct-hero .container {
  position: relative;
  z-index: 2;
}

.ct-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ct-hero-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
  }
}

.ct-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
}

.ct-hero-breadcrumb a {
  color: var(--amber);
}

.ct-hero-breadcrumb a:hover {
  opacity: 0.75;
}

.ct-hero-breadcrumb .sep {
  opacity: 0.4;
}

.ct-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.ct-hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.ct-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.ct-hero-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.ct-hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 8px;
  background: var(--amber);
  opacity: 0.18;
  z-index: -1;
}

.ct-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 580px;
}

.ct-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 580px;
}

@media (max-width: 539px) {
  .ct-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

.ct-hero-stat {
  background: rgba(3, 188, 208, 0.06);
  border-left: 3px solid var(--amber);
  padding: 0.9rem 1rem 1rem;
}

.ct-hero-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.ct-hero-stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
}

/* Hero illustration — phone/chat icon stack */
.ct-hero-illu {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin-left: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .ct-hero-illu {
    display: none;
  }
}

.ct-hero-illu-circle {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(3, 188, 208, 0.25);
  border-radius: 50%;
  animation: ctRotate 60s linear infinite;
}

.ct-hero-illu-circle::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(3, 188, 208, 0.55);
}

@keyframes ctRotate {
  to {
    transform: rotate(360deg);
  }
}

.ct-hero-illu-inner {
  position: relative;
  width: 70%;
  aspect-ratio: 1 / 1;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ct-hero-illu-inner svg {
  width: 50%;
  height: 50%;
  color: var(--amber);
}

.ct-hero-illu-tag {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.ct-hero-illu-tag svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
}

.ct-hero-illu-tag-1 {
  top: 8%;
  left: -8%;
}

.ct-hero-illu-tag-2 {
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
}

.ct-hero-illu-tag-3 {
  bottom: 8%;
  left: 0;
}

/* ─────────── REACH METHODS — 4 CARDS ─────────── */
.ct-methods {
  background: var(--cream);
  padding: 5rem 0;
}

@media (max-width: 1023px) {
  .ct-methods {
    padding: 3.5rem 0;
  }
}

.ct-methods-head {
  text-align: center;
  margin-bottom: 3rem;
}

.ct-methods-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  justify-content: center;
}

.ct-methods-eyebrow::before,
.ct-methods-eyebrow::after {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.ct-methods-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.ct-methods-title em {
  font-style: italic;
  color: var(--amber);
}

.ct-methods-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto;
}

.ct-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .ct-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .ct-methods-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }
}

.ct-method-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.6rem 1.8rem;
  text-decoration: none;
  color: var(--navy);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ct-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ct-method-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -16px rgba(3, 188, 208, 0.25);
}

.ct-method-card:hover::before {
  transform: scaleX(1);
}

.ct-method-icon {
  width: 56px;
  height: 56px;
  background: rgba(3, 188, 208, 0.1);
  color: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: all 0.25s ease;
}

.ct-method-card:hover .ct-method-icon {
  background: var(--amber);
  color: var(--navy);
  transform: scale(1.06);
}

.ct-method-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.ct-method-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.ct-method-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  word-break: break-word;
}

.ct-method-sub {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--slate);
  margin-bottom: 1.2rem;
  flex: 1;
}

.ct-method-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: auto;
}

.ct-method-cta svg {
  transition: transform 0.18s ease;
}

.ct-method-card:hover .ct-method-cta svg {
  transform: translateX(4px);
}

/* ─────────── CEO MESSAGE ─────────── */
.ct-ceo {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .ct-ceo {
    padding: 4rem 0;
  }
}

.ct-ceo::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ct-ceo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ct-ceo-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4.5rem;
  }
}

/* CEO photo column */
.ct-ceo-photo-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.ct-ceo-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.3);
  position: relative;
}

.ct-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cyan corner accents */
.ct-ceo-photo::before,
.ct-ceo-photo::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid var(--amber);
  z-index: 3;
  pointer-events: none;
}

.ct-ceo-photo::before {
  top: -12px;
  left: -12px;
  border-right: none;
  border-bottom: none;
}

.ct-ceo-photo::after {
  bottom: -12px;
  right: -12px;
  border-left: none;
  border-top: none;
}

/* Floating signature/credibility tag */
.ct-ceo-tag {
  position: absolute;
  bottom: -20px;
  left: 1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  box-shadow: 0 16px 32px -10px rgba(3, 188, 208, 0.55);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ct-ceo-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-ceo-tag-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.ct-ceo-tag-text small {
  display: block;
  font-weight: 600;
  font-size: 0.62rem;
  color: rgba(7, 36, 46, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

/* CEO content column */
.ct-ceo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.ct-ceo-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.ct-ceo-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.ct-ceo-title em {
  font-style: italic;
  color: var(--amber);
}

.ct-ceo-quote {
  position: relative;
  padding: 0 0 0 2.5rem;
  margin-bottom: 2rem;
}

.ct-ceo-quote::before {
  content: '\201C';
  position: absolute;
  left: -0.2rem;
  top: -1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 7rem;
  color: var(--amber);
  line-height: 1;
  opacity: 0.5;
}

.ct-ceo-quote p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.ct-ceo-quote p:last-child {
  margin-bottom: 0;
}

.ct-ceo-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.ct-ceo-byline-line {
  width: 36px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.ct-ceo-byline-text {
  flex: 1;
}

.ct-ceo-byline-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.ct-ceo-byline-title {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.2rem;
}

/* ─────────── FORM + OFFICE PANEL ─────────── */
.ct-form-section {
  background: var(--cream);
  padding: 5rem 0;
}

@media (max-width: 1023px) {
  .ct-form-section {
    padding: 3.5rem 0;
  }
}

.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .ct-form-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
  }
}

/* Form panel */
.ct-form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.4rem 2.4rem 2.6rem;
  border-top: 4px solid var(--amber);
  box-shadow: 0 22px 50px -20px rgba(7, 36, 46, 0.18);
}

@media (max-width: 540px) {
  .ct-form-card {
    padding: 1.8rem 1.5rem 2rem;
  }
}

.ct-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
}

.ct-form-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.5);
  animation: ctPulse 2s ease-in-out infinite;
}

@keyframes ctPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(3, 188, 208, 0);
  }
}

.ct-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ct-form-title em {
  font-style: italic;
  color: var(--amber);
}

.ct-form-lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 2rem;
  max-width: 540px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

@media (min-width: 640px) {
  .ct-form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.ct-form-field {
  display: flex;
  flex-direction: column;
}

.ct-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.ct-form-required {
  color: var(--amber);
  font-weight: 900;
}

.ct-form-optional {
  color: var(--slate);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.3rem;
}

.ct-form-input,
.ct-form-select,
.ct-form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  transition: all 0.18s ease;
}

.ct-form-input:focus,
.ct-form-select:focus,
.ct-form-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--amber);
}

.ct-form-input::placeholder,
.ct-form-textarea::placeholder {
  color: var(--slate);
  opacity: 0.85;
}

.ct-form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

/* Custom select styling */
.ct-form-select-wrap {
  position: relative;
}

.ct-form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}

.ct-form-select-icon {
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  pointer-events: none;
}

.ct-form-hint {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.ct-form-error {
  font-size: 0.78rem;
  color: #D04545;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  display: none;
}

.ct-form-error.visible {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ct-form-error.visible::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat center / contain;
}

.ct-form-field.has-error input,
.ct-form-field.has-error textarea,
.ct-form-field.has-error select {
  border-color: #D04545 !important;
}

.ct-form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.ct-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.45);
}

.ct-form-submit:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(3, 188, 208, 0.55);
}

.ct-form-submit svg {
  transition: transform 0.18s ease;
}

.ct-form-submit:hover svg {
  transform: translateX(3px);
}

.ct-form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.45;
}

.ct-form-trust svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Office detail panel */
.ct-office-panel {
  position: sticky;
  top: 100px;
}

@media (max-width: 1023px) {
  .ct-office-panel {
    position: static;
  }
}

.ct-office-card {
  background: var(--navy);
  color: #FFFFFF;
  padding: 2rem 2rem 2.2rem;
  border-radius: 4px;
  border-top: 4px solid var(--amber);
  box-shadow: 0 22px 50px -20px rgba(0, 0, 0, 0.4);
}

.ct-office-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.ct-office-eyebrow svg {
  width: 14px;
  height: 14px;
}

.ct-office-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ct-office-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-office-row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-office-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-office-row-icon svg {
  width: 15px;
  height: 15px;
}

.ct-office-row-text {
  flex: 1;
  min-width: 0;
}

.ct-office-row-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.25rem;
}

.ct-office-row-value {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #FFFFFF;
  word-break: break-word;
}

.ct-office-row-value a {
  color: #FFFFFF;
  transition: color 0.18s ease;
}

.ct-office-row-value a:hover {
  color: var(--amber);
}

.ct-office-hours {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.2rem 0;
}

.ct-office-hours strong {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ct-office-hours-row {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
}

.ct-office-hours-row:not(:last-child) {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Quick-action buttons in office panel */
.ct-office-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-office-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.8rem;
  background: rgba(3, 188, 208, 0.06);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 3px;
  transition: all 0.18s ease;
}

.ct-office-quick-btn:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  transform: translateY(-2px);
}

.ct-office-quick-btn svg {
  width: 14px;
  height: 14px;
}

/* ─────────── MAP BLOCK ─────────── */
.ct-map-section {
  background: var(--white);
  padding: 0 0 5rem;
}

@media (max-width: 1023px) {
  .ct-map-section {
    padding: 0 0 3rem;
  }
}

.ct-map-head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 5rem;
}

@media (max-width: 1023px) {
  .ct-map-head {
    padding-top: 3rem;
    margin-bottom: 2rem;
  }
}

.ct-map-head .ct-methods-eyebrow {
  margin-bottom: 0.8rem;
}

.ct-map-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.ct-map-head h2 em {
  font-style: italic;
  color: var(--amber);
}

.ct-map-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
  background: var(--navy);
  border: 1px solid var(--line);
}

@media (max-width: 1023px) {
  .ct-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .ct-map-wrapper {
    height: 720px;
  }
}

.ct-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.02);
}

.ct-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
}

@media (max-width: 639px) {
  .ct-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.ct-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.ct-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.ct-map-card-address {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.ct-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.ct-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.ct-map-card-cta svg {
  transition: transform 0.18s ease;
}

.ct-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin */
.ct-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 65%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: ctMapPin 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .ct-map-wrapper::after {
    display: block;
  }
}

@keyframes ctMapPin {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7), 0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0), 0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0), 0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}

/* ─────────── FAQ ─────────── */
.ct-faq {
  background: var(--cream);
  padding: 5rem 0;
}

@media (max-width: 1023px) {
  .ct-faq {
    padding: 3.5rem 0;
  }
}

.ct-faq-head {
  text-align: center;
  margin-bottom: 3rem;
}

.ct-faq-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.ct-faq-head h2 em {
  font-style: italic;
  color: var(--amber);
}

.ct-faq-head p {
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.ct-faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.ct-faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ct-faq-item:hover {
  border-color: var(--line-2);
}

.ct-faq-item.open {
  border-color: var(--amber);
  box-shadow: 0 16px 32px -16px rgba(3, 188, 208, 0.2);
}

.ct-faq-trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: transparent;
  padding: 1.3rem 1.5rem;
  text-align: left;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.2s ease;
}

.ct-faq-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(3, 188, 208, 0.1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  font-style: italic;
  transition: all 0.2s ease;
}

.ct-faq-item.open .ct-faq-num {
  background: var(--amber);
  color: var(--navy);
}

.ct-faq-q {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

@media (max-width: 540px) {
  .ct-faq-q {
    font-size: 0.92rem;
  }
}

.ct-faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.ct-faq-item.open .ct-faq-toggle {
  background: var(--navy);
  color: var(--amber);
  transform: rotate(45deg);
}

.ct-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.ct-faq-body-inner {
  padding: 0 1.5rem 1.4rem 4.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate);
}

@media (max-width: 540px) {
  .ct-faq-body-inner {
    padding: 0 1.5rem 1.4rem 1.5rem;
  }
}

/* ─────────── CTA BAND ─────────── */
.ct-cta-band {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.ct-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
}

.ct-cta-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ct-cta-band-grid {
    grid-template-columns: 1.4fr auto;
    gap: 3rem;
  }
}

.ct-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.ct-cta-band h2 em {
  font-style: italic;
  color: var(--amber);
}

.ct-cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.ct-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ct-cta-band .ct-btn {
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.18s ease;
}

.ct-cta-band .ct-btn-primary {
  background: var(--amber);
  color: var(--navy);
}

.ct-cta-band .ct-btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
}

.ct-cta-band .ct-btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.ct-cta-band .ct-btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ─────────── TOAST ─────────── */
.ct-toast {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 200;
  background: var(--navy);
  color: #FFFFFF;
  padding: 0.9rem 1.2rem;
  border-radius: 3px;
  border-left: 4px solid var(--amber);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.4);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 360px;
}

.ct-toast.visible {
  transform: translateX(0);
}

.ct-toast-icon {
  color: var(--amber);
  flex-shrink: 0;
}




:root {
  --amber: #03BCD0;
  --amber-bright: #5DD9E8;
  --amber-dark: #027C89;
  --navy: #07242E;
  --navy-2: #0E3340;
  --navy-3: #15414f;
  --slate: #5A7682;
  --line: #D9E5E7;
  --line-2: #C7D6D9;
  --off-white: #E6F4F6;
  --cream: #F0F8F9;
  --white: #FFFFFF;
  --teal: #027C89;

  --font-display: 'Helvetica Neue', 'Arial Black', Arial, system-ui, sans-serif;
  --font-cond: 'Arial Narrow', 'Helvetica Neue Condensed', Impact, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Courier New', monospace;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1100px) {
  .container {
    padding: 0 3rem;
  }
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .ti {
  font-size: 1.1rem;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(3, 188, 208, 0.55);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.trust-strip {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .trust-strip {
    display: flex;
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-cell:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon .ti {
  font-size: 1.1rem;
}

.trust-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .topbar-right {
    justify-content: center;
  }
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-right a:hover {
  color: var(--amber);
}

.topbar-socials {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s;
}

.topbar-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ─────────── HEADER ─────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.logo img {
  height: 60px;
}

@media (min-width: 768px) {
  .logo img {
    height: 77px;
  }
}

.nav {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.15s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--amber-dark);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-phone-icon .ti {
  font-size: 1.3rem;
}

.header-phone-text {
  line-height: 1.1;
}

.header-phone-text small {
  font-size: 0.72rem;
  color: var(--slate);
  display: block;
}

.header-phone-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .ti {
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 720px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig1%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex1%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%281320%2C220%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig1%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 9s ease;
}

.hero-bg.zooming {
  transform: scale(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.95) 0%, rgba(7, 36, 46, 0.78) 45%, rgba(7, 36, 46, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 320px;
  height: 320px;
  border: 24px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  padding: 5rem 0 7rem;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(3, 188, 208, 0.15);
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.hero-callout-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  position: relative;
}

.hero-callout-icon .ti {
  font-size: 1.4rem;
}

.hero-callout-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(3, 188, 208, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-callout-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-callout-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}

/* hero side dots (slider feel) */
.hero-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-dots {
    display: flex;
  }
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.hero-dots span.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* ticker / marquee under hero */
.ticker {
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.ticker-item .ti {
  color: var(--navy);
}

.ticker-sep {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ─────────── FEATURE STRIP (3 floating cards) ─────────── */
.features-float {
  background: var(--off-white);
  padding: 0 0 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.18);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover .feature-content>* {
  color: var(--white);
}

.feature-card:hover .feature-icon {
  background: var(--amber);
  color: var(--navy);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-icon .ti {
  font-size: 1.7rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ─────────── SECTION CHROME ─────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-off {
  background: var(--off-white);
}

.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.eyebrow.eyebrow-light {
  color: var(--amber);
}

.eyebrow.eyebrow-light::before {
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.section-intro.intro-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--navy);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.section-watermark.wm-light {
  color: var(--white);
  opacity: 0.04;
}

/* ─────────── ABOUT ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.4);
}

@media (max-width: 540px) {
  .experience-badge {
    left: 0;
  }
}

.experience-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge .num sup {
  font-size: 0.5em;
  vertical-align: top;
}

.experience-badge .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  line-height: 1.1;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.about-feature:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon .ti {
  font-size: 1.4rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─────────── QUOTE STRIP (dark with phone CTA) ─────────── */
.quote-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.quote-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 500px;
  background: var(--amber);
  transform: skewX(-18deg) translateX(-50%);
  opacity: 0.95;
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .quote-strip::after {
    display: block;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1.4fr auto 1fr;
  }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-heading em {
  font-style: normal;
  color: var(--amber);
}

.quote-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.quote-play .ti {
  font-size: 2rem;
  margin-left: 4px;
}

.quote-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.quote-play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2.5s ease-in-out 0.5s infinite;
}

.quote-call {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .quote-call {
    text-align: center;
    align-items: center;
  }
}

.quote-call small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-call strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ─────────── CATEGORIES (image cards) ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.55;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  opacity: 0.7;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.2) 0%, rgba(7, 36, 46, 0.85) 70%, rgba(7, 36, 46, 0.95) 100%);
}

.cat-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.cat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.15em;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
}

.cat-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cat-arrow {
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-start;
}

.cat-arrow .ti {
  font-size: 1.2rem;
}

.cat-card:hover .cat-arrow {
  background: var(--white);
  transform: rotate(-45deg);
}

/* ─────────── PRODUCTS GRID ─────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -15px rgba(7, 36, 46, 0.18);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-cta {
  background: var(--amber);
  color: var(--navy);
}

.product-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--off-white);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-num-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.6rem 1.7rem 1.7rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  min-height: 3em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.product-cta .ti {
  font-size: 1rem;
}

/* ─────────── INDUSTRIES STRIP (Why customers come) ─────────── */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .industries-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile-bg {
  transform: scale(1.1);
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.1) 0%, rgba(7, 36, 46, 0.92) 100%);
  transition: background 0.3s;
}

.industry-tile:hover::before {
  background: linear-gradient(180deg, rgba(3, 188, 208, 0.4) 0%, rgba(7, 36, 46, 0.92) 100%);
}

.industry-tile-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  z-index: 2;
}

.industry-tile-label small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.industry-tile-label h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ─────────── WHY US / FAQ split ─────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.why-image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.7rem;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
  max-width: 280px;
}

.why-image-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.why-image-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
}

.acc-item {
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  background: var(--white);
  transition: all 0.2s;
}

.acc-item.open {
  border-color: var(--amber);
  box-shadow: 0 10px 30px -10px rgba(7, 36, 46, 0.1);
}

.acc-q {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.acc-q-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.acc-item.open .acc-q-icon {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-a {
  max-height: 320px;
}

.acc-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─────────── STATS COUNTER BAND ─────────── */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  position: relative;
}

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

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat {
    border-right: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--amber);
  margin-left: 0.05em;
  vertical-align: top;
}

.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
}


/* ─────────── CLIENTS LOGO WALL ─────────── */
.clients-section {
  background: var(--white);
}

.clients-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-wall {
    grid-template-columns: repeat(8, 1fr);
  }
}

.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all 0.25s ease;
  position: relative;
}

.client-cell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.client-cell:hover {
  background: var(--cream);
}

.client-cell:hover::after {
  transform: scaleX(1);
}

.client-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.65;
  transition: all 0.25s ease;
}

.client-cell:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}


.product-real-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(3, 188, 208, 0.3);
}

.product-img-wrap {
  background: #FFFFFF;
}

.product-img {
  object-fit: contain !important;
  padding: 1rem;
}


/* ─────────── INDUSTRIES (BENTO LAYOUT, v8) ─────────── */
.industries-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .industries-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
    gap: 1.4rem;
  }

  .ind-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
  isolation: isolate;
}

.ind-card-featured {
  aspect-ratio: auto;
  min-height: 460px;
}

@media (max-width: 1023px) {
  .ind-card-featured {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .ind-card {
    aspect-ratio: 4 / 3;
  }

  .ind-card-featured {
    aspect-ratio: 4 / 3;
  }
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.ind-card:hover .ind-bg {
  transform: scale(1.06);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0) 0%, rgba(7, 36, 46, 0.25) 35%, rgba(7, 36, 46, 0.85) 78%, rgba(7, 36, 46, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.05) 0%, rgba(7, 36, 46, 0.4) 35%, rgba(7, 36, 46, 0.92) 78%, rgba(7, 36, 46, 0.98) 100%);
}

.ind-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.ind-card-featured .ind-content {
  padding: 2.2rem;
}

.ind-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ind-card-featured .ind-num {
  font-size: 1.1rem;
}

.ind-bottom {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ind-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.ind-card-featured .ind-name {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .ind-card-featured .ind-name {
    font-size: 3rem;
  }
}

.ind-apps {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin-bottom: 0.9rem;
  /* Reveal on hover (or always visible on featured) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.ind-card:hover .ind-apps,
.ind-card-featured .ind-apps {
  max-height: 4.5em;
  opacity: 1;
  margin-bottom: 0.9rem;
}

.ind-card-featured .ind-apps {
  font-size: 0.9rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
}

.ind-card:hover .ind-cta {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.ind-cta svg {
  transition: transform 0.3s ease;
}

.ind-card:hover .ind-cta svg {
  transform: translateX(4px);
}

/* CTA card (12th bento cell) */
.ind-cta-card {
  aspect-ratio: 1 / 1;
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.ind-cta-card:hover {
  background: var(--amber-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
}

.ind-cta-card-inner {
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ind-cta-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.7;
}

.ind-cta-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ind-cta-card-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ind-cta-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ind-cta-card:hover .ind-cta-card-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .ind-cta-card {
    aspect-ratio: 4 / 3;
  }
}

/* Hide the legacy industries-strip (we replaced its container) */
.industries-strip {
  display: none !important;
}


/* ─────────── ABOUT v10 ─────────── */
.about-v10 {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-v10 {
    padding: 4.5rem 0;
  }
}

.about-v10-gear {
  position: absolute;
  top: 0;
  right: -120px;
  width: 700px;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .about-v10-gear {
    display: none;
  }
}

.about-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v10-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

/* IMAGE COLLAGE */
.about-v10-images {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-v10-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px -15px rgba(7, 36, 46, 0.35);
}

.about-v10-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-img-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(7, 36, 46, 0.3);
}

.about-v10-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-badge {
  position: absolute;
  top: 28%;
  right: 0;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
  border-radius: 4px;
  min-width: 140px;
}

.about-v10-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-v10-badge-num sup {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 1px;
}

.about-v10-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* CONTENT */
.about-v10-eyebrow {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  /* cyan */
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

.about-v10-eyebrow .brush {
  position: absolute;
  left: -10px;
  bottom: -8px;
  z-index: -1;
}

.about-v10-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-v10-title em {
  font-style: normal;
  color: var(--amber);
}

.about-v10-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.about-v10-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .about-v10-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.about-v10-feature {
  background: #F0F8F9;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.about-v10-feature:hover {
  background: #FFFFFF;
  box-shadow: 0 18px 40px -12px rgba(7, 36, 46, 0.18);
  transform: translateY(-3px);
}

.about-v10-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 22px -6px rgba(3, 188, 208, 0.45);
}

.about-v10-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.about-v10-feature p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
}

/* CTA pill button (matches reference's green pill but in our cyan) */
.about-v10-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 14px 30px -8px rgba(3, 188, 208, 0.45);
}

.about-v10-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -10px rgba(3, 188, 208, 0.55);
}

.about-v10-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-v10-cta>span:first-child {
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-v10-cta-icon {
  width: 56px;
  background: var(--navy);
  color: var(--amber);
  transition: background 0.2s ease;
}

.about-v10-cta:hover .about-v10-cta-icon {
  background: #03A0B0;
}

/* Hide the legacy about section */
.section.about,
.section.section-bg-off#about {
  display: none !important;
}


/* ─────────── WHY US v12 (editorial timeline) ─────────── */
.why-v12 {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .why-v12 {
    padding: 4.5rem 0 5rem;
  }
}

/* Background pattern */
.why-v12-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.why-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow-tl {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
}

.why-v12-glow-br {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.06) 0%, transparent 60%);
}

.why-v12 .container {
  position: relative;
  z-index: 2;
}

.why-v12-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-v12-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }
}

/* LEFT: sticky intro */
.why-v12-intro {
  position: relative;
}

@media (min-width: 1024px) {
  .why-v12-intro {
    position: sticky;
    top: 120px;
  }
}

.why-v12-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.why-v12-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.why-v12-eyebrow-light {
  color: var(--amber);
}

.why-v12-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.why-v12-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.why-v12-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.why-v12-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero stat card */
.why-v12-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 4px;
  max-width: 480px;
  overflow: hidden;
}

.why-v12-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.why-v12-stat-pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0);
    transform: scale(1.2);
  }
}

.why-v12-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-v12-stat-num span {
  font-size: 0.55em;
  margin-left: 1px;
}

.why-v12-stat-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-v12-stat-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-v12-stat-label span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* RIGHT: numbered timeline */
.why-v12-list {
  position: relative;
}

/* The vertical timeline rail */
.why-v12-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(3, 188, 208, 0.05) 0%,
      rgba(3, 188, 208, 0.4) 20%,
      rgba(3, 188, 208, 0.4) 80%,
      rgba(3, 188, 208, 0.05) 100%);
  z-index: 0;
}

@media (min-width: 540px) {
  .why-v12-list::before {
    left: 36px;
  }
}

.why-v12-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  transition: transform 0.3s ease;
}

@media (min-width: 540px) {
  .why-v12-item {
    grid-template-columns: 80px 1fr;
    gap: 1.6rem;
  }
}

.why-v12-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-v12-item:hover {
  transform: translateX(4px);
}

.why-v12-item:hover .why-v12-num {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.why-v12-item:hover .why-v12-num span {
  color: var(--navy);
}

.why-v12-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(3, 188, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  z-index: 1;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 540px) {
  .why-v12-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
}

.why-v12-num span {
  font-style: italic;
  transition: color 0.25s ease;
}

.why-v12-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

@media (min-width: 540px) {
  .why-v12-body h3 {
    font-size: 1.45rem;
  }
}

.why-v12-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.why-v12-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.why-v12-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-v12-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ block at the bottom */
.why-v12-faq-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .why-v12-faq-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.why-v12-faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-v12-faq-head {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.why-v12-faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.why-v12-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.why-v12-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .why-v12-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

.why-v12-faq-item {
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
  border-left: 3px solid rgba(3, 188, 208, 0.4);
}

.why-v12-faq-item:hover {
  background: rgba(3, 188, 208, 0.05);
  border-left-color: var(--amber);
  transform: translateY(-2px);
}

.why-v12-faq-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.why-v12-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide the legacy why-us section */
.section.section-bg-cream#why-us:not(.why-v12) {
  display: none !important;
}



/* Real product photos in footer — center-crop them */
.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* ─────────── CONTACT MAP BLOCK (v14) ─────────── */
/* Section keeps its navy background (form contrast) */
.contact-v13 {
  position: relative;
  isolation: isolate;
}

/* The new visible map block sits inside the container, after the form row */
.contact-map-section {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .contact-map-section {
    margin-top: 3rem;
  }
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background: var(--navy);
  border: 1px solid rgba(3, 188, 208, 0.2);
}

@media (max-width: 1023px) {
  .contact-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .contact-map-wrapper {
    height: 720px;
  }
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Subtle desaturation so the map sits well in the page tone, but
       remains clearly recognizable as a map */
  filter: saturate(0.85) contrast(1.02);
}

/* Floating "Visit Our Office" address card */
.contact-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
  /* cyan accent */
}

@media (max-width: 639px) {
  .contact-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.contact-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  /* cyan */
  margin-bottom: 0.85rem;
}

.contact-map-card-tag svg {
  flex-shrink: 0;
  color: var(--amber);
}

.contact-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.contact-map-card-address {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.contact-map-card-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-map-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.18s ease;
}

.contact-map-card-phone svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-map-card-phone:hover {
  color: var(--amber);
}

.contact-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.contact-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.contact-map-card-cta svg {
  transition: transform 0.2s ease;
}

.contact-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin marker — decorative ring on the map indicating our location */
.contact-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: mapPinPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  /* Hide on mobile where the address card covers center */
  display: none;
}

@media (min-width: 768px) {
  .contact-map-wrapper::after {
    display: block;
    top: 50%;
    left: 65%;
  }
}

@keyframes mapPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7),
      0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0),
      0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0),
      0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}


/* ─────────── TESTIMONIALS ─────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
}

.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ─────────── AI FINDER ─────────── */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.ai-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 540px) {
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-features li .ti {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ai-chat {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.ai-chat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-title-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-title-icon .ti {
  font-size: 1.1rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.msg {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
}

.msg-bot {
  color: rgba(255, 255, 255, 0.9);
}

.msg-user {
  justify-content: flex-end;
}

.msg-bubble {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 85%;
  border-radius: 4px 4px 4px 0;
}

.msg-user .msg-bubble {
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px 4px 0 4px;
  font-weight: 500;
}

.ai-rec {
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 188, 208, 0.12);
  border-left: 3px solid var(--amber);
  font-size: 0.88rem;
  color: var(--white);
}

.ai-rec strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

/* ─────────── CONTACT / CTA ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .ti {
  font-size: 1.4rem;
}

.contact-card-text small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-top: 0.15rem;
}

.form-block {
  background: var(--white);
  padding: 2.5rem;
  border-top: 6px solid var(--amber);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.15);
}

.form-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.form-block>p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 540px) {
  .form-row.r2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: all 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-block .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─────────── BOTTOM FEATURE BAND ─────────── */
.bottom-band {
  background: var(--amber);
  color: var(--navy);
  padding: 0;
}

.bottom-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .bottom-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cell {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid rgba(7, 36, 46, 0.15);
}

.bb-cell:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .bb-cell {
    border-right: none;
    border-bottom: 1px solid rgba(7, 36, 46, 0.15);
  }

  .bb-cell:last-child {
    border-bottom: none;
  }
}

.bb-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.bb-icon .ti {
  font-size: 1.5rem;
}

.bb-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.bb-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo img {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-tag {
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
  transition: transform 0.15s;
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-list a:hover::before {
  transform: translateX(3px);
}

.footer-recent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-recent-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-img {
  width: 64px;
  height: 64px;
  background: var(--navy-2);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-recent-content small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-recent-content a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.15s;
}

.footer-recent-content a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(3, 188, 208, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-contact-icon .ti {
  font-size: 1rem;
}

.footer-contact small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.footer-contact strong,
.footer-contact a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .ti {
  font-size: 1.85rem;
}

/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════
     ADD-TO-QUOTE POPUP (v2)
     ═══════════════════════════════════════════════════════════ */
.plp-popup {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.plp-popup[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .plp-popup {
    padding: 0;
    align-items: flex-end;
  }
}

.plp-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 36, 46, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: plpPopupFade 0.25s ease forwards;
}

@keyframes plpPopupFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.plp-popup-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 6px;
  width: 100%;
  max-width: 920px;
  max-height: calc(100vh - 3rem);
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.55);
  border-top: 4px solid var(--amber);
  animation: plpPopupSlide 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes plpPopupSlide {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .plp-popup-card {
    max-height: 92vh;
    border-radius: 6px 6px 0 0;
    border-top: 3px solid var(--amber);
  }

  @keyframes plpPopupSlide {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.plp-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 36, 46, 0.06);
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.18s ease;
}

.plp-popup-close:hover {
  background: var(--navy);
  color: var(--amber);
  transform: rotate(90deg);
}

.plp-popup-grid {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  max-height: calc(100vh - 3rem);
  overflow: hidden;
}

@media (min-width: 768px) {
  .plp-popup-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

/* LEFT: product preview */
.plp-popup-product {
  background: var(--cream);
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  overflow-y: auto;
}

@media (max-width: 767px) {
  .plp-popup-product {
    padding: 1.2rem 1.2rem 1rem;
    flex-direction: row;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
}

.plp-popup-product-img {
  background: #FFFFFF;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
  position: relative;
}

.plp-popup-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
}

@media (max-width: 767px) {
  .plp-popup-product-img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
  }

  .plp-popup-product-img img {
    padding: 0.5rem;
  }
}

.plp-popup-product-meta {
  flex: 1;
  min-width: 0;
}

.plp-popup-product-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.plp-popup-product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.plp-popup-product-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.plp-popup-product-brand-tag {
  background: var(--navy);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.plp-popup-product-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.04em;
}

.plp-popup-product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 767px) {
  .plp-popup-product-specs {
    display: none;
  }
}

.plp-popup-product-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.4;
}

.plp-popup-product-spec-icon {
  color: var(--amber);
  flex-shrink: 0;
}

.plp-popup-product-spec-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-right: 0.2rem;
}

.plp-popup-product-spec-value {
  color: var(--slate);
  font-size: 0.78rem;
}

/* RIGHT: enquiry form */
.plp-popup-form {
  padding: 1.8rem 2rem 1.8rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

@media (max-width: 767px) {
  .plp-popup-form {
    padding: 1.4rem 1.3rem 1.4rem;
    gap: 1.1rem;
  }
}

.plp-popup-form-head {
  margin-bottom: 0.4rem;
}

.plp-popup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.7rem;
}

.plp-popup-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.5);
  animation: plpPopupPulse 2s ease-in-out infinite;
}

@keyframes plpPopupPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(3, 188, 208, 0);
  }
}

.plp-popup-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.plp-popup-form-title em {
  font-style: italic;
  color: var(--amber);
}

.plp-popup-form-lead {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}

/* Field */
.plp-popup-field {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.plp-popup-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.plp-popup-required {
  color: var(--amber);
  font-weight: 900;
}

.plp-popup-optional {
  color: var(--slate);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.3rem;
}

/* Quantity stepper */
.plp-popup-qty {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.plp-popup-qty:focus-within {
  border-color: var(--amber);
  background: #FFFFFF;
}

.plp-popup-qty-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.plp-popup-qty-btn:hover {
  background: var(--off-white);
}

.plp-popup-qty input {
  width: 70px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  -moz-appearance: textfield;
}

.plp-popup-qty input::-webkit-outer-spin-button,
.plp-popup-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.plp-popup-qty input:focus {
  outline: none;
}

.plp-popup-qty-hint {
  padding: 0 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border-left: 1px solid var(--line);
  height: 100%;
  display: flex;
  align-items: center;
}

/* Urgency radios as tiles */
.plp-popup-radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

@media (max-width: 540px) {
  .plp-popup-radios {
    grid-template-columns: 1fr;
  }
}

.plp-popup-radio {
  cursor: pointer;
}

.plp-popup-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plp-popup-radio-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.85rem 0.95rem 0.95rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  transition: all 0.18s ease;
}

.plp-popup-radio:hover .plp-popup-radio-tile {
  border-color: var(--line-2);
  background: var(--off-white);
}

.plp-popup-radio input:checked+.plp-popup-radio-tile {
  border-color: var(--amber);
  background: rgba(3, 188, 208, 0.06);
}

.plp-popup-radio input:focus-visible+.plp-popup-radio-tile {
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.25);
}

.plp-popup-radio-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 36, 46, 0.06);
  color: var(--navy);
  margin-bottom: 0.3rem;
  transition: all 0.18s ease;
}

.plp-popup-radio input:checked+.plp-popup-radio-tile .plp-popup-radio-icon {
  background: var(--amber);
  color: var(--navy);
}

.plp-popup-radio-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.plp-popup-radio-sub {
  font-size: 0.7rem;
  color: var(--slate);
}

/* Pincode */
.plp-popup-pincode-wrap {
  position: relative;
}

.plp-popup-pincode-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate);
  pointer-events: none;
}

.plp-popup-pincode-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition: all 0.18s ease;
}

.plp-popup-pincode-wrap input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--amber);
}

.plp-popup-pincode-wrap input::placeholder {
  color: var(--slate);
  font-weight: 400;
  letter-spacing: 0;
}

/* Notes textarea */
.plp-popup-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--navy);
  resize: vertical;
  min-height: 80px;
  transition: all 0.18s ease;
}

.plp-popup-field textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--amber);
}

.plp-popup-field textarea::placeholder {
  color: var(--slate);
  opacity: 0.85;
}

/* Field hints + errors */
.plp-popup-hint {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.plp-popup-error {
  font-size: 0.78rem;
  color: #D04545;
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: none;
}

.plp-popup-error.visible {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.plp-popup-error.visible::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat center / contain;
}

.plp-popup-field.has-error input,
.plp-popup-field.has-error textarea,
.plp-popup-field.has-error .plp-popup-qty {
  border-color: #D04545 !important;
}

/* Actions */
.plp-popup-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

@media (max-width: 540px) {
  .plp-popup-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.plp-popup-btn-cancel {
  background: transparent;
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: all 0.18s ease;
}

.plp-popup-btn-cancel:hover {
  color: var(--navy);
  border-color: var(--line-2);
  background: var(--cream);
}

.plp-popup-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  box-shadow: 0 10px 22px -8px rgba(3, 188, 208, 0.45);
}

.plp-popup-btn-submit:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(3, 188, 208, 0.55);
}

.plp-popup-btn-submit:active {
  transform: translateY(0);
}

.plp-popup-btn-submit svg {
  transition: transform 0.18s ease;
}

.plp-popup-btn-submit:hover svg {
  transform: translateX(3px);
}

.plp-popup-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: var(--slate);
  line-height: 1.45;
  padding-top: 0.2rem;
}

.plp-popup-trust svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Lock body scroll when popup open */
body.plp-popup-open {
  overflow: hidden;
}

/* ─────────── DRAWER ROW v2 (edit button + meta row) ─────────── */
.plp-quote-row {
  grid-template-columns: 50px 1fr auto auto auto !important;
}

.plp-quote-row-name-block {
  min-width: 0;
}

.plp-quote-row-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plp-quote-row-edit {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.4rem;
  transition: color 0.18s ease;
  border-radius: 2px;
}

.plp-quote-row-edit:hover {
  color: var(--amber);
}

@media (max-width: 540px) {
  .plp-quote-row {
    grid-template-columns: 40px 1fr auto !important;
    grid-template-rows: auto auto;
    gap: 0.4rem 0.7rem !important;
  }

  .plp-quote-row-name-block {
    grid-column: 2 / 3;
  }

  .plp-quote-row-qty {
    grid-column: 2 / 3;
    grid-row: 2;
    justify-self: start;
  }

  .plp-quote-row-edit {
    grid-column: 3;
    grid-row: 1;
  }

  .plp-quote-row-remove {
    grid-column: 3;
    grid-row: 2;
  }
}


/* ─────────── RESPONSIVE SAFETY NET (v3) ─────────── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

table {
  max-width: 100%;
}

.footer-recent-content a,
.ct-method-value,
.ct-office-row-value,
.plp-card-name,
.pdp-buybox-title {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Keep aspect-framed media filling their frames */
.pdp-slide img,
.plp-card-img-wrap img,
.ct-ceo-photo img,
.contact-map-frame,
.ct-map-frame,
.plp-popup-img img,
.pdp-popup-img img {
  max-width: none;
}


:root {
  --amber: #03BCD0;
  --amber-bright: #5DD9E8;
  --amber-dark: #027C89;
  --navy: #07242E;
  --navy-2: #0E3340;
  --navy-3: #15414f;
  --slate: #5A7682;
  --line: #D9E5E7;
  --line-2: #C7D6D9;
  --off-white: #E6F4F6;
  --cream: #F0F8F9;
  --white: #FFFFFF;
  --teal: #027C89;

  --font-display: 'Helvetica Neue', 'Arial Black', Arial, system-ui, sans-serif;
  --font-cond: 'Arial Narrow', 'Helvetica Neue Condensed', Impact, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Courier New', monospace;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1100px) {
  .container {
    padding: 0 3rem;
  }
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .ti {
  font-size: 1.1rem;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(3, 188, 208, 0.55);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.trust-strip {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .trust-strip {
    display: flex;
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-cell:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon .ti {
  font-size: 1.1rem;
}

.trust-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .topbar-right {
    justify-content: center;
  }
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-right a:hover {
  color: var(--amber);
}

.topbar-socials {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s;
}

.topbar-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ─────────── HEADER ─────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.logo img {
  height: 60px;
}

@media (min-width: 768px) {
  .logo img {
    height: 77px;
  }
}

.nav {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.15s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--amber-dark);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-phone-icon .ti {
  font-size: 1.3rem;
}

.header-phone-text {
  line-height: 1.1;
}

.header-phone-text small {
  font-size: 0.72rem;
  color: var(--slate);
  display: block;
}

.header-phone-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .ti {
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 720px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig1%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex1%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%281320%2C220%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig1%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 9s ease;
}

.hero-bg.zooming {
  transform: scale(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.95) 0%, rgba(7, 36, 46, 0.78) 45%, rgba(7, 36, 46, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 320px;
  height: 320px;
  border: 24px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  padding: 5rem 0 7rem;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(3, 188, 208, 0.15);
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.hero-callout-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  position: relative;
}

.hero-callout-icon .ti {
  font-size: 1.4rem;
}

.hero-callout-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(3, 188, 208, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-callout-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-callout-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}

/* hero side dots (slider feel) */
.hero-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-dots {
    display: flex;
  }
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.hero-dots span.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* ticker / marquee under hero */
.ticker {
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.ticker-item .ti {
  color: var(--navy);
}

.ticker-sep {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ─────────── FEATURE STRIP (3 floating cards) ─────────── */
.features-float {
  background: var(--off-white);
  padding: 0 0 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.18);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover .feature-content>* {
  color: var(--white);
}

.feature-card:hover .feature-icon {
  background: var(--amber);
  color: var(--navy);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-icon .ti {
  font-size: 1.7rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ─────────── SECTION CHROME ─────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-off {
  background: var(--off-white);
}

.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.eyebrow.eyebrow-light {
  color: var(--amber);
}

.eyebrow.eyebrow-light::before {
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.section-intro.intro-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--navy);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.section-watermark.wm-light {
  color: var(--white);
  opacity: 0.04;
}

/* ─────────── ABOUT ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.4);
}

@media (max-width: 540px) {
  .experience-badge {
    left: 0;
  }
}

.experience-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge .num sup {
  font-size: 0.5em;
  vertical-align: top;
}

.experience-badge .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  line-height: 1.1;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.about-feature:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon .ti {
  font-size: 1.4rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─────────── QUOTE STRIP (dark with phone CTA) ─────────── */
.quote-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.quote-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 500px;
  background: var(--amber);
  transform: skewX(-18deg) translateX(-50%);
  opacity: 0.95;
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .quote-strip::after {
    display: block;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1.4fr auto 1fr;
  }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-heading em {
  font-style: normal;
  color: var(--amber);
}

.quote-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.quote-play .ti {
  font-size: 2rem;
  margin-left: 4px;
}

.quote-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.quote-play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2.5s ease-in-out 0.5s infinite;
}

.quote-call {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .quote-call {
    text-align: center;
    align-items: center;
  }
}

.quote-call small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-call strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ─────────── CATEGORIES (image cards) ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.55;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  opacity: 0.7;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.2) 0%, rgba(7, 36, 46, 0.85) 70%, rgba(7, 36, 46, 0.95) 100%);
}

.cat-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.cat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.15em;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
}

.cat-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cat-arrow {
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-start;
}

.cat-arrow .ti {
  font-size: 1.2rem;
}

.cat-card:hover .cat-arrow {
  background: var(--white);
  transform: rotate(-45deg);
}

/* ─────────── PRODUCTS GRID ─────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -15px rgba(7, 36, 46, 0.18);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-cta {
  background: var(--amber);
  color: var(--navy);
}

.product-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--off-white);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-num-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.6rem 1.7rem 1.7rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  min-height: 3em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.product-cta .ti {
  font-size: 1rem;
}

/* ─────────── INDUSTRIES STRIP (Why customers come) ─────────── */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .industries-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile-bg {
  transform: scale(1.1);
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.1) 0%, rgba(7, 36, 46, 0.92) 100%);
  transition: background 0.3s;
}

.industry-tile:hover::before {
  background: linear-gradient(180deg, rgba(3, 188, 208, 0.4) 0%, rgba(7, 36, 46, 0.92) 100%);
}

.industry-tile-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  z-index: 2;
}

.industry-tile-label small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.industry-tile-label h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ─────────── WHY US / FAQ split ─────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.why-image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.7rem;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
  max-width: 280px;
}

.why-image-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.why-image-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
}

.acc-item {
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  background: var(--white);
  transition: all 0.2s;
}

.acc-item.open {
  border-color: var(--amber);
  box-shadow: 0 10px 30px -10px rgba(7, 36, 46, 0.1);
}

.acc-q {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.acc-q-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.acc-item.open .acc-q-icon {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-a {
  max-height: 320px;
}

.acc-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─────────── STATS COUNTER BAND ─────────── */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  position: relative;
}

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

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat {
    border-right: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--amber);
  margin-left: 0.05em;
  vertical-align: top;
}

.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
}


/* ─────────── CLIENTS LOGO WALL ─────────── */
.clients-section {
  background: var(--white);
}

.clients-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-wall {
    grid-template-columns: repeat(8, 1fr);
  }
}

.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all 0.25s ease;
  position: relative;
}

.client-cell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.client-cell:hover {
  background: var(--cream);
}

.client-cell:hover::after {
  transform: scaleX(1);
}

.client-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.65;
  transition: all 0.25s ease;
}

.client-cell:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}


.product-real-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(3, 188, 208, 0.3);
}

.product-img-wrap {
  background: #FFFFFF;
}

.product-img {
  object-fit: contain !important;
  padding: 1rem;
}


/* ─────────── INDUSTRIES (BENTO LAYOUT, v8) ─────────── */
.industries-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .industries-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
    gap: 1.4rem;
  }

  .ind-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
  isolation: isolate;
}

.ind-card-featured {
  aspect-ratio: auto;
  min-height: 460px;
}

@media (max-width: 1023px) {
  .ind-card-featured {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .ind-card {
    aspect-ratio: 4 / 3;
  }

  .ind-card-featured {
    aspect-ratio: 4 / 3;
  }
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.ind-card:hover .ind-bg {
  transform: scale(1.06);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0) 0%, rgba(7, 36, 46, 0.25) 35%, rgba(7, 36, 46, 0.85) 78%, rgba(7, 36, 46, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.05) 0%, rgba(7, 36, 46, 0.4) 35%, rgba(7, 36, 46, 0.92) 78%, rgba(7, 36, 46, 0.98) 100%);
}

.ind-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.ind-card-featured .ind-content {
  padding: 2.2rem;
}

.ind-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ind-card-featured .ind-num {
  font-size: 1.1rem;
}

.ind-bottom {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ind-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.ind-card-featured .ind-name {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .ind-card-featured .ind-name {
    font-size: 3rem;
  }
}

.ind-apps {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin-bottom: 0.9rem;
  /* Reveal on hover (or always visible on featured) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.ind-card:hover .ind-apps,
.ind-card-featured .ind-apps {
  max-height: 4.5em;
  opacity: 1;
  margin-bottom: 0.9rem;
}

.ind-card-featured .ind-apps {
  font-size: 0.9rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
}

.ind-card:hover .ind-cta {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.ind-cta svg {
  transition: transform 0.3s ease;
}

.ind-card:hover .ind-cta svg {
  transform: translateX(4px);
}

/* CTA card (12th bento cell) */
.ind-cta-card {
  aspect-ratio: 1 / 1;
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.ind-cta-card:hover {
  background: var(--amber-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
}

.ind-cta-card-inner {
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ind-cta-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.7;
}

.ind-cta-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ind-cta-card-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ind-cta-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ind-cta-card:hover .ind-cta-card-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .ind-cta-card {
    aspect-ratio: 4 / 3;
  }
}

/* Hide the legacy industries-strip (we replaced its container) */
.industries-strip {
  display: none !important;
}


/* ─────────── ABOUT v10 ─────────── */
.about-v10 {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-v10 {
    padding: 4.5rem 0;
  }
}

.about-v10-gear {
  position: absolute;
  top: 0;
  right: -120px;
  width: 700px;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .about-v10-gear {
    display: none;
  }
}

.about-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v10-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

/* IMAGE COLLAGE */
.about-v10-images {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-v10-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px -15px rgba(7, 36, 46, 0.35);
}

.about-v10-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-img-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(7, 36, 46, 0.3);
}

.about-v10-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-badge {
  position: absolute;
  top: 28%;
  right: 0;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
  border-radius: 4px;
  min-width: 140px;
}

.about-v10-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-v10-badge-num sup {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 1px;
}

.about-v10-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* CONTENT */
.about-v10-eyebrow {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  /* cyan */
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

.about-v10-eyebrow .brush {
  position: absolute;
  left: -10px;
  bottom: -8px;
  z-index: -1;
}

.about-v10-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-v10-title em {
  font-style: normal;
  color: var(--amber);
}

.about-v10-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.about-v10-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .about-v10-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.about-v10-feature {
  background: #F0F8F9;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.about-v10-feature:hover {
  background: #FFFFFF;
  box-shadow: 0 18px 40px -12px rgba(7, 36, 46, 0.18);
  transform: translateY(-3px);
}

.about-v10-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 22px -6px rgba(3, 188, 208, 0.45);
}

.about-v10-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.about-v10-feature p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
}

/* CTA pill button (matches reference's green pill but in our cyan) */
.about-v10-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 14px 30px -8px rgba(3, 188, 208, 0.45);
}

.about-v10-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -10px rgba(3, 188, 208, 0.55);
}

.about-v10-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-v10-cta>span:first-child {
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-v10-cta-icon {
  width: 56px;
  background: var(--navy);
  color: var(--amber);
  transition: background 0.2s ease;
}

.about-v10-cta:hover .about-v10-cta-icon {
  background: #03A0B0;
}

/* Hide the legacy about section */
.section.about,
.section.section-bg-off#about {
  display: none !important;
}


/* ─────────── WHY US v12 (editorial timeline) ─────────── */
.why-v12 {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .why-v12 {
    padding: 4.5rem 0 5rem;
  }
}

/* Background pattern */
.why-v12-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.why-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow-tl {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
}

.why-v12-glow-br {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.06) 0%, transparent 60%);
}

.why-v12 .container {
  position: relative;
  z-index: 2;
}

.why-v12-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-v12-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }
}

/* LEFT: sticky intro */
.why-v12-intro {
  position: relative;
}

@media (min-width: 1024px) {
  .why-v12-intro {
    position: sticky;
    top: 120px;
  }
}

.why-v12-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.why-v12-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.why-v12-eyebrow-light {
  color: var(--amber);
}

.why-v12-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.why-v12-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.why-v12-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.why-v12-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero stat card */
.why-v12-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 4px;
  max-width: 480px;
  overflow: hidden;
}

.why-v12-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.why-v12-stat-pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0);
    transform: scale(1.2);
  }
}

.why-v12-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-v12-stat-num span {
  font-size: 0.55em;
  margin-left: 1px;
}

.why-v12-stat-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-v12-stat-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-v12-stat-label span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* RIGHT: numbered timeline */
.why-v12-list {
  position: relative;
}

/* The vertical timeline rail */
.why-v12-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(3, 188, 208, 0.05) 0%,
      rgba(3, 188, 208, 0.4) 20%,
      rgba(3, 188, 208, 0.4) 80%,
      rgba(3, 188, 208, 0.05) 100%);
  z-index: 0;
}

@media (min-width: 540px) {
  .why-v12-list::before {
    left: 36px;
  }
}

.why-v12-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  transition: transform 0.3s ease;
}

@media (min-width: 540px) {
  .why-v12-item {
    grid-template-columns: 80px 1fr;
    gap: 1.6rem;
  }
}

.why-v12-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-v12-item:hover {
  transform: translateX(4px);
}

.why-v12-item:hover .why-v12-num {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.why-v12-item:hover .why-v12-num span {
  color: var(--navy);
}

.why-v12-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(3, 188, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  z-index: 1;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 540px) {
  .why-v12-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
}

.why-v12-num span {
  font-style: italic;
  transition: color 0.25s ease;
}

.why-v12-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

@media (min-width: 540px) {
  .why-v12-body h3 {
    font-size: 1.45rem;
  }
}

.why-v12-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.why-v12-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.why-v12-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-v12-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ block at the bottom */
.why-v12-faq-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .why-v12-faq-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.why-v12-faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-v12-faq-head {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.why-v12-faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.why-v12-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.why-v12-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .why-v12-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

.why-v12-faq-item {
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
  border-left: 3px solid rgba(3, 188, 208, 0.4);
}

.why-v12-faq-item:hover {
  background: rgba(3, 188, 208, 0.05);
  border-left-color: var(--amber);
  transform: translateY(-2px);
}

.why-v12-faq-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.why-v12-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide the legacy why-us section */
.section.section-bg-cream#why-us:not(.why-v12) {
  display: none !important;
}



/* Real product photos in footer — center-crop them */
.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* ─────────── CONTACT MAP BLOCK (v14) ─────────── */
/* Section keeps its navy background (form contrast) */
.contact-v13 {
  position: relative;
  isolation: isolate;
}

/* The new visible map block sits inside the container, after the form row */
.contact-map-section {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .contact-map-section {
    margin-top: 3rem;
  }
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background: var(--navy);
  border: 1px solid rgba(3, 188, 208, 0.2);
}

@media (max-width: 1023px) {
  .contact-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .contact-map-wrapper {
    height: 720px;
  }
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Subtle desaturation so the map sits well in the page tone, but
       remains clearly recognizable as a map */
  filter: saturate(0.85) contrast(1.02);
}

/* Floating "Visit Our Office" address card */
.contact-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
  /* cyan accent */
}

@media (max-width: 639px) {
  .contact-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.contact-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  /* cyan */
  margin-bottom: 0.85rem;
}

.contact-map-card-tag svg {
  flex-shrink: 0;
  color: var(--amber);
}

.contact-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.contact-map-card-address {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.contact-map-card-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-map-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.18s ease;
}

.contact-map-card-phone svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-map-card-phone:hover {
  color: var(--amber);
}

.contact-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.contact-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.contact-map-card-cta svg {
  transition: transform 0.2s ease;
}

.contact-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin marker — decorative ring on the map indicating our location */
.contact-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: mapPinPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  /* Hide on mobile where the address card covers center */
  display: none;
}

@media (min-width: 768px) {
  .contact-map-wrapper::after {
    display: block;
    top: 50%;
    left: 65%;
  }
}

@keyframes mapPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7),
      0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0),
      0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0),
      0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}


/* ─────────── TESTIMONIALS ─────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
}

.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ─────────── AI FINDER ─────────── */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.ai-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 540px) {
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-features li .ti {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ai-chat {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.ai-chat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-title-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-title-icon .ti {
  font-size: 1.1rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.msg {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
}

.msg-bot {
  color: rgba(255, 255, 255, 0.9);
}

.msg-user {
  justify-content: flex-end;
}

.msg-bubble {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 85%;
  border-radius: 4px 4px 4px 0;
}

.msg-user .msg-bubble {
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px 4px 0 4px;
  font-weight: 500;
}

.ai-rec {
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 188, 208, 0.12);
  border-left: 3px solid var(--amber);
  font-size: 0.88rem;
  color: var(--white);
}

.ai-rec strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

/* ─────────── CONTACT / CTA ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .ti {
  font-size: 1.4rem;
}

.contact-card-text small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-top: 0.15rem;
}

.form-block {
  background: var(--white);
  padding: 2.5rem;
  border-top: 6px solid var(--amber);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.15);
}

.form-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.form-block>p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 540px) {
  .form-row.r2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: all 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-block .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─────────── BOTTOM FEATURE BAND ─────────── */
.bottom-band {
  background: var(--amber);
  color: var(--navy);
  padding: 0;
}

.bottom-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .bottom-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cell {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid rgba(7, 36, 46, 0.15);
}

.bb-cell:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .bb-cell {
    border-right: none;
    border-bottom: 1px solid rgba(7, 36, 46, 0.15);
  }

  .bb-cell:last-child {
    border-bottom: none;
  }
}

.bb-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.bb-icon .ti {
  font-size: 1.5rem;
}

.bb-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.bb-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo img {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-tag {
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
  transition: transform 0.15s;
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-list a:hover::before {
  transform: translateX(3px);
}

.footer-recent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-recent-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-img {
  width: 64px;
  height: 64px;
  background: var(--navy-2);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-recent-content small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-recent-content a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.15s;
}

.footer-recent-content a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(3, 188, 208, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-contact-icon .ti {
  font-size: 1rem;
}

.footer-contact small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.footer-contact strong,
.footer-contact a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .ti {
  font-size: 1.85rem;
}

/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════
     PRODUCT LISTING PAGE (v1)
     ═══════════════════════════════════════════════════════════ */

/* ─────────── PLP HERO ─────────── */
.plp-hero {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .plp-hero {
    padding: 3.5rem 0 3rem;
  }
}

.plp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.plp-hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.plp-hero .container {
  position: relative;
  z-index: 2;
}

.plp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .plp-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.plp-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
}

.plp-hero-breadcrumb a {
  color: var(--amber);
  transition: opacity 0.15s ease;
}

.plp-hero-breadcrumb a:hover {
  opacity: 0.75;
}

.plp-hero-breadcrumb .sep {
  opacity: 0.4;
}

.plp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.plp-hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.plp-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.plp-hero-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.plp-hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 8px;
  background: var(--amber);
  opacity: 0.18;
  z-index: -1;
}

.plp-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 540px;
}

.plp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 540px;
}

@media (max-width: 539px) {
  .plp-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

.plp-hero-stat {
  background: rgba(3, 188, 208, 0.06);
  border-left: 3px solid var(--amber);
  padding: 0.9rem 1rem 1rem;
}

.plp-hero-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.plp-hero-stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
}

/* Editorial photo collage on the right */
.plp-hero-collage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  width: 100%;
}

@media (max-width: 1023px) {
  .plp-hero-collage {
    display: none;
  }
}

.plp-hero-collage-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.plp-hero-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.plp-hero-collage-1 {
  top: 0;
  left: 0;
  width: 65%;
  height: 65%;
}

.plp-hero-collage-2 {
  top: 8%;
  right: 0;
  width: 38%;
  height: 42%;
  border: 6px solid var(--navy);
}

.plp-hero-collage-3 {
  bottom: 0;
  right: 5%;
  width: 50%;
  height: 45%;
  border: 6px solid var(--navy);
}

.plp-hero-collage-badge {
  position: absolute;
  bottom: 8%;
  left: 5%;
  background: var(--amber);
  color: var(--navy);
  padding: 0.9rem 1.2rem;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
}

.plp-hero-collage-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
}

.plp-hero-collage-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ─────────── STICKY FILTER BAR ─────────── */
.plp-filterbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  box-shadow: 0 4px 16px -8px rgba(7, 36, 46, 0.1);
}

.plp-filterbar-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .plp-filterbar-inner {
    grid-template-columns: 1fr auto;
    gap: 1.4rem;
  }
}

/* Category chips row (horizontal scroll on mobile) */
.plp-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0.1rem 0.1rem 0.4rem;
}

.plp-chips::-webkit-scrollbar {
  display: none;
}

.plp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.plp-chip:hover {
  background: var(--off-white);
  border-color: var(--line-2);
}

.plp-chip.active {
  background: var(--navy);
  color: var(--amber);
  border-color: var(--navy);
}

.plp-chip-count {
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
  padding: 0.1rem 0.45rem;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
}

.plp-chip:not(.active) .plp-chip-count {
  background: rgba(7, 36, 46, 0.08);
  color: var(--slate);
}

/* Right-side controls */
.plp-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.plp-search {
  position: relative;
  flex: 1 1 180px;
  min-width: 0;
}

.plp-search input {
  width: 100%;
  padding: 0.6rem 0.9rem 0.6rem 2.4rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--navy);
  transition: all 0.18s ease;
}

.plp-search input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--amber);
}

.plp-search input::placeholder {
  color: var(--slate);
}

.plp-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate);
  pointer-events: none;
}

.plp-select {
  position: relative;
}

.plp-select select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.6rem 2.2rem 0.6rem 0.9rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.18s ease;
}

.plp-select select:hover {
  background: var(--off-white);
}

.plp-select select:focus {
  outline: none;
  border-color: var(--amber);
}

.plp-select-icon {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  pointer-events: none;
}

/* Result count strip */
.plp-result-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 1rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.plp-result-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

.plp-result-count strong {
  color: var(--amber);
  font-weight: 900;
}

.plp-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0;
  cursor: pointer;
  transition: color 0.18s ease;
}

.plp-clear:hover {
  color: var(--amber);
}

.plp-clear[hidden] {
  display: none;
}

/* ─────────── PRODUCT GRID ─────────── */
.plp-section {
  background: var(--cream);
  padding: 0 0 5rem;
  min-height: 60vh;
}

.plp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .plp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .plp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}

.plp-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.plp-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -16px rgba(3, 188, 208, 0.25);
}

/* Card image */

/* Per-card image slider (v4) */
.plp-card-slider {
  position: relative;
  overflow: hidden;
}

.plp-slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.plp-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plp-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
}

.plp-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px -4px rgba(7, 36, 46, 0.3);
}

.plp-card:hover .plp-slide-arrow {
  opacity: 1;
}

@media (hover: none) {
  .plp-slide-arrow {
    opacity: 0.9;
  }
}

.plp-slide-prev {
  left: 0.6rem;
}

.plp-slide-next {
  right: 0.6rem;
}

.plp-slide-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

.plp-slide-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.35rem;
}

.plp-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(7, 36, 46, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plp-slide-dot:hover {
  background: rgba(7, 36, 46, 0.5);
}

.plp-slide-dot.active {
  background: var(--amber);
  width: 18px;
  border-radius: 99px;
}

.plp-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.plp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plp-card:hover .plp-card-img-wrap img {
  transform: scale(1.06);
}

/* Card number watermark */
.plp-card-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--slate);
  letter-spacing: 0.12em;
  z-index: 2;
}

/* "Real photo" badge for cards 1-3 */
.plp-card-real-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  border-radius: 2px;
}

/* Product brand chip (Groz) */
.plp-card-brand {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(7, 36, 46, 0.9);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  padding: 0.3rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Card body */
.plp-card-body {
  padding: 1.2rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.plp-card-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.plp-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.9rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* Spec rows */
.plp-card-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.plp-card-spec {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--slate);
}

.plp-card-spec-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.plp-card-spec-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-right: 0.35rem;
}

.plp-card-spec-value {
  font-family: var(--font-body);
  color: var(--slate);
  font-size: 0.82rem;
}

/* Card actions */
.plp-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  margin-top: auto;
}

.plp-btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.plp-btn-quote:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(3, 188, 208, 0.45);
}

.plp-btn-quote.added {
  background: var(--navy);
  color: var(--amber);
}

.plp-btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.plp-btn-details:hover {
  background: var(--navy);
  color: var(--amber);
  border-color: var(--navy);
}

/* Empty state */
.plp-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: 4px;
}

.plp-empty h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.plp-empty p {
  color: var(--slate);
  margin-bottom: 1.5rem;
}

/* ─────────── BULK QUOTE DRAWER ─────────── */
.plp-quote-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  color: #FFFFFF;
  border-top: 3px solid var(--amber);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -20px 50px -10px rgba(0, 0, 0, 0.4);
}

.plp-quote-drawer.visible {
  transform: translateY(0);
}

.plp-quote-drawer.expanded {
  /* No additional transform needed; height grows via .plp-quote-list */
}

.plp-quote-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
}

.plp-quote-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plp-quote-text {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.plp-quote-text strong {
  color: var(--amber);
  font-weight: 900;
  font-size: 1.05rem;
  margin-right: 0.4rem;
}

.plp-quote-toggle {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, color 0.18s ease;
  padding: 0.3rem;
}

.plp-quote-drawer.expanded .plp-quote-toggle {
  transform: rotate(180deg);
  color: var(--amber);
}

.plp-quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border-radius: 3px;
  transition: all 0.18s ease;
}

.plp-quote-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
}

.plp-quote-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.plp-quote-drawer.expanded .plp-quote-list {
  max-height: 50vh;
  padding: 0 1.5rem 1.4rem;
  overflow-y: auto;
}

.plp-quote-row {
  display: grid;
  grid-template-columns: 50px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.plp-quote-row-img {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 3px;
  overflow: hidden;
}

.plp-quote-row-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.plp-quote-row-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.plp-quote-row-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  padding: 0.2rem 0.4rem;
}

.plp-quote-row-qty button {
  background: transparent;
  color: var(--amber);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s ease;
}

.plp-quote-row-qty button:hover {
  background: rgba(3, 188, 208, 0.15);
}

.plp-quote-row-qty span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.plp-quote-row-remove {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.4rem;
  transition: color 0.18s ease;
}

.plp-quote-row-remove:hover {
  color: #FF6B6B;
}

/* Spacer for drawer at bottom of page */
body.plp-drawer-visible {
  padding-bottom: 90px;
}

/* ─────────── BOTTOM CTA BAND ─────────── */
.plp-cta-band {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.plp-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
}

.plp-cta-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .plp-cta-band-grid {
    grid-template-columns: 1.4fr auto;
    gap: 3rem;
  }
}

.plp-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.plp-cta-band h2 em {
  font-style: italic;
  color: var(--amber);
}

.plp-cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.plp-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.plp-cta-band .btn {
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.18s ease;
}

.plp-cta-band .btn-primary {
  background: var(--amber);
  color: var(--navy);
}

.plp-cta-band .btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
}

.plp-cta-band .btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.plp-cta-band .btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ─────────── TOAST NOTIFICATION ─────────── */
.plp-toast {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 200;
  background: var(--navy);
  color: #FFFFFF;
  padding: 0.9rem 1.2rem;
  border-radius: 3px;
  border-left: 4px solid var(--amber);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.4);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.plp-toast.visible {
  transform: translateX(0);
}

.plp-toast-icon {
  color: var(--amber);
  flex-shrink: 0;
}




:root {
  --amber: #03BCD0;
  --amber-bright: #5DD9E8;
  --amber-dark: #027C89;
  --navy: #07242E;
  --navy-2: #0E3340;
  --navy-3: #15414f;
  --slate: #5A7682;
  --line: #D9E5E7;
  --line-2: #C7D6D9;
  --off-white: #E6F4F6;
  --cream: #F0F8F9;
  --white: #FFFFFF;
  --teal: #027C89;

  --font-display: 'Helvetica Neue', 'Arial Black', Arial, system-ui, sans-serif;
  --font-cond: 'Arial Narrow', 'Helvetica Neue Condensed', Impact, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Courier New', monospace;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1100px) {
  .container {
    padding: 0 3rem;
  }
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .ti {
  font-size: 1.1rem;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(3, 188, 208, 0.55);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.trust-strip {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .trust-strip {
    display: flex;
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-cell:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon .ti {
  font-size: 1.1rem;
}

.trust-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .topbar-right {
    justify-content: center;
  }
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-right a:hover {
  color: var(--amber);
}

.topbar-socials {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s;
}

.topbar-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ─────────── HEADER ─────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.logo img {
  height: 60px;
}

@media (min-width: 768px) {
  .logo img {
    height: 77px;
  }
}

.nav {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.15s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--amber-dark);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-phone-icon .ti {
  font-size: 1.3rem;
}

.header-phone-text {
  line-height: 1.1;
}

.header-phone-text small {
  font-size: 0.72rem;
  color: var(--slate);
  display: block;
}

.header-phone-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .ti {
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 720px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig1%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex1%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%281320%2C220%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig1%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 9s ease;
}

.hero-bg.zooming {
  transform: scale(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.95) 0%, rgba(7, 36, 46, 0.78) 45%, rgba(7, 36, 46, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 320px;
  height: 320px;
  border: 24px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  padding: 5rem 0 7rem;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(3, 188, 208, 0.15);
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.hero-callout-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  position: relative;
}

.hero-callout-icon .ti {
  font-size: 1.4rem;
}

.hero-callout-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(3, 188, 208, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-callout-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-callout-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}

/* hero side dots (slider feel) */
.hero-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-dots {
    display: flex;
  }
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.hero-dots span.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* ticker / marquee under hero */
.ticker {
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.ticker-item .ti {
  color: var(--navy);
}

.ticker-sep {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ─────────── FEATURE STRIP (3 floating cards) ─────────── */
.features-float {
  background: var(--off-white);
  padding: 0 0 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.18);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover .feature-content>* {
  color: var(--white);
}

.feature-card:hover .feature-icon {
  background: var(--amber);
  color: var(--navy);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-icon .ti {
  font-size: 1.7rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ─────────── SECTION CHROME ─────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-off {
  background: var(--off-white);
}

.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.eyebrow.eyebrow-light {
  color: var(--amber);
}

.eyebrow.eyebrow-light::before {
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.section-intro.intro-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--navy);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.section-watermark.wm-light {
  color: var(--white);
  opacity: 0.04;
}

/* ─────────── ABOUT ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.4);
}

@media (max-width: 540px) {
  .experience-badge {
    left: 0;
  }
}

.experience-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge .num sup {
  font-size: 0.5em;
  vertical-align: top;
}

.experience-badge .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  line-height: 1.1;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.about-feature:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon .ti {
  font-size: 1.4rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─────────── QUOTE STRIP (dark with phone CTA) ─────────── */
.quote-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.quote-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 500px;
  background: var(--amber);
  transform: skewX(-18deg) translateX(-50%);
  opacity: 0.95;
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .quote-strip::after {
    display: block;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1.4fr auto 1fr;
  }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-heading em {
  font-style: normal;
  color: var(--amber);
}

.quote-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.quote-play .ti {
  font-size: 2rem;
  margin-left: 4px;
}

.quote-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.quote-play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2.5s ease-in-out 0.5s infinite;
}

.quote-call {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .quote-call {
    text-align: center;
    align-items: center;
  }
}

.quote-call small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-call strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ─────────── CATEGORIES (image cards) ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.55;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  opacity: 0.7;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.2) 0%, rgba(7, 36, 46, 0.85) 70%, rgba(7, 36, 46, 0.95) 100%);
}

.cat-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.cat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.15em;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
}

.cat-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cat-arrow {
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-start;
}

.cat-arrow .ti {
  font-size: 1.2rem;
}

.cat-card:hover .cat-arrow {
  background: var(--white);
  transform: rotate(-45deg);
}

/* ─────────── PRODUCTS GRID ─────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -15px rgba(7, 36, 46, 0.18);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-cta {
  background: var(--amber);
  color: var(--navy);
}

.product-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--off-white);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-num-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.6rem 1.7rem 1.7rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  min-height: 3em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.product-cta .ti {
  font-size: 1rem;
}

/* ─────────── INDUSTRIES STRIP (Why customers come) ─────────── */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .industries-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile-bg {
  transform: scale(1.1);
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.1) 0%, rgba(7, 36, 46, 0.92) 100%);
  transition: background 0.3s;
}

.industry-tile:hover::before {
  background: linear-gradient(180deg, rgba(3, 188, 208, 0.4) 0%, rgba(7, 36, 46, 0.92) 100%);
}

.industry-tile-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  z-index: 2;
}

.industry-tile-label small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.industry-tile-label h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ─────────── WHY US / FAQ split ─────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.why-image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.7rem;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
  max-width: 280px;
}

.why-image-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.why-image-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
}

.acc-item {
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  background: var(--white);
  transition: all 0.2s;
}

.acc-item.open {
  border-color: var(--amber);
  box-shadow: 0 10px 30px -10px rgba(7, 36, 46, 0.1);
}

.acc-q {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.acc-q-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.acc-item.open .acc-q-icon {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-a {
  max-height: 320px;
}

.acc-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─────────── STATS COUNTER BAND ─────────── */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  position: relative;
}

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

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat {
    border-right: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--amber);
  margin-left: 0.05em;
  vertical-align: top;
}

.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
}


/* ─────────── CLIENTS LOGO WALL ─────────── */
.clients-section {
  background: var(--white);
}

.clients-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-wall {
    grid-template-columns: repeat(8, 1fr);
  }
}

.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all 0.25s ease;
  position: relative;
}

.client-cell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.client-cell:hover {
  background: var(--cream);
}

.client-cell:hover::after {
  transform: scaleX(1);
}

.client-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.65;
  transition: all 0.25s ease;
}

.client-cell:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}


.product-real-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(3, 188, 208, 0.3);
}

.product-img-wrap {
  background: #FFFFFF;
}

.product-img {
  object-fit: contain !important;
  padding: 1rem;
}


/* ─────────── INDUSTRIES (BENTO LAYOUT, v8) ─────────── */
.industries-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .industries-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
    gap: 1.4rem;
  }

  .ind-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
  isolation: isolate;
}

.ind-card-featured {
  aspect-ratio: auto;
  min-height: 460px;
}

@media (max-width: 1023px) {
  .ind-card-featured {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .ind-card {
    aspect-ratio: 4 / 3;
  }

  .ind-card-featured {
    aspect-ratio: 4 / 3;
  }
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.ind-card:hover .ind-bg {
  transform: scale(1.06);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0) 0%, rgba(7, 36, 46, 0.25) 35%, rgba(7, 36, 46, 0.85) 78%, rgba(7, 36, 46, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.05) 0%, rgba(7, 36, 46, 0.4) 35%, rgba(7, 36, 46, 0.92) 78%, rgba(7, 36, 46, 0.98) 100%);
}

.ind-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.ind-card-featured .ind-content {
  padding: 2.2rem;
}

.ind-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ind-card-featured .ind-num {
  font-size: 1.1rem;
}

.ind-bottom {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ind-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.ind-card-featured .ind-name {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .ind-card-featured .ind-name {
    font-size: 3rem;
  }
}

.ind-apps {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin-bottom: 0.9rem;
  /* Reveal on hover (or always visible on featured) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.ind-card:hover .ind-apps,
.ind-card-featured .ind-apps {
  max-height: 4.5em;
  opacity: 1;
  margin-bottom: 0.9rem;
}

.ind-card-featured .ind-apps {
  font-size: 0.9rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
}

.ind-card:hover .ind-cta {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.ind-cta svg {
  transition: transform 0.3s ease;
}

.ind-card:hover .ind-cta svg {
  transform: translateX(4px);
}

/* CTA card (12th bento cell) */
.ind-cta-card {
  aspect-ratio: 1 / 1;
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.ind-cta-card:hover {
  background: var(--amber-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
}

.ind-cta-card-inner {
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ind-cta-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.7;
}

.ind-cta-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ind-cta-card-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ind-cta-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ind-cta-card:hover .ind-cta-card-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .ind-cta-card {
    aspect-ratio: 4 / 3;
  }
}

/* Hide the legacy industries-strip (we replaced its container) */
.industries-strip {
  display: none !important;
}


/* ─────────── ABOUT v10 ─────────── */
.about-v10 {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-v10 {
    padding: 4.5rem 0;
  }
}

.about-v10-gear {
  position: absolute;
  top: 0;
  right: -120px;
  width: 700px;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .about-v10-gear {
    display: none;
  }
}

.about-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v10-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

/* IMAGE COLLAGE */
.about-v10-images {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-v10-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px -15px rgba(7, 36, 46, 0.35);
}

.about-v10-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-img-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(7, 36, 46, 0.3);
}

.about-v10-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-badge {
  position: absolute;
  top: 28%;
  right: 0;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
  border-radius: 4px;
  min-width: 140px;
}

.about-v10-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-v10-badge-num sup {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 1px;
}

.about-v10-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* CONTENT */
.about-v10-eyebrow {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  /* cyan */
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

.about-v10-eyebrow .brush {
  position: absolute;
  left: -10px;
  bottom: -8px;
  z-index: -1;
}

.about-v10-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-v10-title em {
  font-style: normal;
  color: var(--amber);
}

.about-v10-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.about-v10-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .about-v10-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.about-v10-feature {
  background: #F0F8F9;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.about-v10-feature:hover {
  background: #FFFFFF;
  box-shadow: 0 18px 40px -12px rgba(7, 36, 46, 0.18);
  transform: translateY(-3px);
}

.about-v10-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 22px -6px rgba(3, 188, 208, 0.45);
}

.about-v10-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.about-v10-feature p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
}

/* CTA pill button (matches reference's green pill but in our cyan) */
.about-v10-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 14px 30px -8px rgba(3, 188, 208, 0.45);
}

.about-v10-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -10px rgba(3, 188, 208, 0.55);
}

.about-v10-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-v10-cta>span:first-child {
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-v10-cta-icon {
  width: 56px;
  background: var(--navy);
  color: var(--amber);
  transition: background 0.2s ease;
}

.about-v10-cta:hover .about-v10-cta-icon {
  background: #03A0B0;
}

/* Hide the legacy about section */
.section.about,
.section.section-bg-off#about {
  display: none !important;
}


/* ─────────── WHY US v12 (editorial timeline) ─────────── */
.why-v12 {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .why-v12 {
    padding: 4.5rem 0 5rem;
  }
}

/* Background pattern */
.why-v12-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.why-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow-tl {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
}

.why-v12-glow-br {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.06) 0%, transparent 60%);
}

.why-v12 .container {
  position: relative;
  z-index: 2;
}

.why-v12-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-v12-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }
}

/* LEFT: sticky intro */
.why-v12-intro {
  position: relative;
}

@media (min-width: 1024px) {
  .why-v12-intro {
    position: sticky;
    top: 120px;
  }
}

.why-v12-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.why-v12-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.why-v12-eyebrow-light {
  color: var(--amber);
}

.why-v12-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.why-v12-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.why-v12-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.why-v12-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero stat card */
.why-v12-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 4px;
  max-width: 480px;
  overflow: hidden;
}

.why-v12-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.why-v12-stat-pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0);
    transform: scale(1.2);
  }
}

.why-v12-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-v12-stat-num span {
  font-size: 0.55em;
  margin-left: 1px;
}

.why-v12-stat-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-v12-stat-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-v12-stat-label span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* RIGHT: numbered timeline */
.why-v12-list {
  position: relative;
}

/* The vertical timeline rail */
.why-v12-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(3, 188, 208, 0.05) 0%,
      rgba(3, 188, 208, 0.4) 20%,
      rgba(3, 188, 208, 0.4) 80%,
      rgba(3, 188, 208, 0.05) 100%);
  z-index: 0;
}

@media (min-width: 540px) {
  .why-v12-list::before {
    left: 36px;
  }
}

.why-v12-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  transition: transform 0.3s ease;
}

@media (min-width: 540px) {
  .why-v12-item {
    grid-template-columns: 80px 1fr;
    gap: 1.6rem;
  }
}

.why-v12-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-v12-item:hover {
  transform: translateX(4px);
}

.why-v12-item:hover .why-v12-num {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.why-v12-item:hover .why-v12-num span {
  color: var(--navy);
}

.why-v12-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(3, 188, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  z-index: 1;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 540px) {
  .why-v12-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
}

.why-v12-num span {
  font-style: italic;
  transition: color 0.25s ease;
}

.why-v12-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

@media (min-width: 540px) {
  .why-v12-body h3 {
    font-size: 1.45rem;
  }
}

.why-v12-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.why-v12-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.why-v12-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-v12-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ block at the bottom */
.why-v12-faq-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .why-v12-faq-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.why-v12-faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-v12-faq-head {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.why-v12-faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.why-v12-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.why-v12-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .why-v12-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

.why-v12-faq-item {
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
  border-left: 3px solid rgba(3, 188, 208, 0.4);
}

.why-v12-faq-item:hover {
  background: rgba(3, 188, 208, 0.05);
  border-left-color: var(--amber);
  transform: translateY(-2px);
}

.why-v12-faq-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.why-v12-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide the legacy why-us section */
.section.section-bg-cream#why-us:not(.why-v12) {
  display: none !important;
}



/* Real product photos in footer — center-crop them */
.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* ─────────── CONTACT MAP BLOCK (v14) ─────────── */
/* Section keeps its navy background (form contrast) */
.contact-v13 {
  position: relative;
  isolation: isolate;
}

/* The new visible map block sits inside the container, after the form row */
.contact-map-section {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .contact-map-section {
    margin-top: 3rem;
  }
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background: var(--navy);
  border: 1px solid rgba(3, 188, 208, 0.2);
}

@media (max-width: 1023px) {
  .contact-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .contact-map-wrapper {
    height: 720px;
  }
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Subtle desaturation so the map sits well in the page tone, but
       remains clearly recognizable as a map */
  filter: saturate(0.85) contrast(1.02);
}

/* Floating "Visit Our Office" address card */
.contact-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
  /* cyan accent */
}

@media (max-width: 639px) {
  .contact-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.contact-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  /* cyan */
  margin-bottom: 0.85rem;
}

.contact-map-card-tag svg {
  flex-shrink: 0;
  color: var(--amber);
}

.contact-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.contact-map-card-address {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.contact-map-card-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-map-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.18s ease;
}

.contact-map-card-phone svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-map-card-phone:hover {
  color: var(--amber);
}

.contact-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.contact-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.contact-map-card-cta svg {
  transition: transform 0.2s ease;
}

.contact-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin marker — decorative ring on the map indicating our location */
.contact-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: mapPinPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  /* Hide on mobile where the address card covers center */
  display: none;
}

@media (min-width: 768px) {
  .contact-map-wrapper::after {
    display: block;
    top: 50%;
    left: 65%;
  }
}

@keyframes mapPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7),
      0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0),
      0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0),
      0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}


/* ─────────── TESTIMONIALS ─────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
}

.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ─────────── AI FINDER ─────────── */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.ai-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 540px) {
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-features li .ti {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ai-chat {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.ai-chat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-title-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-title-icon .ti {
  font-size: 1.1rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.msg {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
}

.msg-bot {
  color: rgba(255, 255, 255, 0.9);
}

.msg-user {
  justify-content: flex-end;
}

.msg-bubble {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 85%;
  border-radius: 4px 4px 4px 0;
}

.msg-user .msg-bubble {
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px 4px 0 4px;
  font-weight: 500;
}

.ai-rec {
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 188, 208, 0.12);
  border-left: 3px solid var(--amber);
  font-size: 0.88rem;
  color: var(--white);
}

.ai-rec strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

/* ─────────── CONTACT / CTA ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .ti {
  font-size: 1.4rem;
}

.contact-card-text small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-top: 0.15rem;
}

.form-block {
  background: var(--white);
  padding: 2.5rem;
  border-top: 6px solid var(--amber);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.15);
}

.form-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.form-block>p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 540px) {
  .form-row.r2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: all 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-block .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─────────── BOTTOM FEATURE BAND ─────────── */
.bottom-band {
  background: var(--amber);
  color: var(--navy);
  padding: 0;
}

.bottom-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .bottom-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cell {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid rgba(7, 36, 46, 0.15);
}

.bb-cell:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .bb-cell {
    border-right: none;
    border-bottom: 1px solid rgba(7, 36, 46, 0.15);
  }

  .bb-cell:last-child {
    border-bottom: none;
  }
}

.bb-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.bb-icon .ti {
  font-size: 1.5rem;
}

.bb-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.bb-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo img {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-tag {
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
  transition: transform 0.15s;
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-list a:hover::before {
  transform: translateX(3px);
}

.footer-recent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-recent-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-img {
  width: 64px;
  height: 64px;
  background: var(--navy-2);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-recent-content small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-recent-content a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.15s;
}

.footer-recent-content a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(3, 188, 208, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-contact-icon .ti {
  font-size: 1rem;
}

.footer-contact small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.footer-contact strong,
.footer-contact a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .ti {
  font-size: 1.85rem;
}

/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}


/* ═══════════ PRODUCT DETAIL PAGE (v1) ═══════════ */

/* breadcrumb strip */
.pdp-crumb-strip {
  background: var(--navy);
  padding: 1.1rem 0;
}

.pdp-crumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

.pdp-crumb a {
  color: var(--amber);
}

.pdp-crumb a:hover {
  opacity: 0.75;
}

.pdp-crumb .sep {
  opacity: 0.4;
}

.pdp-crumb .current {
  color: #FFFFFF;
}

/* ── Hero: gallery + buy box ── */
.pdp-hero {
  background: var(--cream);
  padding: 3rem 0 4rem;
}

@media (max-width: 1023px) {
  .pdp-hero {
    padding: 2rem 0 3rem;
  }
}

.pdp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .pdp-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* Gallery */
.pdp-gallery {
  position: relative;
}

@media (min-width: 1024px) {
  .pdp-gallery {
    position: sticky;
    top: 90px;
  }
}

.pdp-gallery-main {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1rem;
}

.pdp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.5rem;
  transition: transform 0.4s ease;
}

.pdp-gallery-main.zoomed .pdp-slide.active img {
  transform: scale(1.6);
  cursor: zoom-out;
}

.pdp-gallery-main:not(.zoomed) .pdp-slide img {
  cursor: zoom-in;
}

/* Slider track */
.pdp-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.pdp-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.5rem;
  transition: transform 0.4s ease;
}

/* Slider arrows */
.pdp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 6px 16px -6px rgba(7, 36, 46, 0.25);
}

.pdp-slider-prev {
  left: 1rem;
}

.pdp-slider-next {
  right: 1rem;
}

.pdp-slider-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

.pdp-gallery-main.zoomed .pdp-slider-arrow {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 540px) {
  .pdp-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .pdp-slider-prev {
    left: 0.6rem;
  }

  .pdp-slider-next {
    right: 0.6rem;
  }
}

/* Dot indicators */
.pdp-slider-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.pdp-gallery-main.zoomed .pdp-slider-dots {
  opacity: 0;
}

.pdp-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(7, 36, 46, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  border: none;
}

.pdp-slider-dot:hover {
  background: rgba(7, 36, 46, 0.4);
}

.pdp-slider-dot.active {
  background: var(--amber);
  width: 26px;
  border-radius: 99px;
}

.pdp-gallery-badges {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.pdp-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  padding: 0.3rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.pdp-badge-real {
  background: var(--amber);
  color: var(--navy);
}

.pdp-badge-stock {
  background: #2B8A3E;
  color: #FFFFFF;
}

.pdp-gallery-zoom-hint {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(7, 36, 46, 0.08);
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 99px;
  z-index: 2;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.pdp-thumb {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.18s ease;
  padding: 0;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.6rem;
}

.pdp-thumb:hover {
  border-color: var(--line-2);
}

.pdp-thumb.active {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

/* Buy box */
.pdp-buybox-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.7rem;
}

.pdp-buybox-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.pdp-buybox-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pdp-buybox-brand {
  background: var(--navy);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.35rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.pdp-buybox-sku {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.04em;
}

.pdp-buybox-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--amber);
}

.pdp-buybox-rating span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--slate);
  margin-left: 0.2rem;
}

.pdp-buybox-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 1.6rem;
}

/* Key spec highlights */
.pdp-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 480px) {
  .pdp-highlights {
    grid-template-columns: 1fr;
  }
}

.pdp-highlight {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.8rem 1rem;
}

.pdp-highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(3, 188, 208, 0.1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdp-highlight-text {
  min-width: 0;
}

.pdp-highlight-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.pdp-highlight-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.2;
}

/* Quote box (no price) */
.pdp-quotebox {
  background: var(--navy);
  border-radius: 6px;
  padding: 1.6rem 1.8rem 1.8rem;
  border-top: 4px solid var(--amber);
  margin-bottom: 1.4rem;
}

.pdp-quotebox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.pdp-quotebox-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.pdp-quotebox-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 1.3rem;
}

.pdp-quotebox-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

@media (max-width: 380px) {
  .pdp-quotebox-actions {
    grid-template-columns: 1fr;
  }
}

.pdp-btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  box-shadow: 0 12px 26px -8px rgba(3, 188, 208, 0.5);
}

.pdp-btn-quote:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -8px rgba(3, 188, 208, 0.6);
}

.pdp-btn-quote svg {
  transition: transform 0.18s ease;
}

.pdp-btn-quote:hover svg {
  transform: translateX(3px);
}

.pdp-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  transition: all 0.18s ease;
}

.pdp-btn-wa:hover {
  background: #2B8A3E;
  border-color: #2BBA4E;
}

@media (max-width: 380px) {
  .pdp-btn-wa {
    width: 100%;
    padding: 0.9rem;
    gap: 0.5rem;
  }

  .pdp-btn-wa::after {
    content: 'WhatsApp';
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
  }
}

/* Trust strip */
.pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .pdp-trust-strip {
    grid-template-columns: 1fr;
  }
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.3;
}

.pdp-trust-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Secondary actions */
.pdp-secondary {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.pdp-secondary button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.18s ease;
}

.pdp-secondary button:hover {
  color: var(--amber);
}

/* ── Sticky tab bar ── */
.pdp-tabs {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 16px -8px rgba(7, 36, 46, 0.1);
}

.pdp-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pdp-tabs-inner::-webkit-scrollbar {
  display: none;
}

.pdp-tab {
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  cursor: pointer;
  position: relative;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.pdp-tab::after {
  content: '';
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.pdp-tab:hover {
  color: var(--navy);
}

.pdp-tab.active {
  color: var(--navy);
}

.pdp-tab.active::after {
  transform: scaleX(1);
}

/* ── Content sections ── */
.pdp-section {
  padding: 4rem 0;
  scroll-margin-top: 64px;
}

@media (max-width: 1023px) {
  .pdp-section {
    padding: 3rem 0;
  }
}

.pdp-section:nth-child(even) {
  background: var(--cream);
}

.pdp-section-head {
  margin-bottom: 2.5rem;
}

.pdp-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.pdp-section-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.pdp-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

.pdp-section-title em {
  font-style: italic;
  color: var(--amber);
}

/* Overview */
.pdp-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .pdp-overview-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3.5rem;
  }
}

.pdp-overview-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 1.3rem;
}

.pdp-overview-body p:last-child {
  margin-bottom: 0;
}

.pdp-overview-body strong {
  color: var(--navy);
  font-weight: 700;
}

.pdp-pullquote {
  background: var(--navy);
  color: #FFFFFF;
  padding: 2rem;
  border-radius: 6px;
  border-left: 4px solid var(--amber);
  position: relative;
  align-self: start;
}

.pdp-pullquote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--amber);
  opacity: 0.5;
}

.pdp-pullquote p {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0.5rem 0 1.2rem;
}

.pdp-pullquote-by {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--amber);
}

/* Feature checklist */
.pdp-features {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 640px) {
  .pdp-features {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--navy);
}

.pdp-features li svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Spec table */
.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.pdp-spec-table tr {
  border-bottom: 1px solid var(--line);
}

.pdp-spec-table tr:last-child {
  border-bottom: none;
}

.pdp-spec-table tr:nth-child(even) {
  background: var(--cream);
}

.pdp-spec-table th {
  text-align: left;
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  width: 40%;
  vertical-align: top;
}

@media (max-width: 540px) {
  .pdp-spec-table th {
    width: 45%;
    font-size: 0.72rem;
    padding: 0.85rem 1rem;
  }
}

.pdp-spec-table td {
  padding: 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}

@media (max-width: 540px) {
  .pdp-spec-table td {
    font-size: 0.85rem;
    padding: 0.85rem 1rem;
  }
}

.pdp-spec-section-row td {
  background: var(--navy) !important;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Applications grid */
.pdp-apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .pdp-apps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pdp-app {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 1.6rem 1.3rem;
  text-align: center;
  transition: all 0.22s ease;
}

.pdp-app:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(3, 188, 208, 0.25);
}

.pdp-app-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(3, 188, 208, 0.1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}

.pdp-app:hover .pdp-app-icon {
  background: var(--amber);
  color: var(--navy);
}

.pdp-app-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.pdp-app-sub {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.4;
}

/* Downloads */
.pdp-downloads {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pdp-downloads {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-download {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  transition: all 0.22s ease;
}

.pdp-download:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(3, 188, 208, 0.25);
}

.pdp-download-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(3, 188, 208, 0.1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdp-download-text {
  flex: 1;
  min-width: 0;
}

.pdp-download-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.pdp-download-meta {
  font-size: 0.78rem;
  color: var(--slate);
}

.pdp-download-arrow {
  color: var(--amber);
  flex-shrink: 0;
}

/* FAQ */
.pdp-faq-list {
  max-width: 880px;
}

.pdp-faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.pdp-faq-item.open {
  border-color: var(--amber);
  box-shadow: 0 16px 32px -16px rgba(3, 188, 208, 0.2);
}

.pdp-faq-trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: transparent;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  color: var(--navy);
}

.pdp-faq-q {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.3;
}

.pdp-faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.pdp-faq-item.open .pdp-faq-toggle {
  background: var(--navy);
  color: var(--amber);
  transform: rotate(45deg);
}

.pdp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.pdp-faq-body-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate);
}

/* Related products */
.pdp-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 640px) {
  .pdp-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdp-related-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pdp-related-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -16px rgba(3, 188, 208, 0.25);
}

.pdp-related-img {
  aspect-ratio: 4/3;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.pdp-related-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
  transition: transform 0.5s ease;
}

.pdp-related-card:hover .pdp-related-img img {
  transform: scale(1.06);
}

.pdp-related-body {
  padding: 1.1rem 1.3rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pdp-related-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

.pdp-related-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.pdp-related-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

.pdp-related-cta svg {
  transition: transform 0.18s ease;
}

.pdp-related-card:hover .pdp-related-cta svg {
  transform: translateX(4px);
}

/* CTA band */
.pdp-cta-band {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.pdp-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
}

.pdp-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pdp-cta-grid {
    grid-template-columns: 1.4fr auto;
    gap: 3rem;
  }
}

.pdp-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.pdp-cta-band h2 em {
  font-style: italic;
  color: var(--amber);
}

.pdp-cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.pdp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pdp-cta-actions .pdp-btn {
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.18s ease;
}

.pdp-cta-actions .pdp-btn-primary {
  background: var(--amber);
  color: var(--navy);
}

.pdp-cta-actions .pdp-btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
}

.pdp-cta-actions .pdp-btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.pdp-cta-actions .pdp-btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ── Quote popup (single product, reused pattern) ── */
.pdp-popup {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.pdp-popup[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .pdp-popup {
    padding: 0;
    align-items: flex-end;
  }
}

.pdp-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 36, 46, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pdp-popup-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 6px;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.55);
  border-top: 4px solid var(--amber);
  animation: pdpPopupSlide 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  padding: 2rem 2rem 1.8rem;
}

@media (max-width: 767px) {
  .pdp-popup-card {
    max-height: 92vh;
    border-radius: 6px 6px 0 0;
    padding: 1.5rem 1.4rem 1.4rem;
  }
}

@keyframes pdpPopupSlide {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pdp-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 36, 46, 0.06);
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.18s ease;
}

.pdp-popup-close:hover {
  background: var(--navy);
  color: var(--amber);
  transform: rotate(90deg);
}

.pdp-popup-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}

.pdp-popup-img {
  width: 70px;
  height: 70px;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.pdp-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}

.pdp-popup-titles {
  min-width: 0;
}

.pdp-popup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.pdp-popup-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.pdp-popup-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
}

.pdp-popup-field {
  margin-bottom: 1.2rem;
}

.pdp-popup-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pdp-popup-req {
  color: var(--amber);
  font-weight: 900;
}

.pdp-popup-opt {
  color: var(--slate);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.3rem;
}

.pdp-popup-qty {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.pdp-popup-qty:focus-within {
  border-color: var(--amber);
  background: #FFFFFF;
}

.pdp-popup-qty button {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
}

.pdp-popup-qty button:hover {
  background: var(--off-white);
}

.pdp-popup-qty input {
  width: 64px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  -moz-appearance: textfield;
}

.pdp-popup-qty input::-webkit-outer-spin-button,
.pdp-popup-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-popup-qty input:focus {
  outline: none;
}

.pdp-popup-input,
.pdp-popup-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  transition: all 0.18s ease;
}

.pdp-popup-input:focus,
.pdp-popup-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--amber);
}

.pdp-popup-textarea {
  resize: vertical;
  min-height: 80px;
}

.pdp-popup-error {
  font-size: 0.78rem;
  color: #D04545;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  display: none;
}

.pdp-popup-error.visible {
  display: block;
}

.pdp-popup-field.has-error input,
.pdp-popup-field.has-error textarea,
.pdp-popup-field.has-error .pdp-popup-qty {
  border-color: #D04545 !important;
}

.pdp-popup-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .pdp-popup-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-popup-cancel {
  background: transparent;
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: all 0.18s ease;
}

.pdp-popup-cancel:hover {
  color: var(--navy);
  border-color: var(--line-2);
  background: var(--cream);
}

.pdp-popup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  box-shadow: 0 10px 22px -8px rgba(3, 188, 208, 0.45);
}

.pdp-popup-submit:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
}

body.pdp-popup-open {
  overflow: hidden;
}

/* Toast */
.pdp-toast {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 300;
  background: var(--navy);
  color: #FFFFFF;
  padding: 0.9rem 1.2rem;
  border-radius: 3px;
  border-left: 4px solid var(--amber);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.4);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 360px;
}

.pdp-toast.visible {
  transform: translateX(0);
}

.pdp-toast-icon {
  color: var(--amber);
  flex-shrink: 0;
}









/* Product Details Page */
/* ═══════════ QUOTE POPUP (single-product enquiry) ═══════════ */
.plp-popup {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.plp-popup[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .plp-popup {
    padding: 0;
    align-items: flex-end;
  }
}

.plp-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 36, 46, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.plp-popup-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 6px;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.55);
  border-top: 4px solid var(--amber);
  animation: plpPopupSlide 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@media (max-width: 767px) {
  .plp-popup-card {
    max-height: 92vh;
    border-radius: 6px 6px 0 0;
    padding: 1.3rem 1.3rem 1.3rem;
  }
}

@keyframes plpPopupSlide {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.plp-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 36, 46, 0.06);
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
}

.plp-popup-close:hover {
  background: var(--navy);
  color: var(--amber);
  transform: rotate(90deg);
}

.plp-popup-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.3rem;
  padding-right: 2.5rem;
}

.plp-popup-thumb {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.plp-popup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3rem;
}

.plp-popup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.plp-popup-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.plp-popup-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.plp-popup-field {
  margin-bottom: 1.1rem;
}

.plp-popup-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.plp-popup-req {
  color: var(--amber);
  font-weight: 900;
}

.plp-popup-opt {
  color: var(--slate);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.3rem;
}

.plp-popup-qty {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.plp-popup-qty:focus-within {
  border-color: var(--amber);
  background: #FFFFFF;
}

.plp-popup-qty button {
  width: 42px;
  height: 42px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
}

.plp-popup-qty button:hover {
  background: var(--off-white);
}

.plp-popup-qty input {
  width: 60px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  -moz-appearance: textfield;
}

.plp-popup-qty input::-webkit-outer-spin-button,
.plp-popup-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.plp-popup-qty input:focus {
  outline: none;
}

.plp-popup-input,
.plp-popup-textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  transition: all 0.18s ease;
}

.plp-popup-input:focus,
.plp-popup-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--amber);
}

.plp-popup-textarea {
  resize: vertical;
  min-height: 76px;
}

.plp-popup-error {
  font-size: 0.78rem;
  color: #D04545;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  display: none;
}

.plp-popup-error.visible {
  display: block;
}

.plp-popup-field.has-error input,
.plp-popup-field.has-error textarea,
.plp-popup-field.has-error .plp-popup-qty {
  border-color: #D04545 !important;
}

.plp-popup-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

@media (max-width: 480px) {
  .plp-popup-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.plp-popup-cancel {
  background: transparent;
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.3rem;
  border-radius: 3px;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: all 0.18s ease;
}

.plp-popup-cancel:hover {
  color: var(--navy);
  border-color: var(--line-2);
  background: var(--cream);
}

.plp-popup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.3rem;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  box-shadow: 0 10px 22px -8px rgba(3, 188, 208, 0.45);
}

.plp-popup-submit:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
}

body.plp-popup-open {
  overflow: hidden;
}

/* Toast */
.plp-toast {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 300;
  background: var(--navy);
  color: #FFFFFF;
  padding: 0.9rem 1.2rem;
  border-radius: 3px;
  border-left: 4px solid var(--amber);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.4);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 360px;
}

.plp-toast.visible {
  transform: translateX(0);
}

.plp-toast-icon {
  color: var(--amber);
  flex-shrink: 0;
}

/* Responsive safety net */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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





/* ═══════════════════════════════════════════════════════════
     PRODUCT LISTING PAGE v5 — data-driven, single search filter
     ═══════════════════════════════════════════════════════════ */

/* HERO */
.plp-hero {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .plp-hero {
    padding: 3rem 0 2.5rem;
  }
}

.plp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.plp-hero .container {
  position: relative;
  z-index: 2;
}

.plp-hero-crumb {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.plp-hero-crumb a {
  color: var(--amber);
}

.plp-hero-crumb .sep {
  opacity: 0.4;
  margin: 0 0.4rem;
}

.plp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.plp-hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.plp-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 1rem;
  max-width: 760px;
}

.plp-hero-title em {
  font-style: italic;
  color: var(--amber);
}

.plp-hero-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
}

/* STICKY SEARCH BAR — the only filter */
.plp-searchbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  box-shadow: 0 4px 16px -8px rgba(7, 36, 46, 0.1);
}

.plp-searchbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.plp-search {
  position: relative;
  flex: 1 1 320px;
  min-width: 0;
}

.plp-search input {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 2.8rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  transition: all 0.18s ease;
}

.plp-search input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--amber);
}

.plp-search input::placeholder {
  color: var(--slate);
}

.plp-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate);
  pointer-events: none;
}

.plp-search-clear {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(7, 36, 46, 0.08);
  color: var(--slate);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.18s ease;
}

.plp-search-clear:hover {
  background: var(--navy);
  color: var(--amber);
}

.plp-search.has-value .plp-search-clear {
  display: flex;
}

.plp-search-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate);
  white-space: nowrap;
}

.plp-search-count strong {
  color: var(--navy);
  font-weight: 900;
}

/* GRID */
.plp-section {
  background: var(--cream);
  padding: 3rem 0 5rem;
  min-height: 50vh;
}

@media (max-width: 1023px) {
  .plp-section {
    padding: 2.5rem 0 4rem;
  }
}

.plp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 640px) {
  .plp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .plp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* CARD */
.plp-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plp-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -16px rgba(3, 188, 208, 0.25);
}

/* Card image slider */
.plp-card-imgs {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.plp-slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.plp-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plp-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
}

/* Placeholder shown until image loads (or if URL fails) */
.plp-slide-fallback {
  position: absolute;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.plp-slide.broken .plp-slide-fallback {
  opacity: 1;
}

.plp-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px -4px rgba(7, 36, 46, 0.3);
}

.plp-card:hover .plp-slide-arrow {
  opacity: 1;
}

.plp-slide-prev {
  left: 0.6rem;
}

.plp-slide-next {
  right: 0.6rem;
}

.plp-slide-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

@media (hover: none) {
  .plp-slide-arrow {
    opacity: 0.85;
  }
}

.plp-slide-dots {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.35rem;
}

.plp-slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(7, 36, 46, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plp-slide-dot:hover {
  background: rgba(7, 36, 46, 0.5);
}

.plp-slide-dot.active {
  background: var(--amber);
  width: 18px;
  border-radius: 99px;
}

.plp-card-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--slate);
  letter-spacing: 0.12em;
}

.plp-card-model {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background: var(--navy);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  padding: 0.28rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

/* Card body */
.plp-card-body {
  padding: 1.1rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.plp-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.plp-card-name a {
  color: inherit;
  transition: color 0.18s ease;
  overflow-wrap: anywhere;
}

.plp-card-name a:hover {
  color: var(--amber);
}

/* Spec list (compact, scannable) */
.plp-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  flex: 1 1 auto;
  border-top: 1px solid var(--line);
}

.plp-card-specs li {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
  line-height: 1.4;
}

.plp-card-specs li:last-child {
  border-bottom: none;
}

.plp-card-spec-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.plp-card-spec-value {
  color: var(--slate);
  overflow-wrap: anywhere;
}

/* Card CTA */
.plp-card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

.plp-card-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

.plp-card-btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(3, 188, 208, 0.45);
}

.plp-card-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  transition: all 0.18s ease;
}

.plp-card-btn-secondary:hover {
  background: var(--navy);
  color: var(--amber);
  border-color: var(--navy);
}



/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}




/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .ti {
  font-size: 1.1rem;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(3, 188, 208, 0.55);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.trust-strip {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .trust-strip {
    display: flex;
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-cell:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 188, 208, 0.12);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon .ti {
  font-size: 1.1rem;
}

.trust-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .topbar-right {
    justify-content: center;
  }
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-right a:hover {
  color: var(--amber);
}

.topbar-socials {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s;
}

.topbar-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ─────────── HEADER ─────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.logo img {
  height: 60px;
}

@media (min-width: 768px) {
  .logo img {
    height: 77px;
  }
}

.nav {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.15s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--amber-dark);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-phone-icon .ti {
  font-size: 1.3rem;
}

.header-phone-text {
  line-height: 1.1;
}

.header-phone-text small {
  font-size: 0.72rem;
  color: var(--slate);
  display: block;
}

.header-phone-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .ti {
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 720px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig1%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex1%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%281320%2C220%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig1%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 9s ease;
}

.hero-bg.zooming {
  transform: scale(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.95) 0%, rgba(7, 36, 46, 0.78) 45%, rgba(7, 36, 46, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 30%;
  width: 320px;
  height: 320px;
  border: 24px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  padding: 5rem 0 7rem;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(3, 188, 208, 0.15);
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.hero-callout-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  position: relative;
}

.hero-callout-icon .ti {
  font-size: 1.4rem;
}

.hero-callout-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(3, 188, 208, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-callout-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-callout-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}

/* hero side dots (slider feel) */
.hero-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-dots {
    display: flex;
  }
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.hero-dots span.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* ticker / marquee under hero */
.ticker {
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.ticker-item .ti {
  color: var(--navy);
}

.ticker-sep {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ─────────── FEATURE STRIP (3 floating cards) ─────────── */
.features-float {
  background: var(--off-white);
  padding: 0 0 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.18);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover .feature-content>* {
  color: var(--white);
}

.feature-card:hover .feature-icon {
  background: var(--amber);
  color: var(--navy);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-icon .ti {
  font-size: 1.7rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ─────────── SECTION CHROME ─────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-off {
  background: var(--off-white);
}

.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.eyebrow.eyebrow-light {
  color: var(--amber);
}

.eyebrow.eyebrow-light::before {
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.section-intro.intro-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--navy);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.section-watermark.wm-light {
  color: var(--white);
  opacity: 0.04;
}

/* ─────────── ABOUT ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.4);
}

@media (max-width: 540px) {
  .experience-badge {
    left: 0;
  }
}

.experience-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge .num sup {
  font-size: 0.5em;
  vertical-align: top;
}

.experience-badge .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  line-height: 1.1;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.about-feature:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon .ti {
  font-size: 1.4rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─────────── QUOTE STRIP (dark with phone CTA) ─────────── */
.quote-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.quote-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 500px;
  background: var(--amber);
  transform: skewX(-18deg) translateX(-50%);
  opacity: 0.95;
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .quote-strip::after {
    display: block;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1.4fr auto 1fr;
  }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-heading em {
  font-style: normal;
  color: var(--amber);
}

.quote-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.quote-play .ti {
  font-size: 2rem;
  margin-left: 4px;
}

.quote-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.quote-play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2.5s ease-in-out 0.5s infinite;
}

.quote-call {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .quote-call {
    text-align: center;
    align-items: center;
  }
}

.quote-call small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-call strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ─────────── CATEGORIES (image cards) ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.55;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  opacity: 0.7;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.2) 0%, rgba(7, 36, 46, 0.85) 70%, rgba(7, 36, 46, 0.95) 100%);
}

.cat-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.cat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.15em;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
}

.cat-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cat-arrow {
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-start;
}

.cat-arrow .ti {
  font-size: 1.2rem;
}

.cat-card:hover .cat-arrow {
  background: var(--white);
  transform: rotate(-45deg);
}

/* ─────────── PRODUCTS GRID ─────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 40px -15px rgba(7, 36, 46, 0.18);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-cta {
  background: var(--amber);
  color: var(--navy);
}

.product-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: var(--off-white);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-num-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.6rem 1.7rem 1.7rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  min-height: 3em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.product-cta .ti {
  font-size: 1rem;
}

/* ─────────── INDUSTRIES STRIP (Why customers come) ─────────── */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .industries-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile-bg {
  transform: scale(1.1);
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.1) 0%, rgba(7, 36, 46, 0.92) 100%);
  transition: background 0.3s;
}

.industry-tile:hover::before {
  background: linear-gradient(180deg, rgba(3, 188, 208, 0.4) 0%, rgba(7, 36, 46, 0.92) 100%);
}

.industry-tile-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  z-index: 2;
}

.industry-tile-label small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.industry-tile-label h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

/* ─────────── WHY US / FAQ split ─────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.why-image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1.5rem 1.7rem;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
  max-width: 280px;
}

.why-image-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.why-image-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
}

.acc-item {
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  background: var(--white);
  transition: all 0.2s;
}

.acc-item.open {
  border-color: var(--amber);
  box-shadow: 0 10px 30px -10px rgba(7, 36, 46, 0.1);
}

.acc-q {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.acc-q-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.acc-item.open .acc-q-icon {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-a {
  max-height: 320px;
}

.acc-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─────────── STATS COUNTER BAND ─────────── */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%20800%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%0A%3Cdefs%3E%0A%3Cpattern%20id%3D%22hex2%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2256%22%20height%3D%2248%22%20patternUnits%3D%22userSpaceOnUse%22%3E%0A%3Cpath%20d%3D%22M28%202%20L52%2016%20L52%2034%20L28%2048%20L4%2034%20L4%2016%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23243049%22%20stroke-width%3D%221.2%22%2F%3E%0A%3C%2Fpattern%3E%0A%3ClinearGradient%20id%3D%22vig2%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%0A%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.05%22%2F%3E%0A%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2307242E%22%20stop-opacity%3D%220.85%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22%2307242E%22%2F%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23hex2%29%22%2F%3E%0A%3Cg%20opacity%3D%220.06%22%3E%0A%3Crect%20x%3D%22-200%22%20y%3D%22-200%22%20width%3D%22200%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3Crect%20x%3D%22220%22%20y%3D%22-200%22%20width%3D%2280%22%20height%3D%221400%22%20fill%3D%22%2303BCD0%22%20transform%3D%22skewX%28-22%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20opacity%3D%220.08%22%20transform%3D%22translate%28280%2C480%29%22%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22200%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%2214%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%22130%22%20fill%3D%22none%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%226%22%2F%3E%0A%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2260%22%20fill%3D%22%2303BCD0%22%2F%3E%0A%3Cline%20x1%3D%22-200%22%20y1%3D%220%22%20x2%3D%22200%22%20y2%3D%220%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3Cline%20x1%3D%220%22%20y1%3D%22-200%22%20x2%3D%220%22%20y2%3D%22200%22%20stroke%3D%22%2303BCD0%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fg%3E%0A%3Crect%20width%3D%221600%22%20height%3D%22800%22%20fill%3D%22url%28%23vig2%29%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  position: relative;
}

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

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat {
    border-right: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--amber);
  margin-left: 0.05em;
  vertical-align: top;
}

.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
}


/* ─────────── CLIENTS LOGO WALL ─────────── */
.clients-section {
  background: var(--white);
}

.clients-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

@media (min-width: 540px) {
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-wall {
    grid-template-columns: repeat(8, 1fr);
  }
}

.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all 0.25s ease;
  position: relative;
}

.client-cell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.client-cell:hover {
  background: var(--cream);
}

.client-cell:hover::after {
  transform: scaleX(1);
}

.client-cell img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.65;
  transition: all 0.25s ease;
}

.client-cell:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}


.product-real-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(3, 188, 208, 0.3);
}

.product-img-wrap {
  background: #FFFFFF;
}

.product-img {
  object-fit: contain !important;
  padding: 1rem;
}


/* ─────────── INDUSTRIES (BENTO LAYOUT, v8) ─────────── */
.industries-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .industries-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
    gap: 1.4rem;
  }

  .ind-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
  isolation: isolate;
}

.ind-card-featured {
  aspect-ratio: auto;
  min-height: 460px;
}

@media (max-width: 1023px) {
  .ind-card-featured {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 639px) {
  .ind-card {
    aspect-ratio: 4 / 3;
  }

  .ind-card-featured {
    aspect-ratio: 4 / 3;
  }
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.ind-card:hover .ind-bg {
  transform: scale(1.06);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 46, 0) 0%, rgba(7, 36, 46, 0.25) 35%, rgba(7, 36, 46, 0.85) 78%, rgba(7, 36, 46, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(7, 36, 46, 0.05) 0%, rgba(7, 36, 46, 0.4) 35%, rgba(7, 36, 46, 0.92) 78%, rgba(7, 36, 46, 0.98) 100%);
}

.ind-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
}

.ind-card-featured .ind-content {
  padding: 2.2rem;
}

.ind-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ind-card-featured .ind-num {
  font-size: 1.1rem;
}

.ind-bottom {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ind-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.ind-card-featured .ind-name {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .ind-card-featured .ind-name {
    font-size: 3rem;
  }
}

.ind-apps {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin-bottom: 0.9rem;
  /* Reveal on hover (or always visible on featured) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.ind-card:hover .ind-apps,
.ind-card-featured .ind-apps {
  max-height: 4.5em;
  opacity: 1;
  margin-bottom: 0.9rem;
}

.ind-card-featured .ind-apps {
  font-size: 0.9rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
}

.ind-card:hover .ind-cta {
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.ind-cta svg {
  transition: transform 0.3s ease;
}

.ind-card:hover .ind-cta svg {
  transform: translateX(4px);
}

/* CTA card (12th bento cell) */
.ind-cta-card {
  aspect-ratio: 1 / 1;
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.ind-cta-card:hover {
  background: var(--amber-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(3, 188, 208, 0.5);
}

.ind-cta-card-inner {
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ind-cta-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.7;
}

.ind-cta-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ind-cta-card-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ind-cta-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ind-cta-card:hover .ind-cta-card-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .ind-cta-card {
    aspect-ratio: 4 / 3;
  }
}

/* Hide the legacy industries-strip (we replaced its container) */
.industries-strip {
  display: none !important;
}


/* ─────────── ABOUT v10 ─────────── */
.about-v10 {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-v10 {
    padding: 4.5rem 0;
  }
}

.about-v10-gear {
  position: absolute;
  top: 0;
  right: -120px;
  width: 700px;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .about-v10-gear {
    display: none;
  }
}

.about-v10-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v10-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

/* IMAGE COLLAGE */
.about-v10-images {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-v10-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px -15px rgba(7, 36, 46, 0.35);
}

.about-v10-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-img-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border-radius: 4px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(7, 36, 46, 0.3);
}

.about-v10-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v10-badge {
  position: absolute;
  top: 28%;
  right: 0;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.55);
  border-radius: 4px;
  min-width: 140px;
}

.about-v10-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-v10-badge-num sup {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 1px;
}

.about-v10-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* CONTENT */
.about-v10-eyebrow {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  /* cyan */
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

.about-v10-eyebrow .brush {
  position: absolute;
  left: -10px;
  bottom: -8px;
  z-index: -1;
}

.about-v10-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-v10-title em {
  font-style: normal;
  color: var(--amber);
}

.about-v10-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.about-v10-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .about-v10-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.about-v10-feature {
  background: #F0F8F9;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.about-v10-feature:hover {
  background: #FFFFFF;
  box-shadow: 0 18px 40px -12px rgba(7, 36, 46, 0.18);
  transform: translateY(-3px);
}

.about-v10-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  /* cyan */
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 22px -6px rgba(3, 188, 208, 0.45);
}

.about-v10-feature h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.about-v10-feature p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
}

/* CTA pill button (matches reference's green pill but in our cyan) */
.about-v10-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 14px 30px -8px rgba(3, 188, 208, 0.45);
}

.about-v10-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -10px rgba(3, 188, 208, 0.55);
}

.about-v10-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-v10-cta>span:first-child {
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-v10-cta-icon {
  width: 56px;
  background: var(--navy);
  color: var(--amber);
  transition: background 0.2s ease;
}

.about-v10-cta:hover .about-v10-cta-icon {
  background: #03A0B0;
}

/* Hide the legacy about section */
.section.about,
.section.section-bg-off#about {
  display: none !important;
}


/* ─────────── WHY US v12 (editorial timeline) ─────────── */
.why-v12 {
  position: relative;
  background: var(--navy);
  color: #FFFFFF;
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .why-v12 {
    padding: 4.5rem 0 5rem;
  }
}

/* Background pattern */
.why-v12-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.why-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-v12-glow-tl {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.08) 0%, transparent 60%);
}

.why-v12-glow-br {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.06) 0%, transparent 60%);
}

.why-v12 .container {
  position: relative;
  z-index: 2;
}

.why-v12-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-v12-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }
}

/* LEFT: sticky intro */
.why-v12-intro {
  position: relative;
}

@media (min-width: 1024px) {
  .why-v12-intro {
    position: sticky;
    top: 120px;
  }
}

.why-v12-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.why-v12-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.why-v12-eyebrow-light {
  color: var(--amber);
}

.why-v12-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.why-v12-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.why-v12-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.why-v12-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Hero stat card */
.why-v12-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: rgba(3, 188, 208, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.25);
  border-radius: 4px;
  max-width: 480px;
  overflow: hidden;
}

.why-v12-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.why-v12-stat-pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0);
    transform: scale(1.2);
  }
}

.why-v12-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-v12-stat-num span {
  font-size: 0.55em;
  margin-left: 1px;
}

.why-v12-stat-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-v12-stat-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-v12-stat-label span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* RIGHT: numbered timeline */
.why-v12-list {
  position: relative;
}

/* The vertical timeline rail */
.why-v12-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(3, 188, 208, 0.05) 0%,
      rgba(3, 188, 208, 0.4) 20%,
      rgba(3, 188, 208, 0.4) 80%,
      rgba(3, 188, 208, 0.05) 100%);
  z-index: 0;
}

@media (min-width: 540px) {
  .why-v12-list::before {
    left: 36px;
  }
}

.why-v12-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  transition: transform 0.3s ease;
}

@media (min-width: 540px) {
  .why-v12-item {
    grid-template-columns: 80px 1fr;
    gap: 1.6rem;
  }
}

.why-v12-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-v12-item:hover {
  transform: translateX(4px);
}

.why-v12-item:hover .why-v12-num {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.why-v12-item:hover .why-v12-num span {
  color: var(--navy);
}

.why-v12-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(3, 188, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  z-index: 1;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 540px) {
  .why-v12-num {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
}

.why-v12-num span {
  font-style: italic;
  transition: color 0.25s ease;
}

.why-v12-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

@media (min-width: 540px) {
  .why-v12-body h3 {
    font-size: 1.45rem;
  }
}

.why-v12-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.why-v12-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.why-v12-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-v12-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ block at the bottom */
.why-v12-faq-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .why-v12-faq-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.why-v12-faq-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-v12-faq-head {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.why-v12-faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.why-v12-faq-title em {
  font-style: normal;
  color: var(--amber);
}

.why-v12-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .why-v12-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

.why-v12-faq-item {
  padding: 1.5rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
  border-left: 3px solid rgba(3, 188, 208, 0.4);
}

.why-v12-faq-item:hover {
  background: rgba(3, 188, 208, 0.05);
  border-left-color: var(--amber);
  transform: translateY(-2px);
}

.why-v12-faq-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.why-v12-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide the legacy why-us section */
.section.section-bg-cream#why-us:not(.why-v12) {
  display: none !important;
}



/* Real product photos in footer — center-crop them */
.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* ─────────── CONTACT MAP BLOCK (v14) ─────────── */
/* Section keeps its navy background (form contrast) */
.contact-v13 {
  position: relative;
  isolation: isolate;
}

/* The new visible map block sits inside the container, after the form row */
.contact-map-section {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .contact-map-section {
    margin-top: 3rem;
  }
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  background: var(--navy);
  border: 1px solid rgba(3, 188, 208, 0.2);
}

@media (max-width: 1023px) {
  .contact-map-wrapper {
    height: 540px;
  }
}

@media (max-width: 639px) {
  .contact-map-wrapper {
    height: 720px;
  }
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Subtle desaturation so the map sits well in the page tone, but
       remains clearly recognizable as a map */
  filter: saturate(0.85) contrast(1.02);
}

/* Floating "Visit Our Office" address card */
.contact-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: 4px;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  border-top: 4px solid var(--amber);
  /* cyan accent */
}

@media (max-width: 639px) {
  .contact-map-card {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 1.3rem 1.4rem 1.4rem;
  }
}

.contact-map-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  /* cyan */
  margin-bottom: 0.85rem;
}

.contact-map-card-tag svg {
  flex-shrink: 0;
  color: var(--amber);
}

.contact-map-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.contact-map-card-address {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 1rem;
}

.contact-map-card-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-map-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.18s ease;
}

.contact-map-card-phone svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-map-card-phone:hover {
  color: var(--amber);
}

.contact-map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  /* cyan */
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.contact-map-card-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(3, 188, 208, 0.5);
}

.contact-map-card-cta svg {
  transition: transform 0.2s ease;
}

.contact-map-card-cta:hover svg {
  transform: translateX(3px);
}

/* Pulsing pin marker — decorative ring on the map indicating our location */
.contact-map-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7);
  animation: mapPinPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  /* Hide on mobile where the address card covers center */
  display: none;
}

@media (min-width: 768px) {
  .contact-map-wrapper::after {
    display: block;
    top: 50%;
    left: 65%;
  }
}

@keyframes mapPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0.7),
      0 0 0 0 rgba(3, 188, 208, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(3, 188, 208, 0),
      0 0 0 28px rgba(3, 188, 208, 0);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 188, 208, 0),
      0 0 0 0 rgba(3, 188, 208, 0);
    transform: scale(1);
  }
}


/* ─────────── TESTIMONIALS ─────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
}

.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ─────────── AI FINDER ─────────── */
.ai-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.ai-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 540px) {
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-features li .ti {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ai-chat {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.ai-chat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-title-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-title-icon .ti {
  font-size: 1.1rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.msg {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
}

.msg-bot {
  color: rgba(255, 255, 255, 0.9);
}

.msg-user {
  justify-content: flex-end;
}

.msg-bubble {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 85%;
  border-radius: 4px 4px 4px 0;
}

.msg-user .msg-bubble {
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px 4px 0 4px;
  font-weight: 500;
}

.ai-rec {
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 188, 208, 0.12);
  border-left: 3px solid var(--amber);
  font-size: 0.88rem;
  color: var(--white);
}

.ai-rec strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

/* ─────────── CONTACT / CTA ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .ti {
  font-size: 1.4rem;
}

.contact-card-text small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-top: 0.15rem;
}

.form-block {
  background: var(--white);
  padding: 2.5rem;
  border-top: 6px solid var(--amber);
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.15);
}

.form-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.form-block>p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 540px) {
  .form-row.r2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: all 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 188, 208, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-block .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─────────── BOTTOM FEATURE BAND ─────────── */
.bottom-band {
  background: var(--amber);
  color: var(--navy);
  padding: 0;
}

.bottom-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .bottom-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cell {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid rgba(7, 36, 46, 0.15);
}

.bb-cell:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .bb-cell {
    border-right: none;
    border-bottom: 1px solid rgba(7, 36, 46, 0.15);
  }

  .bb-cell:last-child {
    border-bottom: none;
  }
}

.bb-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.bb-icon .ti {
  font-size: 1.5rem;
}

.bb-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.bb-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo img {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-tag {
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--amber);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
  transition: transform 0.15s;
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-list a:hover::before {
  transform: translateX(3px);
}

.footer-recent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-recent-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-img {
  width: 64px;
  height: 64px;
  background: var(--navy-2);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-recent-content small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-recent-content a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.25;
  transition: color 0.15s;
}

.footer-recent-content a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(3, 188, 208, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-contact-icon .ti {
  font-size: 1rem;
}

.footer-contact small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.footer-contact strong,
.footer-contact a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .ti {
  font-size: 1.85rem;
}

/* Mockup banner */
.mockup-banner {
  background: var(--navy);
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--amber);
}

/* ─────────── HERO SLIDER (v9) ─────────── */
.hero-slider {
  position: relative;
  height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero-slider {
    height: 640px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding-bottom: 70px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 36, 46, 0.94) 0%, rgba(7, 36, 46, 0.76) 45%, rgba(7, 36, 46, 0.45) 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 25%;
  width: 380px;
  height: 380px;
  border: 28px solid var(--amber);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.hero-slide-content {
  max-width: 920px;
  padding: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 3rem 0 4rem;
  }
}

/* Animated reveal of content on the active slide */
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .lead,
.hero-slide .hero-ctas {
  opacity: 0;
}

.hero-slide.active .hero-tag {
  animation: heroFadeUp 0.85s ease 0.25s forwards;
}

.hero-slide.active .hero-headline {
  animation: heroFadeUp 0.95s ease 0.45s forwards;
}

.hero-slide.active .lead {
  animation: heroFadeUp 0.85s ease 0.75s forwards;
}

.hero-slide.active .hero-ctas {
  animation: heroFadeUp 0.85s ease 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Re-use existing hero-tag, hero-headline, lead, hero-ctas, hero-callout styles
     from earlier sections — they target .hero-slide content correctly because
     the class names are reused. */
.hero-slide .hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide .hero-headline .accent {
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.hero-slide .hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--amber);
  opacity: 0.5;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  background: rgba(7, 36, 46, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 0.6rem;
  }

  .hero-arrow-next {
    right: 0.6rem;
  }
}

/* Bottom tab navigation */
.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(7, 36, 46, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 188, 208, 0.2);
}

.hero-tabs-container {
  display: flex;
  padding: 0 !important;
}

.hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tab.active {
  color: var(--white);
  background: rgba(3, 188, 208, 0.06);
}

.hero-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: none;
}

.hero-tab.active .hero-tab-progress {
  animation: tabProgress 6s linear forwards;
}

.hero-tab.paused.active .hero-tab-progress {
  animation-play-state: paused;
}

@keyframes tabProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-tab {
    padding: 0.85rem 0.6rem 1rem;
  }

  .hero-tab-label {
    font-size: 0.7rem;
  }

  .hero-tab-num {
    font-size: 0.62rem;
  }
}

/* Hide the legacy hero / hero-dots / ticker that came before */
.hero,
.hero-dots {
  display: none !important;
}





/* HERO */
.au-hero {
  background: var(--navy);
  color: #FFFFFF;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 1023px) {
  .au-hero {
    padding: 3.5rem 0 3rem;
  }
}

.au-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: 0;
  pointer-events: none;
}

.au-hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 188, 208, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.au-hero .container {
  position: relative;
  z-index: 2;
}

.au-hero-crumb {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.1rem;
}

.au-hero-crumb a {
  color: var(--amber);
}

.au-hero-crumb .sep {
  opacity: 0.4;
  margin: 0 0.4rem;
}

.au-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.3rem;
}

.au-hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.au-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
  color: #FFFFFF;
  max-width: 880px;
}

.au-hero-title em {
  font-style: italic;
  color: var(--amber);
  position: relative;
  display: inline-block;
}

.au-hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 8px;
  background: var(--amber);
  opacity: 0.18;
  z-index: -1;
}

.au-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0;
}

/* SECTION shared */
.au-section {
  padding: 5rem 0;
}

@media (max-width: 1023px) {
  .au-section {
    padding: 3.5rem 0;
  }
}

.au-section-cream {
  background: var(--cream);
}

.au-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.au-section-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.au-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.au-section-title em {
  font-style: italic;
  color: var(--amber);
}

/* OUR STORY — two-column */
.au-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .au-story-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.au-story-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin: 0 0 1.2rem;
}

.au-story-body p strong {
  color: var(--navy);
  font-weight: 700;
}

.au-story-body p:last-child {
  margin-bottom: 0;
}

.au-story-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.au-story-photo-frame {
  background: linear-gradient(135deg, #0F2F3D, var(--navy));
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  padding: 2rem;
}

.au-story-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 188, 208, 0.1) 1px, transparent 0);
  background-size: 28px 28px;
  z-index: 0;
}

.au-story-photo-inner {
  position: relative;
  z-index: 2;
  border: 2px dashed rgba(3, 188, 208, 0.4);
  padding: 2.5rem 1.5rem;
  border-radius: 4px;
  width: 100%;
}

.au-story-photo-inner svg {
  color: var(--amber);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.au-story-photo-inner-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.au-story-photo-inner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.au-story-badge {
  position: absolute;
  bottom: -22px;
  left: -12px;
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 1.1rem;
  border-radius: 4px;
  box-shadow: 0 18px 36px -10px rgba(3, 188, 208, 0.5);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
}

.au-story-badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.au-story-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* STATS strip */
.au-stats {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4rem 0;
}

.au-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .au-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

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

.au-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.au-stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* CEO message */
.au-ceo {
  background: var(--white);
}

.au-ceo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .au-ceo-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}

.au-ceo-photo-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.au-ceo-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(7, 36, 46, 0.3);
  position: relative;
}

.au-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.au-ceo-photo::before,
.au-ceo-photo::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid var(--amber);
  z-index: 3;
  pointer-events: none;
}

.au-ceo-photo::before {
  top: -12px;
  left: -12px;
  border-right: none;
  border-bottom: none;
}

.au-ceo-photo::after {
  bottom: -12px;
  right: -12px;
  border-left: none;
  border-top: none;
}

.au-ceo-quote {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.8rem;
}

.au-ceo-quote::before {
  content: '\201C';
  position: absolute;
  left: -0.1rem;
  top: -1.6rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 6rem;
  color: var(--amber);
  line-height: 1;
  opacity: 0.5;
}

.au-ceo-quote p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy);
  margin: 0 0 1rem;
}

.au-ceo-quote p:last-child {
  margin-bottom: 0;
}

.au-ceo-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.au-ceo-byline-line {
  width: 36px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.au-ceo-byline-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.au-ceo-byline-title {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.15rem;
}

/* VALUES — 4-card grid */
.au-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .au-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.au-value-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 1.8rem 1.6rem 1.7rem;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.au-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.au-value-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -16px rgba(3, 188, 208, 0.22);
}

.au-value-card:hover::before {
  transform: scaleX(1);
}

.au-value-icon {
  width: 52px;
  height: 52px;
  background: rgba(3, 188, 208, 0.1);
  color: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  transition: all 0.25s ease;
}

.au-value-card:hover .au-value-icon {
  background: var(--amber);
  color: var(--navy);
  transform: scale(1.06);
}

.au-value-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.au-value-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.au-value-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

/* AUTHORIZED partner strip */
.au-partner {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.au-partner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .au-partner-inner {
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: 2.5rem;
  }
}

.au-partner-seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 18px 36px -12px rgba(7, 36, 46, 0.3);
}

.au-partner-seal::before,
.au-partner-seal::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(3, 188, 208, 0.4);
}

.au-partner-seal::before {
  inset: 6px;
}

.au-partner-seal::after {
  inset: 14px;
  border-style: dashed;
}

.au-partner-seal svg {
  z-index: 2;
}

.au-partner-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.au-partner-text h3 em {
  font-style: italic;
  color: var(--amber);
}

.au-partner-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
  max-width: 640px;
}

/* CTA band */
.au-cta {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.au-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49.5%, rgba(3, 188, 208, 0.04) 49.5%, rgba(3, 188, 208, 0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
}

.au-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .au-cta-grid {
    grid-template-columns: 1.4fr auto;
    gap: 3rem;
  }
}

.au-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.au-cta h2 em {
  font-style: italic;
  color: var(--amber);
}

.au-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.au-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ═══════════════════════════════════════════════════
   OUR CLIENTS — OWL CAROUSEL
═══════════════════════════════════════════════════ */
.our-clients-section {
  background: var(--navy, #07242E);
  position: relative;
  overflow: hidden;
}

.our-clients-section .section-watermark {
  color: rgba(3, 188, 208, 0.06);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  position: absolute;
  white-space: nowrap;
}

.our-clients-section .eyebrow {
  color: var(--cyan, #03BCD0);
}

.our-clients-section .section-title {
  color: #fff;
}

.our-clients-section .section-title em {
  color: var(--amber, #F5C842);
  font-style: italic;
}

.our-clients-section .section-intro {
  color: rgba(255, 255, 255, 0.65);
}

/* Carousel wrapper */
.our-clients-carousel-wrap {
  margin-top: 2.5rem;
  position: relative;
}

/* Each logo card */
.our-client-item {
  padding: 0 0.75rem;
}

.our-client-logo-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(3, 188, 208, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  padding: 1.2rem 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.our-client-logo-box:hover {
  background: rgba(3, 188, 208, 0.12);
  border-color: rgba(3, 188, 208, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(3, 188, 208, 0.18);
}

.our-client-logo-box img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(30%) brightness(1.05);
  transition: filter 0.3s ease;
}

.our-client-logo-box:hover img {
  filter: grayscale(0%) brightness(1.1);
}

/* Owl Carousel — custom nav buttons */
.our-clients-section .owl-nav {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.our-clients-section .owl-nav button {
  background: rgba(3, 188, 208, 0.12) !important;
  border: 1px solid rgba(3, 188, 208, 0.35) !important;
  border-radius: 50% !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.25s, border-color 0.25s, transform 0.2s !important;
  outline: none !important;
}

.our-clients-section .owl-nav button:hover {
  background: rgba(3, 188, 208, 0.3) !important;
  border-color: var(--cyan, #03BCD0) !important;
  transform: scale(1.08) !important;
}

.our-clients-nav-btn,
.our-clients-section .owl-nav button span,
.our-clients-section .owl-prev span,
.our-clients-section .owl-next span {
  color: var(--cyan, #03BCD0) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

/* Owl Carousel — dots */
.our-clients-section .owl-dots {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.our-clients-section .owl-dot span {
  background: rgba(3, 188, 208, 0.25) !important;
  border-radius: 50% !important;
  width: 8px !important;
  height: 8px !important;
  display: block !important;
  transition: background 0.25s, transform 0.2s !important;
}

.our-clients-section .owl-dot.active span {
  background: var(--cyan, #03BCD0) !important;
  transform: scale(1.3) !important;
}


.owl-dots .owl-dot {
  display: none !important;
}