/* DishaFiber — premium ISP / SaaS-grade theme (mobile-first) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #0b3c5d;
  --navy: #071a2f;
  --accent: #ff7a00;
  --ocean-950: #071a2f;
  --ocean-900: #0b3c5d;
  --ocean-800: #0c4b6e;
  --ocean-600: #1a6a94;
  --ocean-500: #2a7fb0;
  --ocean-400: #5cb3e0;
  --accent-600: #e86800;
  --accent-500: #ff7a00;
  --accent-400: #ff9c40;
  --cream: #fffbeb;
  --white: #ffffff;
  --muted: #5c6b7a;
  --text: #0f172a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 22px 60px rgba(7, 26, 47, 0.14);
  --shadow-sm: 0 10px 30px rgba(7, 26, 47, 0.08);
  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --gradient-hero: linear-gradient(135deg, #0b3c5d 0%, #071a2f 55%, #0a2740 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.99));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --photo-overlay: linear-gradient(rgba(7, 26, 47, 0.3), rgba(11, 60, 93, 0.3));
  --photo-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  --card-shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text);
  background: linear-gradient(180deg, #e8f4fc 0%, #f5f9fc 38%, #ffffff 100%);
  min-height: 100vh;
  padding-bottom: 0;
  overflow-x: hidden;
}

@media (max-width: 959px) {
  body {
    padding-bottom: 64px;
  }
}

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

a {
  color: var(--ocean-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-600);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ocean-900);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 8px;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: min(200px, 42vw);
  height: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav-menu {
  position: fixed;
  inset: 0 0 auto 0;
  top: 58px;
  background: var(--white);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  padding: 1rem 1.25rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  color: var(--ocean-900);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent-600);
}

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

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-cta {
    display: flex;
  }
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > button {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
  font-weight: 600;
  border: 0;
  background: transparent;
  color: var(--ocean-900);
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.has-dropdown > button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

@media (min-width: 960px) {
  .has-dropdown > button {
    width: auto;
  }
}

.dropdown-panel {
  display: none;
  flex-direction: column;
  padding: 0.35rem 0 0.35rem 0.75rem;
  border-left: 2px solid var(--ocean-400);
  margin: 0.25rem 0 0.5rem;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  display: flex;
}

.has-dropdown .dropdown-panel.is-open {
  display: flex;
}

@media (max-width: 959px) {
  .has-dropdown:hover .dropdown-panel,
  .has-dropdown:focus-within .dropdown-panel {
    display: none;
  }
  .has-dropdown .dropdown-panel.is-open {
    display: flex;
  }
}

@media (min-width: 960px) {
  .dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    margin: 0;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 0;
  }
}

.dropdown-panel a {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff8a14 0%, var(--accent) 45%, #e86800 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(255, 122, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), filter 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(255, 122, 0, 0.55), 0 0 24px rgba(255, 122, 0, 0.35);
  color: var(--white);
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-secondary {
  background: var(--white);
  color: var(--ocean-900);
  border: 2px solid rgba(14, 165, 233, 0.35);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--ocean-500);
  color: var(--ocean-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 0.95rem 1.65rem;
  font-size: 1.05rem;
}

/* Hero — premium full-bleed */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: clamp(4.25rem, 11vw, 6.75rem) 0 clamp(3.75rem, 9vw, 5.5rem);
  background: var(--navy);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../assets/photos/neighborhood-aerial.png");
  background-size: cover;
  background-position: center 40%;
  filter: blur(6px);
  transform: scale(1.08);
  opacity: 0.55;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(11, 60, 93, 0.94) 0%,
    rgba(7, 26, 47, 0.9) 42%,
    rgba(7, 26, 47, 0.78) 100%
  ),
    radial-gradient(ellipse 90% 70% at 80% 10%, rgba(255, 122, 0, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
}

.hero__content {
  max-width: 38rem;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badge--install {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  background: rgba(255, 122, 0, 0.18);
  border-color: rgba(255, 186, 120, 0.45);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.hero-trust strong {
  color: #fff;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.05rem, 5.2vw, 3.35rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  opacity: 0.94;
  max-width: 40ch;
  margin: 0 0 1.5rem;
  font-weight: 400;
  line-height: 1.55;
}

.hero-subline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.hero-subline span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.btn-glow {
  box-shadow: 0 10px 40px rgba(255, 122, 0, 0.55), 0 0 48px rgba(255, 122, 0, 0.32), 0 0 80px rgba(255, 140, 0, 0.18) !important;
  animation: pulse-glow 3.5s ease-in-out infinite;
}

.btn-hero-cta {
  min-height: 3.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn-glow {
    animation: none;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 10px 38px rgba(255, 122, 0, 0.5), 0 0 44px rgba(255, 122, 0, 0.28), 0 0 72px rgba(255, 140, 0, 0.14);
  }
  50% {
    box-shadow: 0 14px 48px rgba(255, 122, 0, 0.62), 0 0 60px rgba(255, 122, 0, 0.38), 0 0 96px rgba(255, 140, 0, 0.22);
  }
}

.hero-animate .hero-badge-row,
.hero-animate .hero-trust,
.hero-animate h1,
.hero-animate .hero-lead,
.hero-animate .hero-subline,
.hero-animate .hero-actions {
  opacity: 0;
  animation: hero-rise 0.75s var(--ease-out) forwards;
}

.hero-animate .hero-badge-row {
  animation-delay: 0.06s;
}
.hero-animate h1 {
  animation-delay: 0.12s;
}
.hero-animate .hero-lead {
  animation-delay: 0.18s;
}
.hero-animate .hero-subline {
  animation-delay: 0.22s;
}
.hero-animate .hero-actions {
  animation-delay: 0.28s;
}
.hero-animate .hero-trust {
  animation-delay: 0.36s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate .hero-badge-row,
  .hero-animate .hero-trust,
  .hero-animate h1,
  .hero-animate .hero-lead,
  .hero-animate .hero-subline,
  .hero-animate .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--photo-shadow), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--photo-overlay), linear-gradient(180deg, transparent 35%, rgba(7, 26, 47, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-visual:hover {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.14);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ocean-600);
  margin: 0 0 0.5rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}

.section--plans .section-head h2 {
  font-size: clamp(1.85rem, 3.9vw, 2.55rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* Cards grid */
.grid-3 {
  display: grid;
  gap: 1.25rem;
}

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

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.35);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(249, 115, 22, 0.12));
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Plans */
.plan-card {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  border-color: rgba(255, 122, 0, 0.55);
  background: linear-gradient(160deg, #fff7ed 0%, #ffffff 55%);
}

/* Glass plans (homepage / dark band) */
.section--plans {
  background: linear-gradient(180deg, #071a2f 0%, #0b3c5d 42%, #082a45 100%);
  position: relative;
}

.section--plans .section-kicker {
  color: rgba(255, 255, 255, 0.55);
}

.section--plans .section-head h2 {
  color: #fff;
}

.section--plans .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-card--glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: var(--card-shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.plan-card--glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28), 0 0 40px rgba(255, 122, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.plan-card--glass .plan-speed {
  color: #fff;
}

.plan-card--glass .plan-price {
  color: #ffb86b;
}

.plan-card--glass .plan-list {
  color: rgba(255, 255, 255, 0.78);
}

.plan-card--glass .plan-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-card--glass .plan-list li::before {
  color: #5dd39e;
}

.plan-card--glass .btn-primary {
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.45);
}

.plan-card--glass .btn-primary:hover {
  box-shadow: 0 10px 36px rgba(255, 122, 0, 0.55);
}

.plan-card--glass .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.plan-card--glass .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.plan-card--glass.featured {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 122, 0, 0.45);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 48px rgba(255, 122, 0, 0.15);
}

.plan-card--glass.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

@media (max-width: 719px) {
  .plan-card--glass.featured {
    transform: none;
  }
  .plan-card--glass.featured:hover {
    transform: translateY(-6px);
  }
}

.plan-row-icons {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.plan-row-icons span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
}

.section--plans .plan-footnote {
  color: rgba(255, 255, 255, 0.55) !important;
}

.plan-card--glass .plan-tag {
  z-index: 5;
}

.plan-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.plan-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-500);
  color: var(--white);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.plan-speed {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ocean-900);
  margin: 0 0 0.25rem;
  letter-spacing: -0.03em;
}

.plan-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-600);
  margin: 0 0 1rem;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.plan-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.plan-list li::before {
  content: "✓";
  color: var(--ocean-600);
  font-weight: 800;
}

