/* Homepage — layout (colors from logo via style.css variables) */
.page-home {
  font-family: var(--font-sans);
  color: var(--color-text);
}

/* ========== Upper section — Opticeye style (home only) ========== */
.home-upper {
  position: relative;
  background: var(--color-bg-alt);
  overflow: visible;
}

/* Dark top bar (logo black) — scrolls away; not sticky */
.oe-topbar {
  background: var(--color-surface-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
}

.oe-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  min-height: 42px;
  padding-block: 0.45rem;
}

.oe-topbar-left,
.oe-topbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.oe-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}

.oe-topbar a.oe-topbar-item:hover {
  color: #fff;
  text-decoration: none;
}

.oe-topbar-icon {
  opacity: 0.85;
}

.oe-topbar-right .topbar-social {
  gap: 0.45rem;
}

/* White header + menu — sticky via .main-nav-sticky in style.css */
.oe-header {
  background: #fff;
  border-bottom: 1px solid rgba(245, 130, 32, 0.1);
  box-shadow: 0 2px 16px rgba(245, 130, 32, 0.04);
}

.page-home .oe-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.12);
}

.oe-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.page-home .oe-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.page-home .nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .nav-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.page-home .nav-menu a:hover,
.page-home .nav-menu a.active {
  color: var(--oe-teal);
}

.page-home .nav-menu .nav-btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  background: var(--oe-teal);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245, 130, 32, 0.3);
}

.page-home .nav-menu .nav-btn-book:hover {
  background: var(--oe-teal-dark);
  color: #fff !important;
}

.page-home .menu-toggle--banner {
  background: var(--oe-teal-light);
  border-color: rgba(245, 130, 32, 0.2);
  color: var(--oe-teal-dark);
}

/* Hero — light split layout */
.oe-hero {
  position: relative;
  padding: 3rem 0 0;
  min-height: min(75vh, 620px);
  overflow: hidden;
}

.oe-hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(rgba(245, 130, 32, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.oe-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.oe-hero-shape-1 {
  width: 320px;
  height: 320px;
  background: rgba(245, 130, 32, 0.08);
  top: -80px;
  right: 8%;
}

.oe-hero-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(245, 130, 32, 0.1);
  bottom: 15%;
  left: 5%;
}

.oe-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 4rem;
}

.oe-hero-inner > * {
  min-width: 0;
}

.oe-hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--oe-teal);
  margin-bottom: 1rem;
}

.oe-hero-content h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.oe-hero-highlight {
  display: block;
  color: var(--oe-teal);
  margin-top: 0.1em;
}

.oe-hero-text {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 520px;
}

.oe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.page-home .oe-btn-main {
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
}

.page-home .oe-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--oe-teal);
  color: var(--oe-teal-dark);
  background: transparent;
  text-decoration: none;
}

.page-home .oe-btn-secondary:hover {
  background: var(--oe-teal-light);
  text-decoration: none;
}

.oe-hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.oe-hero-checklist li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding-left: 1.35rem;
  position: relative;
}

.oe-hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--oe-teal);
  font-weight: 700;
}

/* Hero image + floating cards */
.oe-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.oe-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.12), 0 0 0 1px rgba(245, 130, 32, 0.15);
  background: linear-gradient(145deg, var(--color-brand-charcoal) 0%, #2d2d2d 100%);
}

.oe-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

.oe-hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  max-width: calc(100% - 1rem);
  background: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.2);
}

.oe-hero-float-card:not(.oe-hero-float-card-2) {
  bottom: 12%;
  left: 0;
  transform: translateX(-8%);
  animation: hero-float-a 4s ease-in-out infinite;
}

.oe-hero-float-card-2 {
  top: 16%;
  right: 0;
  left: auto;
  bottom: auto;
  transform: translateX(8%);
  animation: hero-float-b 4s ease-in-out infinite 1.5s;
}

.oe-float-icon {
  width: 44px;
  height: 44px;
  background: var(--oe-teal-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.oe-hero-float-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--oe-teal-dark);
  line-height: 1.2;
}

.oe-hero-float-card span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.oe-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.oe-hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Legacy banner (unused) */
.banner-slider {
  display: none;
}

