/* =============================================================
   BYSTRATA WORDPRESS THEME — bystrata.css
   Mobile-first: base = mobile, min-width queries scale up
   ============================================================= */

/* ── Reset & custom properties ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #FF6B00;
  --orange-d:    #D95C00;
  --orange-glow: rgba(255,107,0,0.18);
  --teal:        #00C9A7;
  --purple:      #A78BFA;
  --bg:          #080810;
  --bg-2:        #0f0f1a;
  --bg-3:        #161625;
  --bg-4:        #1d1d30;
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,107,0,0.4);
  --white:       #ffffff;
  --muted:       #8888aa;
  --light:       #e8e8f0;
  --font-body:   'Space Grotesk', sans-serif;
  --font-head:   'Syne', sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:           0.3s;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ─────────────────────────────────────────────── */
.container { width: min(1200px, 92%); margin-inline: auto; }

/* ── Lucide icons ──────────────────────────────────────────── */
svg.icon, i[data-lucide] { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.btn i[data-lucide], .btn svg.icon { width: 18px; height: 18px; }
.service-card__icon-wrap i[data-lucide] { width: 28px; height: 28px; color: var(--card-clr, var(--orange)); stroke-width: 1.75; }
.how__icon-wrap i[data-lucide]          { width: 32px; height: 32px; stroke-width: 1.5; color: var(--orange); }
.pillar i[data-lucide]                  { width: 16px; height: 16px; color: var(--orange); stroke-width: 2; }
.ticker__track i[data-lucide]           { width: 14px; height: 14px; stroke-width: 2; vertical-align: -2px; }
.map__pin i[data-lucide]                { width: 20px; height: 20px; color: var(--orange); stroke-width: 2; }
.t-card__stars i[data-lucide]           { width: 15px; height: 15px; color: #facc15; fill: #facc15; stroke: none; }
.contact__icon-wrap i[data-lucide]      { width: 16px; height: 16px; color: var(--orange); stroke-width: 2; }
.perk-card__icon i[data-lucide]         { width: 22px; height: 22px; color: var(--orange); stroke-width: 1.75; }
.map__header i[data-lucide]             { width: 15px; height: 15px; vertical-align: -2px; }
.service-card__link i[data-lucide]      { width: 15px; height: 15px; transition: transform var(--t); }
.service-card:hover .service-card__link i[data-lucide] { transform: translateX(4px); }

/* phone mockup */
.app__search-icon                    { width: 12px !important; height: 12px !important; color: var(--muted) !important; flex-shrink: 0; }
.app__loc-arrow                      { width: 11px !important; height: 11px !important; color: var(--muted) !important; }
.app__categories i[data-lucide]      { width: 10px; height: 10px; }
.app__section-label i[data-lucide]   { width: 11px; height: 11px; color: var(--orange); }
.app__location i[data-lucide]:first-child { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; }
.nearby__icon i[data-lucide]         { width: 15px; height: 15px; color: var(--nc); stroke-width: 1.75; }

/* ── Typography helpers ────────────────────────────────────── */
.section__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section__label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 1rem;
}
.section__title span { color: var(--orange); }
.section__head { max-width: 560px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .section__label { justify-content: center; }
.section__head--center .section__label::before { display: none; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all var(--t) var(--ease);
  text-decoration: none; border: 1.5px solid transparent; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 24px var(--orange-glow); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.12); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn--nav { background: var(--orange); color: var(--white); padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn--nav:hover { background: var(--orange-d); }
.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Scroll-reveal ─────────────────────────────────────────── */
[data-anim] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* ── Badge dot ─────────────────────────────────────────────── */
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  display: inline-block; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0.08); }
}