/* Areas */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.area-pill {
  display: inline-flex;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.2);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ocean-900);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.area-pill:hover {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(249, 115, 22, 0.1));
  border-color: var(--accent-400);
  color: var(--accent-600);
}

/* Testimonials */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(14, 165, 233, 0.12);
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(14, 165, 233, 0.2);
  font-family: Georgia, serif;
}

.quote-text {
  margin: 0 0 1rem;
  position: relative;
  font-style: italic;
  color: var(--text);
}

.quote-author {
  font-weight: 800;
  color: var(--ocean-900);
  font-size: 0.9rem;
}

.quote-area {
  font-size: 0.85rem;
  color: var(--muted);
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(14, 165, 233, 0.12);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 800;
  color: var(--accent-600);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #050f1a 0%, var(--navy) 38%, #0b3c5d 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta p {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  max-width: 28ch;
}

@media (max-width: 640px) {
  .footer-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

.site-footer h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-400);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Lead strip */
.lead-strip {
  background: linear-gradient(90deg, rgba(11, 60, 93, 0.06), rgba(255, 122, 0, 0.08));
  border-block: 1px solid rgba(11, 60, 93, 0.08);
  padding: 1.15rem 0;
}

.lead-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lead-strip h2 {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--navy);
  font-weight: 700;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ocean-900);
  display: block;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font: inherit;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.45);
  border-color: var(--ocean-500);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Sticky conversion */
