/* ============================================================
   SPORTS PAIN & RECOVERY ZÜRISEE — STYLESHEET
   Premium athletic physiotherapy website
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors */
  --navy:          #0d1b2a;
  --navy-mid:      #112236;
  --navy-deep:     #091523;
  --grey-dark:     #1e2d3d;
  --grey-mid:      #2e4057;
  --grey-cool:     #8fa0b3;
  --grey-light:    #c5d0db;
  --off-white:     #f0f4f8;
  --white:         #ffffff;
  --accent:        #00a8e8;      /* electric blue */
  --accent-dark:   #007bb5;
  --accent-glow:   rgba(0, 168, 232, 0.18);
  --danger:        #e84855;

  /* Typography */
  --font-body:     'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display:  'DM Sans', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.375rem;
  --space-sm:   0.75rem;
  --space-md:   1.25rem;
  --space-lg:   2rem;
  --space-xl:   3.5rem;
  --space-2xl:  6rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.18);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.22);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.32);
  --shadow-accent: 0 4px 24px rgba(0, 168, 232, 0.22);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans-fast: 0.18s var(--ease);
  --trans-med:  0.3s var(--ease);

  /* Layout */
  --container:  1200px;
  --header-h:   72px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

ul { list-style: none; }

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

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-cool); }

p { color: var(--grey-light); }

strong { color: var(--white); font-weight: 600; }

em { font-style: italic; }

/* ── LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-2xl);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-cool);
  margin-top: var(--space-sm);
  line-height: 1.7;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--trans-fast);
  white-space: nowrap;
  text-align: center;
  border: 2px solid transparent;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy-deep);
  border-color: var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #1ab9ff;
  border-color: #1ab9ff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-ghost:hover { color: #1ab9ff; }

.btn-lg { padding: 0.9rem 2.1rem; font-size: 1rem; }

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(9, 21, 35, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--trans-med), box-shadow var(--trans-med);
}

.site-header.scrolled {
  background: rgba(9, 21, 35, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.32);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-accent { opacity: 0.7; }

.logo-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-text em {
  font-style: normal;
  color: var(--accent);
}

/* Main nav */
.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color var(--trans-fast), background var(--trans-fast);
}

.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey-cool);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--trans-fast);
  line-height: 1;
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.active,
.lang-btn[aria-pressed="true"] {
  color: var(--accent);
  border-color: rgba(0, 168, 232, 0.3);
  background: rgba(0, 168, 232, 0.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color var(--trans-fast), background var(--trans-fast);
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.mobile-nav-cta {
  margin-top: 1rem;
  justify-content: center !important;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 168, 232, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(0, 60, 120, 0.4) 0%, transparent 70%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.025) 79px,
      rgba(255,255,255,0.025) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.025) 79px,
      rgba(255,255,255,0.025) 80px
    );
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 680px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-cool);
}

.hero-trust .sep {
  color: var(--grey-mid);
}

/* ── PAIN SECTION ──────────────────────────────────────────── */
.pain-section {
  background: var(--navy);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: var(--space-xl);
}

.pain-card {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--trans-med), transform var(--trans-med);
}

.pain-card:hover {
  border-color: rgba(0, 168, 232, 0.3);
  transform: translateY(-3px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pain-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.pain-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

.pain-callout {
  background: var(--grey-dark);
  border: 1px solid rgba(0, 168, 232, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pain-callout p {
  font-size: 1.05rem;
  color: var(--grey-light);
  flex: 1;
}

/* ── METHOD SECTION ────────────────────────────────────────── */
.method-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.method-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,168,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.method-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: start;
}

.method-text .section-eyebrow { margin-bottom: var(--space-sm); }

.method-text h2 { margin-bottom: 1.25rem; }

.method-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--grey-light);
}

.method-benefits h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-cool);
  font-weight: 600;
  margin-bottom: 1rem;
}

.method-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.method-benefits li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2em;
  position: relative;
}

.check-icon::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--navy-deep);
  border-bottom: 2px solid var(--navy-deep);
  transform: rotate(45deg);
}

