/* ==========================================================================
   Sofia Airport Transfer — theme
   Brand green  #77b729   Brand ink  #2b2d2e
   Built on Bootstrap 5.3. Light + automatic dark theme.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — unchanged from the original site */
  --sat-green: #77b729;
  --sat-green-600: #6aa524;
  --sat-green-700: #5c8f1f;
  --sat-ink: #2b2d2e;

  /* Accessible green for text on light backgrounds (same hue, darker) */
  --sat-green-text: #4a7a17;

  /* Surfaces & text */
  --sat-bg: #ffffff;
  --sat-surface: #ffffff;
  --sat-surface-2: #f5f8f1;
  --sat-surface-3: #eef3e8;
  --sat-heading: #171a1c;
  --sat-body: #4d565a;
  --sat-muted: #646d71;
  --sat-border: #e3e8dd;
  --sat-border-strong: #cfd8c6;

  /* Dark sections used in both themes (footer, CTA band) */
  --sat-dark: #1b1f21;
  --sat-dark-2: #24292b;
  --sat-on-dark: #e9eeea;
  --sat-on-dark-muted: #a3adaa;

  /* Elevation */
  --sat-shadow-sm: 0 1px 2px rgba(23, 26, 28, .06), 0 2px 6px rgba(23, 26, 28, .05);
  --sat-shadow-md: 0 2px 4px rgba(23, 26, 28, .05), 0 10px 24px rgba(23, 26, 28, .08);
  --sat-shadow-lg: 0 4px 8px rgba(23, 26, 28, .06), 0 24px 48px rgba(23, 26, 28, .12);
  --sat-ring: 0 0 0 4px rgba(119, 183, 41, .28);

  /* Geometry */
  --sat-radius-sm: 10px;
  --sat-radius: 16px;
  --sat-radius-lg: 22px;
  --sat-radius-pill: 999px;

  --sat-nav-h: 72px;

  color-scheme: light;
}

[data-bs-theme="dark"] {
  --sat-green-text: #9ed551;

  --sat-bg: #0f1214;
  --sat-surface: #171b1d;
  --sat-surface-2: #14181a;
  --sat-surface-3: #1c2225;
  --sat-heading: #f1f4f1;
  --sat-body: #b3bcbd;
  --sat-muted: #8b9496;
  --sat-border: #262d30;
  --sat-border-strong: #333c40;

  --sat-dark: #14181a;
  --sat-dark-2: #1b2023;

  --sat-shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --sat-shadow-md: 0 2px 4px rgba(0, 0, 0, .3), 0 10px 24px rgba(0, 0, 0, .45);
  --sat-shadow-lg: 0 4px 8px rgba(0, 0, 0, .3), 0 24px 48px rgba(0, 0, 0, .5);

  color-scheme: dark;
}

/* Bootstrap variable bridge, so built-in components inherit the brand */
:root,
[data-bs-theme="dark"] {
  --bs-primary: var(--sat-green);
  --bs-primary-rgb: 119, 183, 41;
  --bs-link-color: var(--sat-green-text);
  --bs-link-color-rgb: 74, 122, 23;
  --bs-link-hover-color: var(--sat-green-700);
  --bs-body-color: var(--sat-body);
  --bs-body-bg: var(--sat-bg);
  --bs-border-color: var(--sat-border);
  --bs-border-radius: var(--sat-radius-sm);
  --bs-font-sans-serif: Montserrat, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --bs-focus-ring-color: rgba(119, 183, 41, .3);
  --bs-heading-color: var(--sat-heading);
  --bs-emphasis-color: var(--sat-heading);
  --bs-secondary-color: var(--sat-muted);
}