.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: min(88vh, 680px);
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  background: var(--slide-image) center/cover no-repeat;
}

.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 42%, rgba(255, 255, 255, 0.15) 68%, transparent 85%);
  z-index: 0;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.banner-slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 11rem 4rem;
  min-height: min(88vh, 680px);
}

.banner-slide-content {
  color: var(--color-heading);
  text-shadow: none;
}

.page-home .hero-badge {
  background: var(--oe-teal-light);
  border-color: rgba(245, 130, 32, 0.35);
  color: var(--oe-teal-dark);
}

.page-home .hero-badge::before {
  background: var(--oe-teal);
  box-shadow: 0 0 10px var(--oe-teal);
}

.page-home .banner-slide-content h1 .highlight {
  color: var(--oe-teal);
}

.page-home .banner-slide-content .hero-lead {
  color: var(--color-text-muted);
  opacity: 1;
}

/* Hero image frame (Opticeye-style) */
.hero-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(245, 130, 32, 0.18);
  border: 6px solid #fff;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: var(--oe-teal);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.page-home .btn-primary {
  background: var(--oe-teal);
  border-color: var(--oe-teal);
  color: #fff;
}

.page-home .btn-primary:hover {
  background: var(--oe-teal-dark);
  border-color: var(--oe-teal-dark);
}

.page-home .btn-outline {
  color: var(--color-heading);
  border-color: var(--oe-teal);
  background: transparent;
}

.page-home .btn-outline:hover {
  background: var(--oe-teal-light);
  color: var(--oe-teal-dark);
}

.page-home .hero-trust {
  border-top-color: rgba(245, 130, 32, 0.2);
}

.page-home .hero-trust span {
  color: var(--color-text-muted);
  opacity: 1;
}

.page-home .hero-trust svg {
  color: var(--oe-teal);
}

.banner-slide-visual {
  display: flex;
  justify-content: center;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 130, 32, 0.2);
  background: #fff;
  color: var(--oe-teal-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-accent);
}

.banner-prev { left: 1rem; }
.banner-next { right: 1rem; }

.banner-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.banner-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(245, 130, 32, 0.4);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.banner-dots button.is-active {
  background: var(--oe-teal);
  border-color: var(--oe-teal);
  transform: scale(1.2);
}

.banner-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-bg-alt), transparent);
  pointer-events: none;
  z-index: 2;
}

.banner-slide--2 {
  --slide-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80&auto=format&fit=crop");
}

.banner-slide--3 {
  --slide-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80&auto=format&fit=crop");
}

.banner-slide--1 {
  --slide-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80&auto=format&fit=crop");
}

.banner-slide-inner,
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--oe-teal-light);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-accent);
}

.banner-slide-content h1,
.hero-home h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.banner-slide-content h1 .highlight,
.hero-home h1 .highlight {
  color: var(--color-accent);
  display: block;
  margin-top: 0.15em;
}

.banner-slide-content .hero-lead,
.hero-home .hero-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 540px;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.hero-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-light));
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.3);
}

.hero-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.hero-card p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-list li:last-child {
  border-bottom: none;
}

.hero-card-list li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
}

.hero-float {
  position: absolute;
  background: #fff;
  color: var(--color-heading);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
  top: -12px;
  right: -8px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20%;
  left: -24px;
  animation-delay: 1.2s;
}

.hero-float-3 {
  bottom: -8px;
  right: 10%;
  animation-delay: 2.4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hero-float-a {
  0%, 100% { transform: translateX(-8%) translateY(0); }
  50% { transform: translateX(-8%) translateY(-8px); }
}

@keyframes hero-float-b {
  0%, 100% { transform: translateX(8%) translateY(0); }
  50% { transform: translateX(8%) translateY(-8px); }
}

/* Features bar (Opticeye-style trust row) */
.oe-features-bar {
  background: var(--oe-teal);
  padding: 1.25rem 0;
}

.oe-features-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.oe-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.oe-feature-icon {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

/* Stats */
.page-home .stats {
  margin-top: 0;
  padding: 4rem 0;
  background: var(--color-bg-alt);
  position: relative;
  z-index: 5;
}

.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

.page-home .stat-item {
  padding: 2rem 1.5rem;
  border: none;
  border-right: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(245, 130, 32, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.page-home .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(245, 130, 32, 0.12);
}

.page-home .stat-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  width: 56px;
  height: 56px;
  background: var(--oe-teal-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.page-home .stat-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--oe-teal-dark);
}

/* Trust strip */
.trust-strip {
  background: var(--color-surface-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-strip strong {
  color: var(--color-accent-soft);
  font-weight: 700;
}

/* Services preview */
.services-preview {
  background: var(--color-bg);
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-preview-card {
  position: relative;
  padding: 1.75rem;
  background: var(--color-bg-alt);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}

.service-preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.25s;
}

.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  text-decoration: none;
}

.service-preview-card:hover::before {
  transform: scaleY(1);
}

.service-preview-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-preview-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-heading);
}

.service-preview-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.service-preview-card .link-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* How it works */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.how-step {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}

.how-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(245, 130, 32, 0.3);
}

