/*
Theme Name:  SameWay
Theme URI:   https://same-way.co.uk
Author:      Sentrixa
Author URI:  https://sentrixa.co.uk
Description: Official theme for SameWay — free community lift-sharing across the UK. Built by Sentrixa.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sameway
Tags:        custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, full-width-template, footer-widgets
*/

/* ── TOKENS ─────────────────────────────────────────────────────────────────── */
:root {
  --sw-teal:       #1a6070;
  --sw-teal-dark:  #0d4a55;
  --sw-teal-mid:   #2090a0;
  --sw-teal-pale:  #e6f4f6;
  --sw-orange:     #f07820;
  --sw-orange-dk:  #d06010;
  --sw-orange-lt:  #fff3e8;
  --sw-eco:        #40a080;
  --sw-eco-pale:   #e8f5f0;
  --sw-bg:         #f5f9fa;
  --sw-white:      #ffffff;
  --sw-text:       #1a2a2a;
  --sw-text-mid:   #3a4a4a;
  --sw-text-soft:  #6a8080;
  --sw-border:     #cde4e8;
  --sw-shadow:     0 4px 24px rgba(26,96,112,.12);
  --sw-shadow-lg:  0 12px 48px rgba(26,96,112,.18);
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --max:   1140px;
}

/* ── RESET ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--sw-text);
  background: var(--sw-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: 'Nunito', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.sw-mark       { color: var(--sw-teal); }
.sw-mark span,
.sw-accent     { color: var(--sw-orange); }

.tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sw-teal-mid);
  background: var(--sw-teal-pale);
  border-radius: 100px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}
.tag-orange { color: var(--sw-orange-dk); background: var(--sw-orange-lt); }
.tag-eco    { color: var(--sw-eco);       background: var(--sw-eco-pale);  }
.tag-white  { color: rgba(255,255,255,.9); background: rgba(255,255,255,.15); }

/* ── LAYOUT ──────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sw-section        { padding: 5rem 0; }
.sw-section--pale  { background: var(--sw-bg); }
.sw-section--teal  { background: var(--sw-teal); color: var(--sw-white); }
.sw-section--dark  { background: var(--sw-teal-dark); color: var(--sw-white); }
.sw-section--eco   { background: var(--sw-eco-pale); }
.sw-section--orange-lt { background: var(--sw-orange-lt); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--sw-text-mid);
  max-width: 560px;
  margin: .75rem auto 0;
}
.section-header--light p { color: rgba(255,255,255,.8); }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: .8rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--sw-orange);
  color: var(--sw-white);
  box-shadow: 0 4px 16px rgba(240,120,32,.35);
}
.btn-primary:hover { background: var(--sw-orange-dk); box-shadow: 0 6px 20px rgba(240,120,32,.45); }
.btn-secondary {
  background: var(--sw-white);
  color: var(--sw-teal);
  border: 2px solid var(--sw-teal);
}
.btn-secondary:hover { background: var(--sw-teal-pale); }
.btn-ghost {
  background: transparent;
  color: var(--sw-white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-white { background: var(--sw-white); color: var(--sw-teal); }
.btn-white:hover { background: var(--sw-teal-pale); }
.btn-sm { font-size: .88rem; padding: .6rem 1.4rem; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--sw-white);
  border-bottom: 1px solid var(--sw-border);
  box-shadow: 0 2px 12px rgba(26,96,112,.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.site-logo img { height: 40px; width: auto; }
.site-logo__text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--sw-teal);
  line-height: 1;
}
.site-logo__text span { color: var(--sw-orange); }

/* WordPress nav menus */
.main-navigation { display: flex; align-items: center; gap: 2rem; }
.main-navigation ul { display: flex; gap: 2rem; align-items: center; }
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--sw-text-mid);
  transition: color .2s;
  white-space: nowrap;
}
.main-navigation ul li a:hover { color: var(--sw-teal); }
.main-navigation ul li.current-menu-item > a { color: var(--sw-teal); }
/* Dropdown */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--sw-shadow-lg);
  border: 1px solid var(--sw-border);
  padding: .5rem;
  min-width: 200px;
  flex-direction: column;
  gap: 0;
}
.main-navigation ul li:hover > ul { display: flex; }
.main-navigation ul ul li a {
  display: block;
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
}
.main-navigation ul ul li a:hover { background: var(--sw-teal-pale); }
.nav-cta {
  background: var(--sw-orange) !important;
  color: var(--sw-white) !important;
  padding: .5rem 1.4rem !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--sw-orange-dk) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sw-teal);
  border-radius: 2px;
  transition: .3s;
}

