/*
Theme Name: Zing
Theme URI: https://zingwithus.com
Author: Zing Inc.
Description: Zing — Toronto's Hospitality Workforce Platform
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --zing-pink: #E8437F;
  --zing-teal: #2AB5B2;
  --zing-gold: #C9A96E;
  --zing-dark: #1A1A2E;
  --zing-darker: #12121F;
  --zing-light: #F8F6F3;
  --zing-muted: #8E8E9A;
  --zing-white: #FFFFFF;
  --zing-card: #222238;
  --zing-card-border: rgba(255,255,255,0.06);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--zing-dark);
  color: var(--zing-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--zing-card-border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zing-white); text-decoration: none;
}
.nav-logo span { color: var(--zing-pink); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--zing-muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--zing-white); }
.nav-cta-group { display: flex; gap: 12px; align-items: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: var(--transition); border: none; letter-spacing: 0.01em;
}
.btn-primary { background: var(--zing-pink); color: var(--zing-white); }
.btn-primary:hover { background: #d63a70; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(232,67,127,0.3); color: var(--zing-white); }
.btn-teal { background: var(--zing-teal); color: var(--zing-white); }
.btn-teal:hover { background: #239e9c; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(42,181,178,0.3); color: var(--zing-white); }
.btn-outline { background: transparent; color: var(--zing-white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); color: var(--zing-white); }
.btn-ghost { background: transparent; color: var(--zing-muted); padding: 12px 16px; }
.btn-ghost:hover { color: var(--zing-white); }
.btn-gold { background: var(--zing-gold); color: var(--zing-darker); }
.btn-gold:hover { background: #b8994f; transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 160px 40px 80px;
  max-width: 1200px; margin: 0 auto;
}
.page-hero .hero-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.03em; max-width: 750px;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; }
.page-hero .hero-sub {
  font-size: 1.12rem; color: var(--zing-muted);
  max-width: 600px; line-height: 1.7; margin-bottom: 40px;
}

/* ─── SECTIONS ─── */
section {
  padding: 80px 40px;
  max-width: 1200px; margin: 0 auto;
}
.section-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--zing-teal); margin-bottom: 16px;
}
.section-label.pink { color: var(--zing-pink); }
.section-label.gold { color: var(--zing-gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--zing-muted);
  max-width: 600px; line-height: 1.7;
}

/* ─── CARDS ─── */
.card {
  background: var(--zing-card);
  border: 1px solid var(--zing-card-border);
  border-radius: var(--radius); padding: 36px;
  transition: var(--transition);
}
.card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.card p { font-size: 0.92rem; color: var(--zing-muted); line-height: 1.7; }

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-sidebar { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.grid-sidebar-reverse { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }

/* ─── FEATURE LIST ─── */
.feature-list { list-style: none; }
.feature-list li {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
  display: flex; align-items: flex-start; gap: 14px; line-height: 1.6;
}
.feature-list li::before { content: '→'; flex-shrink: 0; font-weight: 700; }
.feature-list.teal li::before { color: var(--zing-teal); }
.feature-list.pink li::before { color: var(--zing-pink); }
.feature-list.gold li::before { color: var(--zing-gold); }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box { border-radius: var(--radius); padding: 40px; margin-top: 40px; }
.highlight-box.teal { background: linear-gradient(135deg,rgba(42,181,178,0.08),rgba(42,181,178,0.02)); border: 1px solid rgba(42,181,178,0.15); }
.highlight-box.pink { background: linear-gradient(135deg,rgba(232,67,127,0.08),rgba(232,67,127,0.02)); border: 1px solid rgba(232,67,127,0.15); }
.highlight-box.gold { background: linear-gradient(135deg,rgba(201,169,110,0.08),rgba(201,169,110,0.02)); border: 1px solid rgba(201,169,110,0.15); }

/* ─── COMPARISON TABLE ─── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.compare-table th {
  text-align: left; padding: 16px 20px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--zing-muted); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-table td {
  padding: 16px 20px; font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
}
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .check { color: var(--zing-teal); font-weight: 700; }
.compare-table .cross { color: var(--zing-muted); }

/* ─── TABS ─── */
.tab-bar {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 50px; padding: 4px;
  width: fit-content; margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; border: none; background: none;
  color: var(--zing-muted); transition: var(--transition);
}
.tab-btn.active { background: var(--zing-white); color: var(--zing-dark); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── STEPS VERTICAL ─── */
.steps-vertical { display: flex; flex-direction: column; }
.step-v {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.step-v-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.step-v h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.step-v p { font-size: 0.92rem; color: var(--zing-muted); line-height: 1.7; }

/* ─── TIER ROWS ─── */
.tier-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--zing-card); border: 1px solid var(--zing-card-border);
  border-radius: var(--radius-sm); transition: var(--transition); margin-bottom: 8px;
}
.tier-row:hover { border-color: rgba(255,255,255,0.12); }
.tier-loops { font-size: 1.1rem; flex-shrink: 0; min-width: 80px; letter-spacing: 2px; }
.tier-name { font-weight: 600; font-size: 0.92rem; min-width: 80px; }
.tier-desc { font-size: 0.85rem; color: var(--zing-muted); flex: 1; }

/* ─── FAQ ACCORDION ─── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--zing-white);
  width: 100%; border: none; background: none;
  font-family: var(--font-body); text-align: left;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--zing-muted); transition: var(--transition); }
.faq-q.open::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { max-height: 500px; padding-bottom: 20px; }
.faq-a p { font-size: 0.92rem; color: var(--zing-muted); line-height: 1.75; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--zing-darker), var(--zing-dark));
  border: 1px solid var(--zing-card-border);
  border-radius: var(--radius); padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: 30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle,rgba(232,67,127,0.08),transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 700; margin-bottom: 16px; position: relative;
}
.cta-banner p { color: var(--zing-muted); font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta-dual { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer {
  padding: 72px 40px 40px;
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--zing-card-border);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--zing-muted); font-size: 0.88rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h6 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zing-muted); margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--zing-white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--zing-card-border);
  font-size: 0.8rem; color: var(--zing-muted);
}
.footer-bottom a { color: var(--zing-muted); text-decoration: none; margin-left: 20px; }

/* ─── STAT GRID ─── */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.stat-card {
  background: var(--zing-card); border: 1px solid var(--zing-card-border);
  border-radius: var(--radius-sm); padding: 28px; text-align: center;
}
.stat-card .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 6px; }
.stat-card .label { font-size: 0.82rem; color: var(--zing-muted); }

