:root {
  --bs-primary: #14b8a6;
  --bs-primary-rgb: 20, 184, 166;
  --ss-ink: #0b1f1d;
  --ss-muted: #4b5e5b;
  --ss-cream: #f6f9f8;
  --ss-radius-lg: 1.5rem;
  --ss-radius-xl: 2rem;
  --ss-shadow-soft: 0 20px 50px -25px rgba(15, 118, 110, 0.35);
}

html { scroll-behavior: smooth; }
body {
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  color: var(--ss-ink);
  background: #fff;
}

/* ============ Typography ============ */
h1, h2, h3, .display-1, .display-2, .display-3, .display-4, .display-5 {
  letter-spacing: -0.02em;
  color: var(--ss-ink);
}
.lead { font-size: 1.125rem; line-height: 1.6; }
.letter-spacing { letter-spacing: 0.08em; }
.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #0f766e;
}

/* ============ Section rhythm ============ */
.py-md-6 { padding-top: 6rem; padding-bottom: 6rem; }
.py-md-7 { padding-top: 8rem; padding-bottom: 8rem; }
@media (max-width: 767px) {
  .py-md-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .py-md-7 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* ============ Brand primary overrides ============ */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active { background-color: #14b8a6; border-color: #14b8a6; }
.btn-primary:hover { background-color: #0d9488; border-color: #0d9488; }
.btn-outline-primary { color: #0f766e; border-color: #14b8a6; }
.btn-outline-primary:hover { background-color: #14b8a6; border-color: #14b8a6; color: #fff; }
.text-primary { color: #0f766e !important; }
.text-primary-emphasis { color: #0f766e !important; }
.bg-primary-subtle { background-color: rgba(20, 184, 166, 0.08) !important; }
.border-primary { border-color: #14b8a6 !important; }

/* Larger pill buttons */
.btn-lg {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
}

/* ============ Hero & image treatments ============ */
.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(20, 184, 166, 0.18), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(15, 118, 110, 0.12), transparent 60%),
    #fff;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15, 118, 110, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 100%);
  pointer-events: none;
}
.hero-shell > * { position: relative; }

.media-frame {
  border-radius: var(--ss-radius-xl);
  overflow: hidden;
  box-shadow: var(--ss-shadow-soft);
  background: var(--ss-cream);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-frame--portrait { aspect-ratio: 4 / 5; }
.media-frame--wide     { aspect-ratio: 16 / 10; }
.media-frame--square   { aspect-ratio: 1 / 1; }

/* Floating chip overlays on hero image */
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.float-chip i { color: #0f766e; }

/* ============ Trust strip ============ */
.trust-strip {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--ss-cream);
}
.trust-strip .trust-item {
  text-align: center;
  padding: 1.25rem 0.5rem;
}
.trust-strip .trust-item .num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ss-ink);
  display: block;
}
.trust-strip .trust-item .lbl {
  font-size: 0.85rem;
  color: var(--ss-muted);
}

/* ============ Feature rows ============ */
.feature-row { padding-top: 3rem; padding-bottom: 3rem; }
.feature-row .feature-image {
  border-radius: var(--ss-radius-xl);
  overflow: hidden;
  box-shadow: var(--ss-shadow-soft);
}
.feature-row .feature-image img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  aspect-ratio: 4/3;
}
.feature-row .step-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ============ Service tiles ============ */
.service-tile {
  position: relative;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px -22px rgba(15, 118, 110, 0.35);
  border-color: rgba(20, 184, 166, 0.4);
}
.service-tile .icon-wrap {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-feature {
  border-radius: var(--ss-radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-feature .service-feature__image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.service-feature .service-feature__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.service-feature .service-feature__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

/* ============ Why — comparison ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 0; }
}
.why-col {
  padding: 2rem;
  background: #fff;
}
.why-col--old {
  background: var(--ss-cream);
  border-radius: var(--ss-radius-lg);
}
.why-col--new {
  background: #0b1f1d;
  color: #f6f9f8;
  border-radius: var(--ss-radius-lg);
}
.why-col--new h3, .why-col--new .eyebrow { color: #f6f9f8; }
.why-col--new .text-muted { color: rgba(246, 249, 248, 0.7) !important; }
@media (min-width: 992px) {
  .why-col--old { border-radius: var(--ss-radius-lg) 0 0 var(--ss-radius-lg); padding-right: 3rem; }
  .why-col--new { border-radius: 0 var(--ss-radius-lg) var(--ss-radius-lg) 0; padding-left: 3rem; }
}
.why-col ul { list-style: none; padding: 0; margin: 0; }
.why-col li {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  align-items: flex-start;
  font-size: 0.95rem;
}
.why-col--old li i { color: #c44; flex-shrink: 0; margin-top: 0.2rem; }
.why-col--new li i { color: #5eead4; flex-shrink: 0; margin-top: 0.2rem; }

/* ============ Coverage ============ */
.coverage-hero {
  text-align: center;
  padding: 2rem 0;
}
.coverage-hero .big-num {
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f766e;
  display: block;
}
.coverage-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
}
.coverage-city-list .city {
  font-size: 0.95rem;
  color: var(--ss-ink);
  padding: 0.35rem 0.85rem;
  background: var(--ss-cream);
  border-radius: 999px;
}
.coverage-city-list .city.soon {
  background: transparent;
  color: var(--ss-muted);
  border: 1px dashed rgba(15, 23, 42, 0.15);
}

/* ============ Testimonials ============ */
.testimonial-card {
  background: var(--ss-cream);
  border-radius: var(--ss-radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card .quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: #0f766e;
  opacity: 0.3;
  font-family: Georgia, serif;
}
.testimonial-card .author {
  display: flex; gap: 0.85rem; align-items: center; margin-top: auto;
}
.testimonial-card .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ============ Final CTA ============ */
.final-cta-card {
  border-radius: var(--ss-radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(94, 234, 212, 0.2), transparent 60%),
    radial-gradient(800px 400px at 90% 100%, rgba(20, 184, 166, 0.18), transparent 65%),
    #0b1f1d;
  color: #fff;
}
.final-cta-card h2 { color: #fff; }
.final-cta-card .lead { color: rgba(246, 249, 248, 0.85); }
.final-cta-card .btn-outline-primary {
  color: #5eead4; border-color: #5eead4;
}
.final-cta-card .btn-outline-primary:hover {
  background: #5eead4; color: #0b1f1d;
}

/* ============ Accordion override ============ */
.accordion-button:not(.collapsed) {
  color: #0f766e;
  background-color: rgba(20, 184, 166, 0.08);
}
.accordion-button:focus { box-shadow: 0 0 0 0.25rem rgba(20, 184, 166, 0.25); }
.form-control:focus { border-color: #14b8a6; box-shadow: 0 0 0 0.25rem rgba(20, 184, 166, 0.25); }