/* ── AD BANNER ───────────────────────────────────────────────────────────────── */
.ad-banner {
  background: var(--sw-bg);
  border-bottom: 1px solid var(--sw-border);
  padding: .6rem 1.5rem;
  text-align: center;
}
.ad-banner--footer {
  border-top: 1px solid var(--sw-border);
  border-bottom: none;
}
.ad-banner .widget { display: inline-block; }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--sw-teal-pale) 0%, var(--sw-white) 60%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero__tagline {
  font-size: .9rem;
  font-weight: 600;
  color: var(--sw-teal-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__tagline::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sw-orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero__headline { margin-bottom: 1.25rem; }
.hero__headline em { font-style: normal; color: var(--sw-orange); }
.hero__sub { font-size: 1.15rem; color: var(--sw-text-mid); margin-bottom: 2rem; max-width: 480px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-bottom: 2.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--sw-text-mid);
}
.hero__trust-item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sw-eco);
}
.hero__visual { display: flex; justify-content: center; position: relative; }
.hero__phone-wrap { position: relative; }
.hero__phone {
  width: 280px;
  height: 520px;
  background: var(--sw-teal-dark);
  border-radius: 40px;
  border: 8px solid var(--sw-teal);
  box-shadow: var(--sw-shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__statusbar {
  height: 28px;
  background: var(--sw-teal-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.phone__statusbar span { font-size: .6rem; color: rgba(255,255,255,.7); font-weight: 600; }
.phone__screen { flex: 1; background: var(--sw-bg); padding: 1rem; overflow: hidden; }
.phone__header {
  background: var(--sw-teal);
  margin: -1rem -1rem 0;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone__header-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem; color: white; }
.phone__header-title span { color: var(--sw-orange); }
.phone__hello { padding: .75rem 0 .5rem; font-size: .72rem; font-weight: 600; color: var(--sw-text-mid); }
.phone__search {
  background: white;
  border-radius: var(--r-sm);
  padding: .6rem .75rem;
  font-size: .68rem;
  color: var(--sw-text-soft);
  margin-bottom: .75rem;
  border: 1.5px solid var(--sw-border);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.phone__now-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .62rem;
  font-weight: 700;
  color: var(--sw-eco);
  background: var(--sw-eco-pale);
  border-radius: 100px;
  padding: .15rem .5rem;
  margin-bottom: .5rem;
}
.phone__now-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sw-eco); animation: sw-pulse 1.4s infinite; }
@keyframes sw-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.phone__label { font-size: .65rem; font-weight: 700; color: var(--sw-text-mid); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.phone__ride-card {
  background: white;
  border-radius: var(--r-sm);
  padding: .6rem .75rem;
  margin-bottom: .5rem;
  border: 1.5px solid var(--sw-border);
}
.phone__ride-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .2rem; }
.phone__ride-name { font-size: .7rem; font-weight: 700; color: var(--sw-teal); }
.phone__ride-time { font-size: .62rem; color: var(--sw-text-soft); }
.phone__ride-route { font-size: .63rem; color: var(--sw-text-mid); margin-bottom: .25rem; }
.phone__ride-tags { display: flex; gap: .3rem; flex-wrap: wrap; }
.phone__ride-tag {
  font-size: .55rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: 100px;
  background: var(--sw-teal-pale);
  color: var(--sw-teal);
}
.phone__ride-tag.orange { background: var(--sw-orange-lt); color: var(--sw-orange-dk); }
.phone__ride-tag.eco    { background: var(--sw-eco-pale);  color: var(--sw-eco); }
.phone__nav {
  background: white;
  border-top: 1px solid var(--sw-border);
  padding: .5rem 0 .25rem;
  display: flex;
  justify-content: space-around;
}
.phone__nav-item { font-size: .5rem; font-weight: 600; color: var(--sw-text-soft); text-align: center; }
.phone__nav-item.active { color: var(--sw-teal); }
.phone__nav-dot { width: 14px; height: 3px; border-radius: 2px; background: currentColor; margin: 0 auto .15rem; }
.hero__stat {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  padding: .6rem 1rem;
  box-shadow: var(--sw-shadow);
  font-family: 'Nunito', sans-serif;
}
.hero__stat-num  { font-size: 1.3rem; font-weight: 900; color: var(--sw-teal); }
.hero__stat-label { font-size: .72rem; font-weight: 600; color: var(--sw-text-soft); }
.hero__stat--1 { left: -40px; top: 80px; }
.hero__stat--2 { right: -30px; bottom: 100px; }
.hero__stat--2 .hero__stat-num { color: var(--sw-orange); }

/* ── STEPS ───────────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.step {
  background: var(--sw-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sw-shadow);
  border: 1.5px solid var(--sw-border);
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sw-shadow-lg); }
.step__number { font-family: 'Nunito', sans-serif; font-size: 3rem; font-weight: 900; color: var(--sw-teal-pale); line-height: 1; margin-bottom: .5rem; }
.step__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--sw-teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.step__icon.orange { background: var(--sw-orange-lt); }
.step__icon.eco    { background: var(--sw-eco-pale); }
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--sw-teal); }
.step p  { font-size: .95rem; color: var(--sw-text-mid); }

/* ── MODES ───────────────────────────────────────────────────────────────────── */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.mode-card { border-radius: var(--r-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mode-card--adhoc { background: var(--sw-teal); color: white; }
.mode-card--buddy { background: var(--sw-orange-lt); }
.mode-card__icon { font-size: 2.5rem; }
.mode-card__title { font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 800; }
.mode-card--adhoc .mode-card__title { color: white; }
.mode-card--buddy .mode-card__title { color: var(--sw-orange-dk); }
.mode-card p { font-size: .98rem; line-height: 1.6; }
.mode-card--adhoc p { color: rgba(255,255,255,.9); }
.mode-card--buddy p { color: var(--sw-text-mid); }
.mode-card__pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.2);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 100px;
  align-self: flex-start;
}
.mode-card--buddy .mode-card__pill { background: var(--sw-orange); }

/* ── SAFETY ──────────────────────────────────────────────────────────────────── */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.safety-list { display: flex; flex-direction: column; gap: 1.25rem; }
.safety-item { display: flex; gap: 1rem; align-items: flex-start; }
.safety-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--sw-teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.safety-item__text h4 { font-size: 1rem; color: var(--sw-teal); margin-bottom: .2rem; }
.safety-item__text p  { font-size: .9rem; color: var(--sw-text-mid); margin: 0; }
.safety-visual {
  background: var(--sw-teal);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.safety-visual__title { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; opacity: .9; }
.safety-stat { padding: 1rem; background: rgba(255,255,255,.1); border-radius: var(--r-md); }
.safety-stat__num   { font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--sw-orange); line-height: 1.1; }
.safety-stat__label { font-size: .83rem; opacity: .8; margin: 0; }

/* ── TABS ────────────────────────────────────────────────────────────────────── */
.sw-tabs { display: flex; gap: .5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.sw-tab-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .6rem 1.5rem;
  border-radius: 100px;
  border: 2px solid var(--sw-border);
  background: var(--sw-white);
  color: var(--sw-text-mid);
  cursor: pointer;
  transition: all .2s;
}
.sw-tab-btn.active, .sw-tab-btn:hover { background: var(--sw-teal); color: white; border-color: var(--sw-teal); }
.sw-tab-panel { display: none; }
.sw-tab-panel.active { display: block; }
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.role-points { display: flex; flex-direction: column; gap: 1rem; }
.role-point { display: flex; gap: .85rem; align-items: flex-start; }
.role-point__bullet {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sw-teal-pale);
  color: var(--sw-teal);
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.role-point__bullet.orange { background: var(--sw-orange-lt); color: var(--sw-orange-dk); }
.role-point__bullet.eco    { background: var(--sw-eco-pale);  color: var(--sw-eco); }
.role-point p { font-size: .95rem; color: var(--sw-text-mid); margin: 0; }
.legal-box {
  background: var(--sw-teal-pale);
  border-left: 4px solid var(--sw-teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.5rem;
}
.legal-box.orange { background: var(--sw-orange-lt); border-color: var(--sw-orange); }
.legal-box__title { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: var(--sw-teal); margin-bottom: .75rem; }
.legal-box.orange .legal-box__title { color: var(--sw-orange-dk); }
.legal-box p { font-size: .9rem; color: var(--sw-text-mid); }

/* ── RELAY ───────────────────────────────────────────────────────────────────── */
.relay-diagram {
  display: flex;
  align-items: center;
  margin: 2.5rem 0;
  overflow-x: auto;
  padding: 1rem 0;
  gap: 0;
}
.relay-stop { display: flex; flex-direction: column; align-items: center; gap: .5rem; flex-shrink: 0; }
.relay-stop__bubble {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sw-teal);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--sw-shadow);
  border: 3px solid white;
}
.relay-stop__bubble.orange { background: var(--sw-orange); }
.relay-stop__bubble.eco    { background: var(--sw-eco); }
.relay-stop__label { font-family: 'Nunito', sans-serif; font-size: .78rem; font-weight: 700; color: white; text-align: center; max-width: 80px; }
.relay-stop__sub   { font-size: .65rem; color: rgba(255,255,255,.7); text-align: center; }
.relay-arrow { flex: 1; min-width: 40px; display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: 0 .25rem; }
.relay-arrow__line {
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sw-teal-mid), var(--sw-orange));
  border-radius: 2px;
  position: relative;
}
.relay-arrow__line::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left: 8px solid var(--sw-orange);
}
.relay-arrow__label { font-size: .65rem; color: rgba(255,255,255,.7); font-weight: 600; white-space: nowrap; }