[data-bs-theme="dark"] {
  --bs-link-color-rgb: 158, 213, 81;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--sat-bg);
  color: var(--sat-body);
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--sat-heading);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 1.1rem + 2.1vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.02rem + .8vw, 1.5rem); }
h4 { font-size: clamp(1.05rem, .98rem + .35vw, 1.2rem); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--sat-green-text); text-decoration: none; }
a:hover { color: var(--sat-green-700); text-decoration: underline; }
[data-bs-theme="dark"] a:hover { color: #b6e277; }

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

hr {
  border: 0;
  border-top: 1px solid var(--sat-border);
  opacity: 1;
  margin: 2rem 0;
}

::selection { background: rgba(119, 183, 41, .28); }

:focus-visible {
  outline: 3px solid var(--sat-green);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  padding: .7rem 1.1rem;
  border-radius: var(--sat-radius-sm);
  background: var(--sat-green);
  color: #14171a;
  font-weight: 700;
  transition: top .15s ease;
}
.skip-link:focus { top: 1rem; color: #14171a; text-decoration: none; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container { max-width: 1180px; }

.section { padding: clamp(3.25rem, 2rem + 5vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 1.8rem + 3vw, 4rem) 0; }
.section--tint { background: var(--sat-surface-2); }
.section--dark { background: var(--sat-dark); color: var(--sat-on-dark-muted); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 46rem; margin: 0 auto clamp(2rem, 1.4rem + 2vw, 3.25rem); text-align: center; }
.section-head--start { margin-left: 0; text-align: left; }
.section-head p { color: var(--sat-muted); font-size: 1.05rem; margin-bottom: 0; }
.section-head h1, .section-head h2 { margin-bottom: .55rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .35rem .85rem;
  border-radius: var(--sat-radius-pill);
  background: rgba(119, 183, 41, .14);
  color: var(--sat-green-text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sat-green);
}

/* The brand's signature accent inside headings ("SOF<em>IA</em>") */
.accent { color: var(--sat-green-text); }
.section--dark .accent,
.hero .accent,
.cta-band .accent,
.site-footer .accent { color: #9ed551; }

.lead-text { font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem); color: var(--sat-body); }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.9rem; font-size: 1.22rem; }
.prose > :first-child { margin-top: 0; }
.prose ul { padding-left: 1.15rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: .45rem; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --bs-btn-focus-box-shadow: var(--sat-ring);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--sat-radius-pill);
  font-weight: 700;
  font-size: .97rem;
  line-height: 1.25;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; }

.btn-brand {
  background: var(--sat-green);
  border-color: var(--sat-green);
  color: #14171a;
  box-shadow: 0 6px 16px rgba(119, 183, 41, .3);
}
.btn-brand:hover {
  background: var(--sat-green-600);
  border-color: var(--sat-green-600);
  color: #14171a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(119, 183, 41, .38);
}

.btn-outline-brand {
  background: transparent;
  border-color: var(--sat-green);
  color: var(--sat-green-text);
}
.btn-outline-brand:hover {
  background: var(--sat-green);
  border-color: var(--sat-green);
  color: #14171a;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: #14171a;
  transform: translateY(-2px);
}

.btn-soft {
  background: var(--sat-surface);
  border-color: var(--sat-border);
  color: var(--sat-heading);
  box-shadow: var(--sat-shadow-sm);
}
.btn-soft:hover {
  border-color: var(--sat-green);
  color: var(--sat-heading);
  transform: translateY(-2px);
  box-shadow: var(--sat-shadow-md);
}

.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: .55rem 1.05rem; font-size: .87rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--sat-bg);
  background: color-mix(in srgb, var(--sat-bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--sat-border);
}
@supports not (backdrop-filter: blur(4px)) {
  .site-header { background: var(--sat-bg); }
}

.site-header .navbar {
  --bs-navbar-padding-y: 0;
  min-height: var(--sat-nav-h);
  padding: .5rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--sat-ink);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}
[data-bs-theme="dark"] .brand__mark { background: var(--sat-surface-3); }
.brand__mark .accent { color: var(--sat-green); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  color: var(--sat-heading);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.01em;
}
.brand__tag {
  color: var(--sat-muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-nav { gap: .15rem; }
.site-nav .nav-link {
  position: relative;
  padding: .55rem .9rem;
  border-radius: var(--sat-radius-pill);
  color: var(--sat-body);
  font-weight: 600;
  font-size: .95rem;
  transition: color .15s ease, background-color .15s ease;
}
.site-nav .nav-link:hover { color: var(--sat-heading); background: var(--sat-surface-2); text-decoration: none; }
.site-nav .nav-link.active { color: var(--sat-heading); }
.site-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .18rem;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--sat-green);
  transform: translateX(-50%);
}

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