/* ─── BLOG CARDS ─── */
.blog-card {
  background: var(--zing-card); border: 1px solid var(--zing-card-border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.blog-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-body { padding: 28px; }
.blog-body .tag {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-body h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 0.85rem; color: var(--zing-muted); line-height: 1.65; }

/* ─── TEAM CARDS ─── */
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 700;
}
.team-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--zing-muted); margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: var(--zing-muted); line-height: 1.6; }

/* ─── CONTACT FORM ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,0.8); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--zing-card); border: 1px solid var(--zing-card-border);
  border-radius: var(--radius-sm); color: var(--zing-white);
  font-family: var(--font-body); font-size: 0.92rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--zing-teal); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ─── HOMEPAGE SPECIFIC ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 140px 40px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; left: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle,rgba(232,67,127,0.12),transparent 70%);
  pointer-events: none; animation: float-glow 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(42,181,178,0.1),transparent 70%);
  pointer-events: none; animation: float-glow 10s ease-in-out infinite reverse;
}
@keyframes float-glow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px,-20px); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(232,67,127,0.1); border: 1px solid rgba(232,67,127,0.2);
  border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  color: var(--zing-pink); margin-bottom: 32px;
  letter-spacing: 0.04em; text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,6vw,4.8rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.03em; max-width: 820px;
  margin-bottom: 28px; animation: fadeUp 0.8s ease 0.15s both;
}
.hero h1 em { font-style: italic; color: var(--zing-teal); }
.hero-sub {
  font-size: 1.18rem; color: var(--zing-muted);
  max-width: 580px; margin-bottom: 44px; line-height: 1.7;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s ease 0.45s both; }
.hero-proof {
  margin-top: 56px; display: flex; gap: 48px; align-items: center;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-proof .stat { text-align: center; }
.hero-proof .stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--zing-gold); }
.hero-proof .stat-label { font-size: 0.78rem; color: var(--zing-muted); margin-top: 4px; }
.hero-proof .divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.dual-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience-card {
  border-radius: var(--radius); padding: 56px 48px;
  position: relative; overflow: hidden; transition: var(--transition);
}
.audience-card:hover { transform: translateY(-4px); }
.audience-card.spots { background: linear-gradient(135deg,rgba(42,181,178,0.08),rgba(42,181,178,0.02)); border: 1px solid rgba(42,181,178,0.15); }
.audience-card.teammates { background: linear-gradient(135deg,rgba(232,67,127,0.08),rgba(232,67,127,0.02)); border: 1px solid rgba(232,67,127,0.15); }
.audience-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 28px; }
.spots .audience-icon { background: rgba(42,181,178,0.15); }
.teammates .audience-icon { background: rgba(232,67,127,0.15); }
.audience-card h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; margin-bottom: 16px; }
.spots h3 { color: var(--zing-teal); }
.teammates h3 { color: var(--zing-pink); }
.audience-card p { color: var(--zing-muted); margin-bottom: 28px; line-height: 1.75; font-size: 0.98rem; }
.audience-card ul { list-style: none; margin-bottom: 36px; }
.audience-card ul li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem; color: rgba(255,255,255,0.85);
  display: flex; align-items: flex-start; gap: 12px;
}
.audience-card ul li::before { content: '→'; flex-shrink: 0; font-weight: 700; }
.spots ul li::before { color: var(--zing-teal); }
.teammates ul li::before { color: var(--zing-pink); }

.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.how-step {
  background: var(--zing-card); border: 1px solid var(--zing-card-border);
  border-radius: var(--radius); padding: 36px 28px; transition: var(--transition);
}
.how-step:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 20px; }
.how-step h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.how-step p { font-size: 0.88rem; color: var(--zing-muted); line-height: 1.65; }

.flywheel-section { text-align: center; }
.flywheel-visual { margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.fw-block { background: var(--zing-card); border: 1px solid var(--zing-card-border); padding: 40px 32px; transition: var(--transition); }
.fw-block:hover { background: rgba(255,255,255,0.04); }
.fw-block:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.fw-block:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.fw-block h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.fw-block p { font-size: 0.88rem; color: var(--zing-muted); line-height: 1.65; }

.trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  padding: 48px 0; border-top: 1px solid var(--zing-card-border); border-bottom: 1px solid var(--zing-card-border); flex-wrap: wrap;
}
.trust-logo { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: rgba(255,255,255,0.25); transition: var(--transition); }
.trust-logo:hover { color: rgba(255,255,255,0.45); }

.testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.testimonial { background: var(--zing-card); border: 1px solid var(--zing-card-border); border-radius: var(--radius); padding: 40px; }
.testimonial blockquote { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.85); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.testimonial-author .name { font-weight: 600; font-size: 0.92rem; }
.testimonial-author .role { font-size: 0.8rem; color: var(--zing-muted); }

.rating-explanation { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.rating-tiers { display: flex; flex-direction: column; gap: 12px; }

.stars-preview {
  background: linear-gradient(135deg,rgba(201,169,110,0.08),rgba(201,169,110,0.02));
  border: 1px solid rgba(201,169,110,0.15); border-radius: var(--radius); padding: 48px; margin-top: 48px; text-align: center;
}
.stars-preview h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--zing-gold); margin-bottom: 12px; }

.page-map-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.page-item { background: var(--zing-card); border: 1px solid var(--zing-card-border); border-radius: var(--radius-sm); padding: 28px 24px; transition: var(--transition); }
.page-item:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-2px); }
.page-item h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.page-item p { font-size: 0.82rem; color: var(--zing-muted); line-height: 1.6; }
.page-tag { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.page-tag.spot { background: rgba(42,181,178,0.15); color: var(--zing-teal); }
.page-tag.tm { background: rgba(232,67,127,0.15); color: var(--zing-pink); }
.page-tag.both { background: rgba(201,169,110,0.15); color: var(--zing-gold); }

.nav-tab-switcher { display: flex; background: rgba(255,255,255,0.05); border-radius: 50px; padding: 3px; }
.nav-tab { padding: 7px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--zing-muted); border: none; background: none; font-family: var(--font-body); }
.nav-tab.active-spot { background: var(--zing-teal); color: white; }
.nav-tab.active-tm { background: var(--zing-pink); color: white; }

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .page-hero, section { padding-left: 20px; padding-right: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-sidebar, .grid-sidebar-reverse { grid-template-columns: 1fr; }
  .dual-audience { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .flywheel-visual { grid-template-columns: 1fr; }
  .fw-block:first-child, .fw-block:last-child { border-radius: var(--radius-sm); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .rating-explanation { grid-template-columns: 1fr; }
  .page-map-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-proof { gap: 28px; }
  .audience-card { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .how-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 20px; }
  .hero-proof .divider { width: 40px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .cta-dual { flex-direction: column; align-items: center; }
}