/* =============================================================
   NAV — mobile-first (hamburger by default)
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.9rem 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled {
  background: rgba(8,8,16,0.94);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.6rem 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { text-decoration: none; display: flex; align-items: center; }
.logo__img { height: 36px; width: auto; object-fit: contain; }
.logo__img--footer { height: 30px; opacity: 0.85; }

/* Mobile: links are a fullscreen overlay */
.nav__links {
  display: none;
  position: fixed; inset: 0; z-index: 101;
  background: rgba(8,8,16,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.nav__links.open { display: flex; }
.nav__links a { color: var(--light); text-decoration: none; font-size: 1.2rem; font-weight: 600; transition: color var(--t); }
.nav__links a:hover, .nav__links a.active { color: var(--orange); }
.nav__links a.active:not(.btn--nav) { border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

.nav__hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 102;
  -webkit-tap-highlight-color: transparent;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* Desktop nav */
@media (min-width: 768px) {
  .nav__links {
    display: flex; position: static;
    background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    flex-direction: row; align-items: center;
    gap: 2rem; inset: auto;
  }
  .nav__links a { font-size: 0.88rem; color: var(--muted); font-weight: 500; }
  .nav__hamburger { display: none; }
}

/* =============================================================
   HERO — mobile-first (single column)
   ============================================================= */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 6rem 0 3rem;
}
.hero__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}
.hero__glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,107,0,0.12) 0%, transparent 65%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero__copy { display: flex; flex-direction: column; gap: 1.25rem; text-align: center; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 500; color: #4ade80;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 11vw, 5rem);
  font-weight: 800; line-height: 1.0; color: var(--white); letter-spacing: -0.02em;
}
.title__gradient {
  background: linear-gradient(135deg, #FF6B00, #ffaa60);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__sub { max-width: 480px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.hero__cta { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 340px; }
.hero__stats {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap;
  padding-top: 1rem; border-top: 1px solid var(--border); width: 100%;
}
.hero__stat { display: flex; flex-direction: column; align-items: center; }
.stat__num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat__unit { font-size: 0.95rem; color: var(--orange); font-weight: 700; }
.stat__label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }
.hero__stat-div { width: 1px; height: 32px; background: var(--border); }

.hero__scroll-cue {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  display: none; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}
.scroll__line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); }

/* Phone hidden on mobile */
.hero__phone { display: none; }

@media (min-width: 900px) {
  .hero { padding: 7rem 0 4rem; }
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero__copy { text-align: left; align-items: flex-start; }
  .hero__cta { flex-direction: row; width: auto; max-width: none; }
  .hero__stats { justify-content: flex-start; flex-wrap: nowrap; }
  .hero__phone { display: flex; align-items: center; justify-content: center; position: relative; }
  .hero__scroll-cue { display: flex; }
}

/* ── Phone Mockup ──────────────────────────────────────────── */
.phone__glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,107,0,0.14) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.phone__frame {
  position: relative; z-index: 1; width: 290px;
  background: var(--bg-2); border: 1px solid rgba(255,255,255,0.1); border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }
.phone__notch { margin: 14px auto 0; width: 80px; height: 20px; background: var(--bg); border-radius: 50px; }
.phone__screen { padding: 0.9rem 0.9rem 1.4rem; display: flex; flex-direction: column; gap: 0.65rem; }

.app__location { display: flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; font-weight: 600; color: var(--white); }
.app__location span { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app__welcome-title { font-size: 0.8rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.app__search {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem; font-size: 0.7rem; color: var(--muted);
  display: flex; gap: 0.35rem; align-items: center;
}
.app__section-label {
  font-size: 0.62rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.3rem;
}
.app__categories { display: flex; gap: 0.35rem; }
.app__cat {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 20px; padding: 0.28rem 0.55rem;
  font-size: 0.6rem; font-weight: 600; color: var(--muted);
  white-space: nowrap; display: flex; align-items: center; gap: 0.22rem;
}
.app__cat.active { background: var(--orange-glow); border-color: var(--orange); color: var(--orange); }
.app__nearby { display: flex; flex-direction: column; gap: 0.45rem; }
.nearby__card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem; display: flex; align-items: center; gap: 0.55rem;
}
.nearby__icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: color-mix(in srgb, var(--nc) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--nc) 25%, transparent);
  display: grid; place-items: center;
}
.nearby__info { flex: 1; min-width: 0; }
.nearby__info strong { display: block; font-size: 0.67rem; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nearby__info span  { font-size: 0.58rem; color: var(--muted); }
.nearby__open {
  font-size: 0.55rem; font-weight: 700; color: #4ade80;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
  padding: 0.12rem 0.4rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}

/* =============================================================
   TICKER
   ============================================================= */
.ticker {
  background: var(--orange); padding: 0.8rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker__track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker__track span { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.03em; display: inline-flex; align-items: center; gap: 0.4rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   SERVICES
   ============================================================= */
.services { padding: 5rem 0; background: var(--bg); }
.services .section__head { margin-bottom: 2.5rem; }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

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

.service-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--card-clr, var(--orange)); opacity: 0; transition: opacity var(--t);
}
.service-card:hover { transform: translateY(-5px); border-color: var(--border-h); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; }
.service-card__icon-wrap {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--card-clr) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--card-clr) 25%, transparent);
  display: grid; place-items: center;
}
.service-card__tag { font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); font-weight: 700; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.service-card__link {
  color: var(--orange); text-decoration: none; font-size: 0.85rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--t);
}
.service-card:hover .service-card__link { gap: 0.6rem; }

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how { padding: 5rem 0; background: var(--bg-2); position: relative; overflow: hidden; }
.how__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,107,0,0.06) 0%, transparent 70%);
}
.how .section__head { margin-bottom: 3rem; }
.how__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; position: relative; }

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