/* ── FEATURE CARDS (teal bg) ─────────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.feature {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.5rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s;
}
.feature:hover { background: rgba(255,255,255,.15); }
.feature__icon  { font-size: 1.8rem; }
.feature__title { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; }
.feature__desc  { font-size: .88rem; opacity: .85; line-height: 1.5; margin: 0; }

/* ── ECO STATS ───────────────────────────────────────────────────────────────── */
.eco-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.eco-stat { text-align: center; padding: 2rem; background: var(--sw-white); border-radius: var(--r-lg); box-shadow: var(--sw-shadow); }
.eco-stat__num   { font-family: 'Nunito', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--sw-eco); line-height: 1; margin-bottom: .25rem; }
.eco-stat__label { font-size: .9rem; color: var(--sw-text-mid); margin: 0; }

/* ── QUOTES ──────────────────────────────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.quote-card {
  background: var(--sw-white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--sw-shadow);
  display: flex; flex-direction: column; gap: .85rem;
}
.quote-card__stars  { color: var(--sw-orange); font-size: 1rem; letter-spacing: .1em; }
.quote-card__text   { font-size: .95rem; color: var(--sw-text-mid); line-height: 1.6; font-style: italic; margin: 0; }
.quote-card__author { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .88rem; color: var(--sw-teal); }

/* ── DOWNLOAD ────────────────────────────────────────────────────────────────── */
.download-section { background: linear-gradient(135deg, var(--sw-teal-dark) 0%, var(--sw-teal) 100%); color: white; text-align: center; padding: 5rem 0; }
.download-section h2 { color: white; margin-bottom: 1rem; }
.download-section > .container > p { font-size: 1.1rem; opacity: .85; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.store-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--sw-teal-dark);
  color: white;
  padding: .65rem 1.2rem;
  border-radius: var(--r-sm);
  font-family: 'Nunito', sans-serif;
  transition: background .2s, transform .15s;
  border: 1px solid rgba(255,255,255,.2);
}
.store-btn:hover { background: rgba(0,0,0,.3); transform: translateY(-2px); }
.store-btn__icon { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn__sub  { font-size: .62rem; opacity: .8; line-height: 1; display: block; }
.store-btn__name { font-size: .9rem; font-weight: 700; line-height: 1.2; display: block; }
.store-btn--disabled { opacity: .6; cursor: default; }
.store-btn--disabled:hover { transform: none; }
.download-note { margin-top: 1.5rem !important; font-size: .85rem !important; opacity: .6 !important; }

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.faq-item { background: var(--sw-white); border-radius: var(--r-md); border: 1.5px solid var(--sw-border); overflow: hidden; }
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--sw-teal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--sw-teal-pale); }
.faq-item summary::after { content: '+'; font-size: 1.4rem; line-height: 1; color: var(--sw-orange); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.2rem; font-size: .93rem; color: var(--sw-text-mid); line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--sw-teal-dark); color: rgba(255,255,255,.8); padding: 3.5rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__logo { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900; color: white; margin-bottom: .75rem; display: block; }
.footer__logo span { color: var(--sw-orange); }
.footer__brand p { font-size: .9rem; line-height: 1.6; opacity: .8; max-width: 260px; }
.footer-widget-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: white;
  margin-bottom: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-widget-area ul li a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .5rem;
  transition: color .2s;
}
.footer-widget-area ul li a:hover { color: var(--sw-orange); }
/* WordPress menu in footer */
.footer-nav ul { display: flex; flex-direction: column; }
.footer-nav ul li a { font-size: .88rem; color: rgba(255,255,255,.7); display: block; margin-bottom: .5rem; transition: color .2s; }
.footer-nav ul li a:hover { color: var(--sw-orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  opacity: .65;
}
.footer__sentrixa a { color: var(--sw-orange); opacity: 1; transition: opacity .2s; }
.footer__sentrixa a:hover { opacity: .8; }

/* ── INNER PAGE STYLES ───────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--sw-teal-pale) 0%, var(--sw-white) 70%);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p  { font-size: 1.1rem; color: var(--sw-text-mid); max-width: 560px; margin: 0 auto; }
.content-area { padding: 4rem 0; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.entry-content h2 { margin: 2rem 0 1rem; color: var(--sw-teal); }
.entry-content h3 { margin: 1.5rem 0 .75rem; }
.entry-content p  { color: var(--sw-text-mid); }
.entry-content ul { list-style: disc; padding-left: 1.5rem; color: var(--sw-text-mid); }
.entry-content ul li { margin-bottom: .4rem; }
.sidebar .widget { margin-bottom: 2rem; }

/* ── WP COMMENT STYLES ───────────────────────────────────────────────────────── */
.comments-area { padding: 3rem 0; border-top: 1px solid var(--sw-border); }
.comment-respond { background: var(--sw-bg); border-radius: var(--r-lg); padding: 2rem; }
.comment-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .3rem; color: var(--sw-text-mid); }
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  border: 1.5px solid var(--sw-border);
  border-radius: var(--r-sm);
  padding: .6rem .9rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--sw-text);
  margin-bottom: 1rem;
  transition: border-color .2s;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--sw-teal); }