.method-benefits li span:last-child {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.method-disclaimer {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(232, 72, 85, 0.08);
  border: 1px solid rgba(232, 72, 85, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.method-disclaimer svg {
  width: 18px;
  height: 18px;
  color: #e8848d;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.method-disclaimer p {
  font-size: 0.87rem;
  color: #e8848d;
  line-height: 1.6;
}

.method-text .btn + .btn { margin-left: 1rem; }

/* Method visual */
.method-visual {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.method-visual-inner {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.method-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 168, 232, 0.15);
}

.method-stat-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.method-stat-label {
  font-size: 0.82rem;
  color: var(--grey-cool);
  line-height: 1.5;
}

/* ── FOCUS / FOR ATHLETES SECTION ──────────────────────────── */
.focus-section {
  background: var(--navy);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.focus-card {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--trans-med), transform var(--trans-med), box-shadow var(--trans-med);
}

.focus-card:hover {
  border-color: rgba(0, 168, 232, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.focus-card-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.focus-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.focus-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.focus-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* Sport tags cloud */
.sport-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--grey-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
}

.sport-tag-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-cool);
  margin-right: 0.5rem;
}

.sport-tags span:not(.sport-tag-label) {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-light);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

/* ── PACKAGES SECTION ──────────────────────────────────────── */
.packages-section {
  background: var(--navy-mid);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.package-card {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--trans-med), transform var(--trans-med);
}

.package-card:hover {
  border-color: rgba(0, 168, 232, 0.3);
  transform: translateY(-3px);
}

.package-card--featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, var(--grey-dark), rgba(0,168,232,0.05));
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-accent);
}

.package-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  align-items: start;
}

.package-card--wide .package-header {
  grid-column: 1;
}

.package-card--wide .onsite-features {
  grid-column: 1;
}

.package-card--wide .btn {
  grid-column: 2;
  align-self: center;
}

.package-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 168, 232, 0.12);
  border: 1px solid rgba(0, 168, 232, 0.25);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.package-badge--featured {
  background: var(--accent);
  color: var(--navy-deep);
  border-color: var(--accent);
}

.package-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.package-subtitle {
  font-size: 0.88rem;
  color: var(--grey-cool);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--white);
}

.price-currency {
  font-size: 0.82rem;
  color: var(--grey-cool);
}

.package-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-includes li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.15);
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
  position: relative;
}

.check::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

.package-structure {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.package-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.package-step span:last-child {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.55;
}

.package-note {
  font-size: 0.85rem;
  color: var(--grey-cool);
  line-height: 1.6;
  padding: 0.75rem 1rem;
  background: var(--navy-mid);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.package-freq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.freq-item {
  background: var(--navy-mid);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
}

.freq-label {
  font-size: 0.73rem;
  color: var(--grey-cool);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.freq-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.onsite-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.onsite-feature {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.packages-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-cool);
  max-width: 560px;
  margin-inline: auto;
}

/* ── LOCATIONS SECTION ─────────────────────────────────────── */
.locations-section {
  background: var(--navy);
}

.locations-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: center;
}

.locations-text .section-eyebrow { margin-bottom: var(--space-sm); }
.locations-text h2 { margin-bottom: 1.25rem; }
.locations-text > p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--grey-light);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.location-pin {
  width: 36px;
  height: 36px;
  background: rgba(0, 168, 232, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.location-pin svg {
  width: 18px;
  height: 18px;
}

.location-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.location-item p {
  font-size: 0.85rem;
  color: var(--grey-cool);
}

/* Map placeholder */
.locations-map-placeholder {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  text-align: center;
  color: var(--grey-cool);
}

.map-icon {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: rgba(0, 168, 232, 0.4);
}

.map-inner p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.map-sub {
  font-size: 0.85rem;
  color: var(--grey-cool) !important;
  font-weight: 400 !important;
}

/* ── PROCESS SECTION ───────────────────────────────────────── */
.process-section {
  background: var(--navy-mid);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-xl);
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.step-number {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--grey-cool);
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0,168,232,0.2));
  flex-shrink: 0;
  margin-top: 1.3rem;
}

.process-cta {
  text-align: center;
}