.how__step {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.how__step:hover { border-color: var(--border-h); transform: translateY(-4px); }
.how__line { display: none; } /* connector lines only on desktop */
@media (min-width: 900px) {
  .how__line {
    display: block; position: absolute; top: 50%; left: 100%; transform: translateY(-50%);
    width: 1.25rem; height: 2px; background: var(--border);
  }
  .how__line--last { display: none; }
}
.how__num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800;
  color: var(--orange); opacity: 0.08; position: absolute; top: 0.75rem; right: 0.75rem; line-height: 1;
}
.how__icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.how__step h4 { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
.how__step p  { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* =============================================================
   VENDORS
   ============================================================= */
.vendors { padding: 5rem 0; background: var(--bg); }
.vendors__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

@media (min-width: 900px) { .vendors__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.vendors__text { display: flex; flex-direction: column; gap: 1.25rem; }
.vendors__text p:not(.section__label) { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.vendors__pillars { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.pillar {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.4rem 0.9rem; font-size: 0.8rem; font-weight: 600; color: var(--light);
}

/* Map card */
.vendors__map-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.map__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 600; color: var(--light);
  gap: 0.5rem;
}
.map__live { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: #4ade80; }
.map__area {
  height: 200px;
  background:
    radial-gradient(circle at 48% 32%, rgba(255,107,0,0.08) 0%, transparent 40%),
    radial-gradient(circle at 35% 60%, rgba(0,201,167,0.06) 0%, transparent 35%),
    linear-gradient(160deg, var(--bg-3) 0%, var(--bg-4) 100%);
  position: relative; overflow: hidden;
}
.map__ring {
  position: absolute; top: 30%; left: 46%; transform: translate(-50%,-50%);
  width: 110px; height: 110px; border-radius: 50%;
  border: 1px solid rgba(255,107,0,0.2);
  animation: ring-pulse 2.5s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%,-50%) scale(1.2); opacity: 0.2; }
}
.map__pin { position: absolute; display: flex; flex-direction: column; align-items: center; }
.pin__label {
  background: rgba(8,8,16,0.85); border: 1px solid var(--border); border-radius: 6px;
  padding: 0.12rem 0.4rem; font-size: 0.58rem; color: var(--light); white-space: nowrap; margin-top: 0.1rem;
}
.map__footer { display: flex; border-top: 1px solid var(--border); }
.map__stat {
  flex: 1; padding: 0.9rem; text-align: center; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.map__stat:last-child { border-right: none; }
.map__stat strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); }
.map__stat span   { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { padding: 5rem 0; background: var(--bg-2); }
.testimonials .section__head { margin-bottom: 2.5rem; }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

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

.testimonial-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color var(--t), transform var(--t);
}
.testimonial-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.testimonial-card--featured {
  background: linear-gradient(160deg, rgba(255,107,0,0.08), var(--bg-3) 60%);
  border-color: rgba(255,107,0,0.2);
}
.t-card__stars { display: flex; gap: 3px; }
.testimonial-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; flex: 1; font-style: italic; }
.t-card__author { display: flex; align-items: center; gap: 0.75rem; }
.t-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: color-mix(in srgb, var(--av-clr) 20%, transparent);
  border: 1.5px solid var(--av-clr);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.78rem; color: var(--av-clr);
}
.t-card__author strong { display: block; color: var(--white); font-size: 0.88rem; }
.t-card__author span   { font-size: 0.72rem; color: var(--muted); }

/* =============================================================
   JOIN
   ============================================================= */