.comment-form .submit {
  background: var(--sw-orange);
  color: white;
  border: none;
  padding: .75rem 2rem;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}
.comment-form .submit:hover { background: var(--sw-orange-dk); }

/* ── WP ADMIN BAR OFFSET ─────────────────────────────────────────────────────── */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ── SCROLL ANIMATION ────────────────────────────────────────────────────────── */
.sw-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease;
}
.sw-animate.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .sw-animate { opacity: 1 !important; transform: none !important; } }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner        { grid-template-columns: 1fr; text-align: center; }
  .hero__visual       { order: -1; }
  .hero__phone        { width: 240px; height: 440px; }
  .hero__trust        { justify-content: center; }
  .hero__actions      { justify-content: center; }
  .hero__stat--1      { left: 10px; top: 40px; }
  .hero__stat--2      { right: 10px; bottom: 60px; }
  .hero__tagline      { justify-content: center; }
  .hero__sub          { margin-left: auto; margin-right: auto; }
  .steps              { grid-template-columns: 1fr; }
  .modes              { grid-template-columns: 1fr; }
  .safety-grid        { grid-template-columns: 1fr; }
  .role-grid          { grid-template-columns: 1fr; }
  .eco-stats          { grid-template-columns: 1fr; }
  .quotes             { grid-template-columns: 1fr; }
  .faq-grid           { grid-template-columns: 1fr; }
  .footer__inner      { grid-template-columns: 1fr 1fr; }
  .content-grid       { grid-template-columns: 1fr; }
  .main-navigation    { display: none; }
  .menu-toggle        { display: flex; }
  .main-navigation.toggled { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 1rem 1.5rem; border-bottom: 1px solid var(--sw-border); box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 199; }
  .main-navigation.toggled ul { flex-direction: column; gap: 0; }
  .main-navigation.toggled ul li a { padding: .65rem 0; border-bottom: 1px solid var(--sw-border); display: block; }
}
@media (max-width: 540px) {
  .sw-section             { padding: 3.5rem 0; }
  .footer__inner          { grid-template-columns: 1fr; }
  .footer__bottom         { flex-direction: column; text-align: center; }
  .hero__phone            { width: 200px; height: 380px; }
  .hero__stat             { display: none; }
}

/* ── ACCESSIBILITY ───────────────────────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--sw-orange); outline-offset: 3px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