.navbar-toggler {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--sat-border-strong);
  border-radius: 12px;
  background: var(--sat-surface);
  color: var(--sat-heading);
  box-shadow: none;
}
.navbar-toggler:focus { box-shadow: var(--sat-ring); }

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    margin-top: .75rem;
    padding: .75rem;
    border: 1px solid var(--sat-border);
    border-radius: var(--sat-radius);
    background: var(--sat-surface);
    box-shadow: var(--sat-shadow-md);
  }
  .site-nav .nav-link { padding: .7rem .9rem; }
  .site-nav .nav-link.active::after { left: .9rem; transform: none; bottom: .45rem; }
  .header-actions { flex-direction: column; align-items: stretch; margin-top: .6rem; }
  .header-actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 62vh, 580px);
  padding: clamp(3rem, 2rem + 5vw, 5.5rem) 0;
  background: var(--sat-ink);
  color: #e8ede4;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(16, 19, 20, .94) 0%, rgba(16, 19, 20, .86) 34%, rgba(16, 19, 20, .55) 62%, rgba(16, 19, 20, .35) 100%),
    linear-gradient(to top, rgba(16, 19, 20, .6), transparent 45%);
}
.hero__inner { max-width: 40rem; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p { color: #d3dbd2; font-size: clamp(1.02rem, .96rem + .45vw, 1.2rem); }
.hero .eyebrow {
  background: rgba(119, 183, 41, .2);
  color: #b6e277;
  border: 1px solid rgba(119, 183, 41, .35);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.9rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #cdd6cb;
  font-size: .92rem;
  font-weight: 600;
}
.hero__trust svg { color: var(--sat-green); flex: none; }

/* Compact hero for interior pages */
.page-hero {
  position: relative;
  padding: clamp(2.6rem, 2rem + 3.5vw, 4.6rem) 0 clamp(2.2rem, 1.6rem + 3vw, 3.6rem);
  background:
    radial-gradient(90rem 34rem at 12% -30%, rgba(119, 183, 41, .16), transparent 60%),
    var(--sat-surface-2);
  border-bottom: 1px solid var(--sat-border);
}
.page-hero .section-head { margin-bottom: 0; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  font-size: .85rem;
  color: var(--sat-body);
}
.breadcrumbs li { display: flex; align-items: center; gap: .4rem; }
.breadcrumbs li + li::before { content: "/"; color: var(--sat-border-strong); }
.breadcrumbs a { color: var(--sat-body); font-weight: 600; }
.breadcrumbs a:hover { color: var(--sat-green-text); }

/* --------------------------------------------------------------------------
   7. Cards & feature blocks
   -------------------------------------------------------------------------- */
.card-surface {
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius);
  background: var(--sat-surface);
  box-shadow: var(--sat-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-surface:hover {
  transform: translateY(-4px);
  border-color: rgba(119, 183, 41, .5);
  box-shadow: var(--sat-shadow-md);
}
.card-surface h3 { margin-bottom: .55rem; }
.card-surface p { color: var(--sat-muted); margin-bottom: 0; font-size: .97rem; }

.icon-chip {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
  border-radius: 15px;
  background: rgba(119, 183, 41, .14);
  color: var(--sat-green-text);
}
[data-bs-theme="dark"] .icon-chip { background: rgba(119, 183, 41, .18); color: #9ed551; }
.icon-chip svg { width: 26px; height: 26px; }

/* Photo cards (team & fleet) */
.photo-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius);
  background: var(--sat-surface);
  box-shadow: var(--sat-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--sat-shadow-md); }
.photo-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--sat-surface-3);
}
.photo-card__body { padding: 1.15rem 1.3rem 1.4rem; }
.photo-card__body h3 { font-size: 1.13rem; margin-bottom: .25rem; }
.photo-card__body p { color: var(--sat-muted); font-size: .94rem; margin-bottom: 0; }