.sticky-wa {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 210;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.sticky-wa:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.sticky-wa svg {
  width: 28px;
  height: 28px;
}

.sticky-call {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 210;
}

.sticky-call .btn {
  box-shadow: 0 12px 32px rgba(7, 26, 47, 0.4);
}

@media (max-width: 959px) {
  .sticky-wa {
    bottom: 80px;
  }
  .sticky-call {
    display: none;
  }
}

/* Mobile bottom lead bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 205;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, rgba(7, 26, 47, 0.96), #071a2f);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 959px) {
  .mobile-cta-bar {
    display: flex;
  }
}

.mobile-cta-bar .btn {
  flex: 1;
  max-width: 200px;
  font-weight: 700;
  padding: 0.7rem 1rem;
}

.mobile-cta-bar .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.2);
  min-height: 280px;
  background: linear-gradient(135deg, #e0f2fe, #fff7ed);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--gradient-hero);
  color: var(--white);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  max-width: 60ch;
  opacity: 0.95;
}

/* Content prose */
.prose {
  max-width: 70ch;
}

.prose h2 {
  margin-top: 2rem;
  color: var(--ocean-900);
}

.prose p {
  color: var(--muted);
}

/* Two column feature */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.round-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* Utilities */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

/* --- Premium homepage additions --- */

.wave-divider {
  display: block;
  width: 100%;
  height: 48px;
  color: #e8f4fc;
}

.wave-divider--flip {
  transform: rotate(180deg);
  color: #f5f9fc;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.15s;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.2s;
}
.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > *,
  .reveal-stagger.is-visible > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.cta-band {
  position: relative;
  padding: clamp(2.85rem, 5.5vw, 3.75rem) 0;
  background: linear-gradient(120deg, #071a2f 0%, #0b3c5d 42%, #082a45 55%, #071a2f 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(255, 122, 0, 0.18), transparent 55%);
  pointer-events: none;
}

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

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 1.35rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7fc 100%);
  border-block: 1px solid rgba(11, 60, 93, 0.08);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1rem 0;
}

.trust-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.trust-rating span.stars {
  color: #ffb020;
  letter-spacing: 0.05em;
}