/* ── TRUST SECTION ─────────────────────────────────────────── */
.trust-section {
  background: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-item {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--trans-med), transform var(--trans-med);
}

.trust-item:hover {
  border-color: rgba(0, 168, 232, 0.25);
  transform: translateY(-3px);
}

.trust-icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.trust-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--grey-cool);
}

/* ── TESTIMONIALS SECTION ──────────────────────────────────── */
.testimonials-section {
  background: var(--navy-mid);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: var(--grey-dark);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.testimonial-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grey-mid);
  border: 2px dashed rgba(255,255,255,0.15);
}

.testimonial-text {
  font-style: italic;
  color: var(--grey-cool);
  font-size: 0.9rem;
  line-height: 1.65;
}

.testimonial-name {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

.testimonials-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-mid);
  max-width: 500px;
  margin-inline: auto;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── FAQ SECTION ───────────────────────────────────────────── */
.faq-section {
  background: var(--navy);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.open {
  border-color: rgba(0, 168, 232, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--trans-fast);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--trans-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--grey-light);
}

/* ── FINAL CTA SECTION ─────────────────────────────────────── */
.final-cta-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,168,232,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  padding-block: var(--space-xl);
}

.final-cta-inner h2 {
  margin-bottom: 1rem;
}

.final-cta-inner > p {
  font-size: 1.05rem;
  color: var(--grey-light);
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.final-cta-disclaimer {
  font-size: 0.8rem;
  color: var(--grey-mid);
  line-height: 1.6;
  max-width: 560px;
  margin-inline: auto;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

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

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

.footer-logo .logo-text {
  font-size: 0.73rem;
}

.footer-tagline {
  font-size: 0.87rem;
  color: var(--grey-cool);
  line-height: 1.6;
  max-width: 280px;
}

.footer-nav-group h4 {
  margin-bottom: 1rem;
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-group a {
  font-size: 0.87rem;
  color: var(--grey-cool);
  transition: color var(--trans-fast);
  line-height: 1.5;
  word-break: break-word;
}

.footer-nav-group a:hover {
  color: var(--white);
}

.footer-locations {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--grey-mid);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--grey-cool);
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.footer-disclaimer strong {
  color: var(--grey-light);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

/* ── STICKY MOBILE CTA ─────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 1rem;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.sticky-mobile-cta .btn {
  gap: 0.6rem;
  font-size: 0.95rem;
}

.sticky-mobile-cta svg {
  width: 18px;
  height: 18px;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet: ≤ 1100px */
@media (max-width: 1100px) {
  .method-layout {
    grid-template-columns: 1fr;
  }

  .method-visual {
    position: static;
  }

  .method-visual-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .locations-layout {
    grid-template-columns: 1fr;
  }

  .locations-map-placeholder {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet narrow: ≤ 900px */
@media (max-width: 900px) {
  .main-nav { display: none; }

  .nav-toggle {
    display: flex;
  }

  .header-inner .btn-primary {
    display: none;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent), rgba(0,168,232,0.2));
    margin-top: 0;
  }

  .process-step {
    flex: none;
    width: 100%;
    max-width: 420px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card--wide {
    grid-template-columns: 1fr;
  }

  .package-card--wide .btn {
    grid-column: 1;
  }

  .onsite-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .section { padding-block: 3.5rem; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: 1fr; }

  .pain-grid { grid-template-columns: 1fr; }

  .focus-grid { grid-template-columns: 1fr; }

  .method-visual-inner { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .hero-trust .sep { display: none; }
  .hero-trust { flex-direction: column; gap: 0.35rem; }

  .pain-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-brand { grid-column: 1; }

  .sticky-mobile-cta { display: block; }

  /* Add bottom padding to avoid sticky CTA overlap */
  body { padding-bottom: 72px; }
}

/* ── ANIMATION / SCROLL ────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .pain-card,
  .focus-card,
  .trust-item,
  .package-card {
    will-change: transform;
  }
}

/* ── FOCUS VISIBLE ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-mid);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey-cool);
}

/* ── SELECTION ─────────────────────────────────────────────── */
::selection {
  background: var(--accent);
  color: var(--navy-deep);
}