.team-card { text-align: center; padding: 1.8rem 1.3rem; }
.team-card img {
  width: 128px;
  height: 128px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sat-surface-3);
  border: 3px solid var(--sat-surface);
  box-shadow: 0 0 0 2px rgba(119, 183, 41, .35);
}
.team-card h3 { font-size: 1.13rem; margin-bottom: .2rem; }
.team-card p {
  color: var(--sat-green-text);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.fleet-card__seats {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .6rem;
  padding: .25rem .7rem;
  border-radius: var(--sat-radius-pill);
  background: rgba(119, 183, 41, .14);
  color: var(--sat-green-text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.fleet-card ul {
  margin: .9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.fleet-card ul li {
  padding: .2rem .6rem;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-pill);
  color: var(--sat-muted);
  font-size: .78rem;
  font-weight: 600;
}

/* Numbered "how it works" steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 3.4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--sat-green);
  color: #14171a;
  font-weight: 700;
}
.step h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { color: var(--sat-muted); font-size: .96rem; margin-bottom: 0; }

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem;
}
.stat {
  padding: 1.35rem 1rem;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-sm);
  background: var(--sat-surface);
  text-align: center;
}
.stat__value {
  display: block;
  color: var(--sat-heading);
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.stat__label {
  display: block;
  margin-top: .3rem;
  color: var(--sat-muted);
  font-size: .85rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. Pricing
   -------------------------------------------------------------------------- */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-lg);
  background: var(--sat-surface);
  box-shadow: var(--sat-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sat-shadow-md);
  border-color: rgba(119, 183, 41, .45);
}
.price-card--featured {
  border-color: var(--sat-green);
  box-shadow: 0 0 0 1px var(--sat-green), var(--sat-shadow-md);
}

.price-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .55rem;
}
.price-card__head h3 { margin-bottom: 0; }

.price-card__badge {
  flex: none;
  margin-top: .2rem;
  white-space: nowrap;
  padding: .3rem .75rem;
  border-radius: var(--sat-radius-pill);
  background: var(--sat-green);
  color: #14171a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.price-card__badge--alt { background: var(--sat-ink); color: #fff; }
[data-bs-theme="dark"] .price-card__badge--alt { background: #394347; color: #fff; }

.price-card h3 { font-size: 1.24rem; margin-bottom: .5rem; }
.price-card > p { color: var(--sat-muted); font-size: .95rem; }

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}
.route-meta li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .7rem;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-pill);
  background: var(--sat-surface-2);
  color: var(--sat-body);
  font-size: .82rem;
  font-weight: 600;
}
.route-meta svg { color: var(--sat-green-text); }

.price-list {
  margin: 0 0 1.4rem;
  padding: .35rem 0 0;
  list-style: none;
  border-top: 1px solid var(--sat-border);
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .62rem 0;
  border-bottom: 1px dashed var(--sat-border);
  font-size: .94rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .vehicle { color: var(--sat-body); font-weight: 600; }
.price-list .amount {
  color: var(--sat-heading);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}
.price-card__foot { margin-top: auto; display: grid; gap: .6rem; }

.price-note {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--sat-border);
  border-left: 4px solid var(--sat-green);
  border-radius: var(--sat-radius-sm);
  background: var(--sat-surface-2);
  color: var(--sat-body);
  font-size: .95rem;
}
.price-note svg { color: var(--sat-green-text); flex: none; margin-top: .2rem; }

/* --------------------------------------------------------------------------
   9. Forms
   -------------------------------------------------------------------------- */
.form-card {
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-lg);
  background: var(--sat-surface);
  box-shadow: var(--sat-shadow-md);
}

.form-label {
  display: block;
  margin-bottom: .4rem;
  color: var(--sat-heading);
  font-size: .88rem;
  font-weight: 700;
}