.quote-card--premium {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--card-shadow-premium);
  transition: all 0.3s ease;
}

.quote-card--premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(7, 26, 47, 0.12);
}

.area-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

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

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

.area-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.15rem 1.1rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(11, 60, 93, 0.1);
  box-shadow: 0 8px 28px rgba(7, 26, 47, 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 16px 40px rgba(7, 26, 47, 0.1), 0 0 0 1px rgba(255, 122, 0, 0.12);
  color: var(--navy);
}

.area-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.1), rgba(255, 122, 0, 0.12));
  font-size: 1.1rem;
}

.area-card__title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 0 0 0.2rem;
}

.area-card__hint {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}

.split--premium .round-img {
  position: relative;
  box-shadow: 0 24px 60px rgba(7, 26, 47, 0.15);
}

.split--premium .round-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 30%, rgba(11, 60, 93, 0.12) 100%);
  pointer-events: none;
}

.split--premium .check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.split--premium .check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(11, 60, 93, 0.06);
}

.split--premium .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3c5d, #ff7a00);
  opacity: 0.85;
}

.split--premium .check-list li::after {
  content: "✓";
  position: absolute;
  left: 0.2rem;
  top: 0.42rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
}

.split--premium .check-list li:last-child {
  border-bottom: 0;
}

.section--soft {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.grid-reviews {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.grid-reviews blockquote {
  margin: 0;
}

.quote-card--premium .quote-text {
  font-style: italic;
}

.quote-card--premium::before {
  font-size: 2.25rem;
  opacity: 0.06;
  top: 3.5rem;
}

/* ========== Homepage: image-first / ISP visual storytelling ========== */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-badges__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-badges__item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.hero-visual img {
  transition: transform 0.55s var(--ease-out);
  position: relative;
  z-index: 0;
}

.hero-visual:hover img {
  transform: scale(1.05);
}

.lead-strip--visual {
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%);
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--card-shadow-premium);
}

.lead-strip__grid {
  display: grid;
  align-items: stretch;
  min-height: 200px;
}

@media (min-width: 768px) {
  .lead-strip__grid {
    grid-template-columns: minmax(220px, 34%) 1fr;
  }

  .lead-strip__media {
    border-radius: 16px 0 0 16px;
    overflow: hidden;
  }
}

.lead-strip__media {
  position: relative;
  min-height: 180px;
}

.lead-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform 0.55s var(--ease-out);
  position: relative;
  z-index: 0;
}

.lead-strip__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--photo-overlay), linear-gradient(90deg, rgba(7, 26, 47, 0.35) 0%, transparent 78%);
  pointer-events: none;
  z-index: 1;
}

.lead-strip--visual:hover .lead-strip__media img {
  transform: scale(1.05);
}

.lead-strip__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
}

.lead-strip__copy h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  max-width: 32ch;
}

.section--plans::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

.plan-card__thumb {
  position: relative;
  height: 100px;
  margin: -0.25rem -1.35rem 1rem;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.plan-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--photo-overlay);
  z-index: 1;
  pointer-events: none;
}

.plan-card--glass .plan-card__thumb {
  margin: -0.25rem -1.35rem 1rem;
}

.plan-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  position: relative;
  z-index: 0;
}

.plan-card--glass:hover .plan-card__thumb img {
  transform: scale(1.06);
}

.plan-row-icons span:nth-child(3) {
  font-size: 0.95rem;
}

.why-split__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.why-split h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
  font-weight: 800;
}

@media (min-width: 880px) {
  .why-split__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-split__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--photo-shadow);
  aspect-ratio: 4/3;
}

.why-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
  position: relative;
  z-index: 0;
}

.why-split__visual:hover img {
  transform: scale(1.05);
}

.why-split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: var(--photo-overlay);
  box-shadow: inset 0 0 0 1px rgba(11, 60, 93, 0.08);
  z-index: 1;
}

.why-split__visual {
  position: relative;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.why-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--card-shadow-premium);
  transition: all 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(7, 26, 47, 0.1);
}