.how-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-heading);
}

.how-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Inspector teaser */
.inspector-teaser {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--oe-teal-light) 100%);
}

.inspector-teaser-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.inspector-avatar {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.inspector-teaser h2 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  color: var(--color-heading);
}

.inspector-teaser .role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.inspector-teaser .bio {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-surface-dark) 0%, var(--color-brand-charcoal) 50%, var(--color-primary) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12), transparent 50%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.cta-banner p {
  margin: 0 auto 1.75rem;
  max-width: 520px;
  opacity: 0.9;
  font-size: 1.05rem;
}

.cta-banner .hero-actions {
  justify-content: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--oe-teal);
  margin-bottom: 0.5rem;
}

.page-home .section-header h2 {
  color: var(--color-heading);
}

.page-home .service-preview-card {
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 6px 24px rgba(245, 130, 32, 0.06);
}

.page-home .service-preview-card::before {
  background: var(--oe-teal);
}

.page-home .service-preview-card .icon {
  width: 64px;
  height: 64px;
  background: var(--oe-teal-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.page-home .service-preview-card .link-arrow {
  color: var(--oe-teal);
}

.page-home .how-step-num {
  background: linear-gradient(145deg, var(--oe-teal), var(--oe-teal-dark));
}

.page-home .inspector-teaser {
  background: var(--oe-teal-light);
}

.page-home .inspector-teaser-grid {
  border-radius: 20px;
  border: none;
}

.page-home .inspector-avatar {
  background: linear-gradient(145deg, var(--oe-teal), var(--oe-teal-dark));
}

.page-home .inspector-teaser .role {
  color: var(--oe-teal);
}

.page-home .value-icon {
  background: var(--oe-teal-light);
}

.page-home .value-card {
  border-radius: 16px;
}

.page-home .testimonial-card {
  border-radius: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.page-home .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .cta-banner {
  background: linear-gradient(135deg, var(--color-surface-dark) 0%, var(--color-brand-charcoal) 45%, var(--color-primary) 100%);
}

.page-home .cta-banner::before {
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.12), transparent 50%);
}

@media (max-width: 1100px) {
  .page-home .oe-nav {
    display: none;
  }

  .page-home .menu-toggle--banner {
    display: flex;
  }
}

@media (max-width: 960px) {
  .oe-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .oe-hero-text {
    margin-inline: auto;
  }

  .oe-hero-actions,
  .oe-hero-checklist {
    justify-content: center;
  }

  .oe-hero-checklist {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .oe-hero-media {
    order: -1;
  }

  .oe-hero-float-card,
  .oe-hero-float-card-2 {
    display: none;
  }

  .oe-topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .oe-topbar-left,
  .oe-topbar-right {
    justify-content: center;
  }

  .banner-slide-content .hero-lead,
  .hero-home .hero-lead {
    margin-inline: auto;
  }

  .banner-slide-visual {
    order: -1;
  }

  .banner-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .banner-prev { left: 0.5rem; }
  .banner-next { right: 0.5rem; }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-trust {
    border-top: none;
    padding-top: 0;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 360px;
  }

  .hero-float {
    display: none;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .service-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-home .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .page-home .stat-item:last-child {
    border-bottom: none;
  }

  .inspector-teaser-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .inspector-avatar {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .service-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .page-home .stats {
    margin-top: -2rem;
  }
}