.form-control,
.form-select {
  padding: .8rem 1rem;
  border: 1px solid var(--sat-border-strong);
  border-radius: var(--sat-radius-sm);
  background: var(--sat-bg);
  color: var(--sat-heading);
  font-size: .97rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control::placeholder { color: var(--sat-muted); opacity: .8; }
.form-control:focus,
.form-select:focus {
  border-color: var(--sat-green);
  box-shadow: var(--sat-ring);
  background: var(--sat-bg);
  color: var(--sat-heading);
}
.form-hint { margin-top: .45rem; color: var(--sat-muted); font-size: .82rem; }

/* Honeypot — off-screen for people, irresistible to bots */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid #f0c2c2;
  border-left: 4px solid #c0392b;
  border-radius: var(--sat-radius-sm);
  background: #fdf3f2;
  color: #7a2b22;
  font-size: .93rem;
}
.form-alert svg { color: #c0392b; flex: none; margin-top: .2rem; }
.form-alert a { color: #7a2b22; font-weight: 700; text-decoration: underline; }
[data-bs-theme="dark"] .form-alert {
  border-color: #4a2a27;
  background: #2a1a18;
  color: #f0c2bb;
}
[data-bs-theme="dark"] .form-alert a { color: #f0c2bb; }
[data-bs-theme="dark"] .form-alert svg { color: #e07a6a; }

/* Contact detail rows */
.contact-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .9rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .icon-chip {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 12px;
}
.contact-list .icon-chip svg { width: 20px; height: 20px; }
.contact-list dt,
.contact-list strong {
  display: block;
  color: var(--sat-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-list a,
.contact-list span.value {
  color: var(--sat-heading);
  font-weight: 700;
  font-size: 1.02rem;
}
.contact-list a:hover { color: var(--sat-green-text); }

/* --------------------------------------------------------------------------
   10. FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius);
  overflow: hidden;
  background: var(--sat-surface);
  box-shadow: var(--sat-shadow-sm);
}
.faq-item { border-bottom: 1px solid var(--sat-border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  color: var(--sat-heading);
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  transition: background-color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--sat-surface-2); }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--sat-green);
  border-bottom: 2.5px solid var(--sat-green);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq-item__answer { padding: 0 1.4rem 1.35rem; color: var(--sat-body); font-size: .98rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   11. CTA band, callcenter strip, footer
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: clamp(2.6rem, 2rem + 3vw, 4.25rem) 0;
  background:
    radial-gradient(60rem 24rem at 85% 0%, rgba(119, 183, 41, .22), transparent 60%),
    var(--sat-dark);
  color: var(--sat-on-dark-muted);
  overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: #b9c2b8; margin-bottom: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 992px) { .cta-band__actions { justify-content: flex-end; } }

.media-strip {
  display: grid;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: center;
}
@media (min-width: 992px) { .media-strip { grid-template-columns: 1.05fr 1fr; } }
.media-strip img {
  width: 100%;
  border-radius: var(--sat-radius);
  box-shadow: var(--sat-shadow-md);
}

.site-footer {
  padding: clamp(3rem, 2rem + 3vw, 4.5rem) 0 0;
  background: var(--sat-dark);
  color: var(--sat-on-dark-muted);
}
.site-footer h2,
.site-footer h3 { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: var(--sat-on-dark-muted); }
.site-footer .brand__mark { background: rgba(255, 255, 255, .1); }
.site-footer p { color: var(--sat-on-dark-muted); font-size: .94rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: .6rem; }
.site-footer .brand { display: flex; margin-bottom: 1.1rem; }
.site-footer a { color: var(--sat-on-dark-muted); font-size: .94rem; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer .btn-brand,
.site-footer .btn-brand:hover { color: #14171a; font-size: .97rem; }
.site-footer .btn-soft { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .18); color: #fff; }
.footer-contact a { color: #fff; font-weight: 700; font-size: 1.02rem; }
.footer-contact a:hover { color: #9ed551; }
.footer-bottom {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8f9a8f;
  font-size: .87rem;
}
.footer-bottom p { margin: 0; color: inherit; font-size: inherit; }

/* --------------------------------------------------------------------------
   12. Mobile quick-action bar
   -------------------------------------------------------------------------- */
.quick-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: none;
  gap: .5rem;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: var(--sat-bg);
  background: color-mix(in srgb, var(--sat-bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--sat-border);
}
.quick-bar .btn { flex: 1; padding: .7rem .8rem; font-size: .9rem; }
@media (max-width: 767.98px) {
  .quick-bar { display: flex; }
  body { padding-bottom: 4.5rem; }
}

/* --------------------------------------------------------------------------
   13. Article / route pages
   -------------------------------------------------------------------------- */
.article-media {
  width: 100%;
  border-radius: var(--sat-radius-lg);
  box-shadow: var(--sat-shadow-md);
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.side-card {
  position: sticky;
  top: calc(var(--sat-nav-h) + 1.25rem);
  padding: 1.6rem;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-lg);
  background: var(--sat-surface);
  box-shadow: var(--sat-shadow-md);
}
.side-card h2 { font-size: 1.15rem; margin-bottom: 1rem; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--sat-radius);
  box-shadow: var(--sat-shadow-md);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Success / thank-you */
.success-mark {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: rgba(119, 183, 41, .16);
  color: var(--sat-green-text);
}
.success-mark svg { width: 42px; height: 42px; }

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */
.text-muted-soft { color: var(--sat-muted) !important; }
.bg-surface { background: var(--sat-surface) !important; }
.rounded-brand { border-radius: var(--sat-radius) !important; }
.reveal-up { animation: satFadeUp .6s cubic-bezier(.22, .61, .36, 1) both; }
@keyframes satFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