.why-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.1), rgba(255, 122, 0, 0.12));
}

.why-feature h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.why-feature p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.section-head--tight p {
  max-width: 48ch;
  margin-inline: auto;
}

.area-map {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.area-map__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/photos/residential-complex.png");
  background-size: cover;
  background-position: center;
  filter: blur(4px) saturate(0.85);
  transform: scale(1.05);
  opacity: 0.35;
}

.area-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5f9fc 0%, rgba(255, 255, 255, 0.92) 100%);
  z-index: 0;
}

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

.area-card--photo {
  position: relative;
  display: block;
  min-height: 172px;
  height: 100%;
  padding: 1rem 1rem 1.1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--photo-shadow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.area-card--photo .area-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease-out);
}

.area-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--photo-overlay), linear-gradient(180deg, rgba(7, 26, 47, 0.05) 0%, rgba(7, 26, 47, 0.88) 100%);
  z-index: 0;
}

.area-card--photo:hover .area-card__media {
  transform: scale(1.05);
}

.area-card--photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.area-card--photo:hover .area-card__title {
  color: #fff;
}

.area-card--photo:hover .area-card__hint {
  color: rgba(255, 255, 255, 0.9);
}

.area-card--photo .area-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}

.area-card--photo .area-card__title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}

.area-card--photo .area-card__hint {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  margin: 0;
}

.use-case-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

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

.use-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow-premium);
  border: 1px solid rgba(11, 60, 93, 0.08);
  transition: all 0.3s ease;
}

.use-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(7, 26, 47, 0.14);
}

.use-card__media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.use-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
  position: relative;
  z-index: 0;
}

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

.use-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--photo-overlay), linear-gradient(180deg, transparent 30%, rgba(7, 26, 47, 0.78) 100%);
  pointer-events: none;
  z-index: 1;
}

.use-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.use-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
}

.use-card__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(11, 60, 93, 0.1);
  box-shadow: 0 4px 12px rgba(7, 26, 47, 0.08);
}

.quote-stars {
  color: #ffb020;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.cta-band--visual {
  background: transparent;
}

.cta-band--visual::before {
  display: none;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  transform: scale(1.06);
  opacity: 0.45;
}

.cta-band__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(7, 26, 47, 0.92) 0%, rgba(11, 60, 93, 0.88) 50%, rgba(7, 26, 47, 0.9) 100%);
}

.cta-band--visual .container {
  z-index: 2;
}

.cta-band--visual h2 {
  font-size: clamp(1.65rem, 4.2vw, 2.5rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.cta-band--visual .btn-glow {
  box-shadow: 0 12px 44px rgba(255, 122, 0, 0.58), 0 0 56px rgba(255, 140, 0, 0.35), 0 0 100px rgba(255, 160, 0, 0.2) !important;
}

.lead-form-split {
  display: grid;
  gap: 0;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--photo-shadow);
  border: 1px solid rgba(11, 60, 93, 0.08);
}

@media (min-width: 880px) {
  .lead-form-split {
    grid-template-columns: 2fr 3fr;
  }
}

.lead-form-split__media {
  position: relative;
  min-height: 220px;
}

.lead-form-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.55s var(--ease-out);
  position: relative;
  z-index: 0;
}

.lead-form-split:hover .lead-form-split__media img {
  transform: scale(1.05);
}

.lead-form-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--photo-overlay), linear-gradient(135deg, rgba(11, 60, 93, 0.25) 0%, transparent 62%);
  z-index: 1;
  pointer-events: none;
}

.lead-form-split__form {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.faq-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .faq-split {
    grid-template-columns: 260px 1fr;
    max-width: 1000px;
    margin-inline: auto;
  }
}

.faq-split__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--photo-shadow);
  min-height: 200px;
}

.faq-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.55s var(--ease-out);
  position: relative;
  z-index: 0;
}

.faq-split__visual:hover img {
  transform: scale(1.05);
}

.faq-split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--photo-overlay), linear-gradient(200deg, transparent 40%, rgba(7, 26, 47, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.85;
}