.join { padding: 5rem 0; background: var(--bg); position: relative; overflow: hidden; }
.join__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 100% 50%, rgba(255,107,0,0.06) 0%, transparent 60%);
}
.join__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }

@media (min-width: 900px) { .join__inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }

.join__text { display: flex; flex-direction: column; gap: 1.25rem; }
.join__text p:not(.section__label) { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.join__perks { display: flex; flex-direction: column; gap: 1rem; }
.perk-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1.1rem; display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color var(--t), transform var(--t);
}
.perk-card:hover { border-color: var(--border-h); transform: translateX(4px); }
.perk-card__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.perk-card strong { display: block; color: var(--white); font-size: 0.92rem; margin-bottom: 0.2rem; }
.perk-card p { color: var(--muted); font-size: 0.83rem; line-height: 1.5; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { padding: 5rem 0; background: var(--bg-2); }
.contact__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }

@media (min-width: 900px) { .contact__inner { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }

.contact__info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__info > p { color: var(--muted); font-size: 1rem; }
.contact__list { display: flex; flex-direction: column; gap: 1rem; }
.contact__list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact__icon-wrap {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: var(--bg-3); border: 1px solid var(--border); display: grid; place-items: center;
}
.contact__list address,
.contact__list a,
.contact__list span {
  font-style: normal; color: var(--muted); font-size: 0.88rem;
  line-height: 1.6; text-decoration: none; transition: color var(--t);
}
.contact__list a:hover, .contact__list a:focus-visible { color: var(--orange); }
.wa-link { color: #25D366 !important; }
.wa-link:hover { color: #1da851 !important; }

.contact__form {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
}
.contact__form h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--white); margin-bottom: 1.75rem; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 540px) { .form__row { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.form__group { margin-bottom: 1.1rem; }
.form__group label {
  display: block; font-size: 0.75rem; font-weight: 600; color: var(--muted);
  margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--t); resize: vertical; appearance: none;
  /* 16px min to prevent iOS zoom */
  font-size: max(16px, 0.9rem);
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form__group input::placeholder,
.form__group textarea::placeholder { color: #44445a; }
.form__group select option { background: var(--bg-2); }
.form__success { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; color: #4ade80; min-height: 1.2rem; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.75rem; text-align: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.footer__brand p { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
.footer__nav a { font-size: 0.83rem; color: var(--muted); text-decoration: none; transition: color var(--t); }
.footer__nav a:hover { color: var(--white); }
.footer__legal { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.footer__legal a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color var(--t); }
.footer__legal a:hover { color: var(--orange); }
.footer__legal p { font-size: 0.72rem; color: #44445a; }

@media (min-width: 900px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__brand { align-items: flex-start; }
  .footer__legal { align-items: flex-end; }
}

/* =============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================= */
.wa-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 999;
  display: flex; align-items: center; gap: 0; /* collapsed on mobile */
  background: #25D366; color: #fff; text-decoration: none;
  padding: 0.7rem; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), padding var(--t), gap var(--t);
  overflow: hidden; max-width: 52px;
  -webkit-tap-highlight-color: transparent;
}
.wa-float:hover, .wa-float:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.3);
}
.wa-float:active { transform: scale(0.97); }
.wa-float__icon { width: 34px; height: 34px; flex-shrink: 0; }
.wa-float__label { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; line-height: 1; opacity: 0; width: 0; overflow: hidden; white-space: nowrap; }
.wa-float__ping {
  position: absolute; top: 5px; right: 5px;
  width: 9px; height: 9px; border-radius: 50%; background: #fff; opacity: 0;
  animation: wa-ping 2.5s ease-out 1.5s infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(0.8); opacity: 0.8; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Expanded label on desktop */
@media (min-width: 640px) {
  .wa-float { padding: 0.7rem 1.2rem 0.7rem 0.7rem; gap: 0.6rem; max-width: 220px; }
  .wa-float__label { opacity: 1; width: auto; }
  .wa-float.collapsed { padding: 0.7rem; gap: 0; max-width: 52px; }
  .wa-float.collapsed .wa-float__label { opacity: 0; width: 0; }
}

/* =============================================================
   ACCESSIBILITY & MOTION
   ============================================================= */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-anim] { opacity: 1; transform: none; }
}

/* WordPress admin bar offset */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }
