/* ============================================================
   WyzGuild — style.css (v2)
   Brand: WyzGuild Sub-brand | WyzLab Solutions Ecosystem
   Design language: matched to wyzlabsolutions.com
     - Calmer hero, more whitespace
     - Eyebrow label + centered H2 + divider section pattern
     - Clean white card grids, subtle hover lift
     - Navy "dark" sections used sparingly for emphasis
   Palette retained from v1: Cyan #00B8E6 / Blue #1C8BF5 /
     Navy #003D7A / Lime #7FE3BF / Gold #FFB81C
   Fonts: Montserrat (headings) / Inter (body)
   ============================================================ */


/* ---------- 1. TOKENS ---------- */
:root {
  /* WyzGuild palette (from v1) */
  --wyz-cyan:        #00B8E6;
  --wyz-blue:        #1C8BF5;
  --wyz-navy:        #003D7A;
  --wyz-navy-deep:   #001f4d;
  --wyz-lime:        #7FE3BF;
  --wyz-gold:        #FFB81C;

  /* Surfaces & text */
  --wyz-white:       #FFFFFF;
  --wyz-bg:          #FFFFFF;
  --wyz-bg-soft:     #F5F8FC;     /* light section background */
  --wyz-bg-tint:     #EEF4FB;
  --wyz-border:      #E2E8F0;
  --wyz-mid-gray:    #CBD5E0;
  --wyz-slate:       #2D3748;     /* primary body text */
  --wyz-dark-gray:   #4A5568;     /* secondary text */
  --wyz-muted:       #718096;     /* tertiary text */
  --wyz-black:       #111827;

  /* Semantic */
  --success:         #10B981;
  --warning:         #F59E0B;
  --error:           #EF4444;

  /* Typography */
  --font-heading:    'Montserrat', 'Poppins', sans-serif;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   32px;
  --space-xl:   64px;
  --space-2xl:  96px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  /* Shadows (softer, matches wyzlab.com) */
  --shadow-sm:    0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow-card:  0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 12px 36px rgba(0, 61, 122, 0.14);
  --shadow-cta:   0 8px 24px rgba(0, 184, 230, 0.28);

  /* Layout */
  --max-w: 1200px;
  --nav-h:  72px;
}


/* ---------- 2. 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);
  color: var(--wyz-slate);
  background: var(--wyz-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; }


/* ---------- 3. UTILITY ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-2xl) 0; }
.section-light { background: var(--wyz-bg-soft); }
.section-dark { background: linear-gradient(165deg, var(--wyz-navy-deep) 0%, var(--wyz-navy) 60%, #0a4f9b 100%); color: var(--wyz-white); }
.text-center { text-align: center; }
.text-white { color: var(--wyz-white); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }


/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--wyz-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.12; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.18; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.3; }
h4 { font-size: 1.05rem; }
h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
p  { font-size: 1rem; line-height: 1.7; color: var(--wyz-dark-gray); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wyz-cyan);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--wyz-lime); }
.divider { width: 56px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--wyz-cyan), var(--wyz-blue)); margin: 18px 0 22px; }
.divider-center { margin: 18px auto 22px; }
.lead { font-size: 1.05rem; color: var(--wyz-dark-gray); margin-bottom: var(--space-md); }
.lead-light { color: rgba(255, 255, 255, 0.78); }
.section-head { max-width: 720px; margin: 0 auto var(--space-xl); }
.section-sub { font-size: 1.02rem; color: var(--wyz-dark-gray); }


/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
  padding: 12px 26px;
  font-size: 0.95rem;
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--wyz-cyan) 0%, var(--wyz-blue) 100%);
  color: var(--wyz-white);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 184, 230, 0.36); }

.btn-ghost {
  background: transparent;
  color: var(--wyz-navy);
  border-color: var(--wyz-navy);
}
.btn-ghost:hover { background: var(--wyz-navy); color: var(--wyz-white); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wyz-white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.18); border-color: var(--wyz-white); }

.btn-outline {
  background: var(--wyz-white);
  color: var(--wyz-navy);
  border-color: var(--wyz-border);
}
.btn-outline:hover { border-color: var(--wyz-cyan); color: var(--wyz-cyan); }

.btn-white {
  background: var(--wyz-white);
  color: var(--wyz-navy);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); }


/* ---------- 6. NAV ---------- */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--wyz-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--wyz-slate);
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--wyz-cyan); }
.nav-links .btn { color: var(--wyz-white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--wyz-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 120px);
  background:
    radial-gradient(1200px 600px at -10% -10%, rgba(0, 184, 230, 0.10), transparent 60%),
    radial-gradient(900px 500px at 110% 0%, rgba(127, 227, 191, 0.10), transparent 55%),
    var(--wyz-bg);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.hero-text { max-width: 600px; }
.hero h1 { color: var(--wyz-navy); margin-bottom: 18px; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--wyz-cyan), var(--wyz-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: 1.08rem; color: var(--wyz-dark-gray); line-height: 1.7; margin-bottom: 26px; max-width: 540px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero-micro {
  font-size: 0.82rem;
  color: var(--wyz-muted);
  margin-top: 6px;
}

/* Hero side card (replaces v1 chaos visual with cleaner dashboard preview) */
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  width: 100%;
  max-width: 460px;
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card), 0 20px 50px rgba(0, 61, 122, 0.08);
  overflow: hidden;
}
.hero-card-header {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--wyz-border);
  background: var(--wyz-bg-soft);
}
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; background: #d8dfe8; }
.hero-card-dot:first-child { background: #ff6b6b; }
.hero-card-dot:nth-child(2) { background: #ffb81c; }
.hero-card-dot:nth-child(3) { background: var(--wyz-lime); }
.hero-card-title {
  margin-left: 12px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--wyz-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--wyz-border);
}
.hero-stat {
  background: var(--wyz-white);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--wyz-navy);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--wyz-muted);
  line-height: 1.45;
}
.hero-card-footer {
  padding: 14px 18px;
  font-size: 0.78rem;
  color: var(--wyz-dark-gray);
  background: var(--wyz-bg-soft);
  border-top: 1px solid var(--wyz-border);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.55;
}
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.dot-live { background: var(--wyz-lime); box-shadow: 0 0 0 4px rgba(127, 227, 191, 0.25); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--wyz-muted);
  text-transform: uppercase;
  opacity: 0.85;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: translate(-50%, 0); opacity: 0.7; } 50% { transform: translate(-50%, 6px); opacity: 1; } }


/* ---------- 8. COST BAR ---------- */
.cost-bar {
  background: var(--wyz-navy);
  color: var(--wyz-white);
}
.cost-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 24px;
}
.cost-item { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.cost-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--wyz-lime);
  line-height: 1;
}
.cost-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.cost-divider { width: 1px; height: 50px; background: rgba(255, 255, 255, 0.18); }


/* ---------- 9. TWO-COLUMN (commission section) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.two-col-text h2 { color: var(--wyz-navy); }
.pain-list { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; margin-bottom: 22px; }
.pain-item {
  display: flex; gap: 14px;
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.pain-icon { font-size: 1.4rem; line-height: 1; }
.pain-text { font-size: 0.95rem; color: var(--wyz-dark-gray); line-height: 1.6; }
.closing-line {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wyz-navy);
  border-left: 3px solid var(--wyz-cyan);
  padding-left: 14px;
}

.calc-card {
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.calc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--wyz-navy);
  margin-bottom: 20px;
}
.calc-slider label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.85rem; font-weight: 600; color: var(--wyz-slate);
  margin-bottom: 8px;
}
.calc-slider label span {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1.1rem;
  color: var(--wyz-cyan);
}
.calc-slider input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--wyz-cyan), var(--wyz-blue));
  outline: none;
}
.calc-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--wyz-white);
  border: 3px solid var(--wyz-cyan);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
.calc-slider input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--wyz-white);
  border: 3px solid var(--wyz-cyan);
  cursor: pointer;
}
.calc-slider-bounds {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--wyz-muted);
  margin-top: 6px;
}
.calc-results {
  display: flex; flex-direction: column; gap: 10px;
  margin: 20px 0 12px;
}
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
}
.calc-row.competitor { background: #fff5f5; color: var(--wyz-slate); }
.calc-row.competitor .calc-amount { color: var(--error); font-weight: 700; }
.calc-row.wyzguild { background: var(--wyz-bg-tint); color: var(--wyz-slate); }
.calc-row.wyzguild .calc-amount { color: var(--wyz-blue); font-weight: 700; }
.calc-row.difference {
  background: linear-gradient(135deg, var(--wyz-cyan), var(--wyz-blue));
  color: var(--wyz-white);
}
.calc-row.difference .calc-amount {
  color: var(--wyz-white);
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1.05rem;
}
.calc-amount { font-family: var(--font-heading); }
.calc-fineprint { font-size: 0.72rem; color: var(--wyz-muted); margin: 8px 0 16px; line-height: 1.5; }


/* ---------- 10. OUTCOMES GRID ---------- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.outcome-card {
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.outcome-card:hover {
  transform: translateY(-4px);
  border-color: var(--wyz-cyan);
  box-shadow: var(--shadow-hover);
}
.outcome-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.12), rgba(28, 139, 245, 0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.outcome-card h3 { color: var(--wyz-navy); margin-bottom: 10px; }
.outcome-card p { font-size: 0.93rem; color: var(--wyz-dark-gray); line-height: 1.65; margin-bottom: 14px; }
.outcome-result {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wyz-blue);
  background: rgba(28, 139, 245, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.outcome-replaces {
  display: flex; flex-wrap: wrap; gap: 6px;
  border-top: 1px solid var(--wyz-border);
  padding-top: 14px;
  margin-top: 4px;
}
.replaces-tag {
  font-size: 0.7rem;
  color: var(--wyz-muted);
  background: var(--wyz-bg-soft);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}


/* ---------- 11. COMPARISON TABLE ---------- */
.comparison-wrap {
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}
.comparison {
  width: 100%;
  min-width: 720px;
  font-size: 0.9rem;
}
.comparison th, .comparison td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--wyz-border);
}
.comparison th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--wyz-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--wyz-bg-soft);
}
.comparison th.highlight {
  background: linear-gradient(135deg, var(--wyz-cyan), var(--wyz-blue));
  color: var(--wyz-white);
}
.comparison td:first-child, .comparison th:first-child { text-align: left; font-weight: 600; color: var(--wyz-slate); }
.comparison tr:last-child td { border-bottom: 0; }
.comparison .wyzguild-col { background: var(--wyz-bg-tint); font-weight: 600; color: var(--wyz-navy); }
.comparison .check { color: var(--success); font-weight: 800; }
.comparison .partial { color: var(--warning); font-size: 0.78rem; font-weight: 600; }
.comparison .cross { color: var(--wyz-mid-gray); font-weight: 600; }
.comparison .price-cell { font-weight: 800; color: var(--wyz-cyan); }
.comparison .price-cell-bad { color: var(--error); font-weight: 700; }


/* ---------- 12. IMPLEMENTATION LOOP (dark section) ---------- */
.section-dark .eyebrow { color: var(--wyz-lime); }
.section-dark .divider { background: linear-gradient(90deg, var(--wyz-lime), var(--wyz-cyan)); }
.loop-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.loop-text h2 { color: var(--wyz-white); margin-bottom: 12px; }
.loop-text .lead-light { margin-bottom: 32px; }
.loop-steps { display: flex; flex-direction: column; gap: 22px; }
.loop-step { display: flex; gap: 18px; }
.loop-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wyz-cyan), var(--wyz-blue));
  color: var(--wyz-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 184, 230, 0.35);
}
.loop-step-text h4 { color: var(--wyz-white); margin-bottom: 4px; font-size: 1.05rem; }
.loop-step-text p { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; line-height: 1.6; }

.loop-side { display: flex; flex-direction: column; gap: 18px; }
.loop-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.loop-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}
.loop-stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--wyz-lime);
  line-height: 1;
  margin-bottom: 6px;
}
.loop-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.loop-callout {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.loop-callout-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--wyz-white);
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.loop-callout ul { display: flex; flex-direction: column; gap: 10px; }
.loop-callout li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.78); line-height: 1.55;
}
.loop-callout li strong { color: var(--wyz-white); }
.check-lime { color: var(--wyz-lime); font-weight: 800; flex-shrink: 0; }


/* ---------- 13. TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars {
  color: var(--wyz-gold);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-size: 0.96rem;
  color: var(--wyz-slate);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}
.testimonial-result {
  background: var(--wyz-bg-tint);
  border-left: 3px solid var(--wyz-cyan);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wyz-navy);
  margin-bottom: 16px;
  line-height: 1.55;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--wyz-border); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wyz-cyan), var(--wyz-blue));
  color: var(--wyz-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-family: var(--font-heading); font-weight: 700; color: var(--wyz-navy); font-size: 0.92rem; }
.author-role { font-size: 0.78rem; color: var(--wyz-muted); margin-top: 2px; }

.community-banner {
  margin-top: 42px;
  background: linear-gradient(135deg, var(--wyz-navy) 0%, #0a4f9b 100%);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--wyz-white);
}
.community-banner h3 { color: var(--wyz-white); margin-bottom: 6px; }
.community-banner p { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; max-width: 540px; }


/* ---------- 14. PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pricing-card {
  position: relative;
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--wyz-cyan); }
.pricing-card.featured {
  border-color: var(--wyz-cyan);
  box-shadow: 0 8px 36px rgba(0, 184, 230, 0.18);
  transform: translateY(-6px);
}
.plan-banner {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--wyz-cyan), var(--wyz-blue));
  color: var(--wyz-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wyz-cyan);
  font-weight: 700;
  margin-bottom: 10px;
}
.plan-tag-premium { color: var(--wyz-gold); }
.plan-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--wyz-navy);
  line-height: 1;
}
.plan-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wyz-muted);
  margin-left: 4px;
}
.plan-period { font-size: 0.78rem; color: var(--wyz-muted); margin-top: 6px; }
.plan-tagline {
  font-size: 0.9rem;
  color: var(--wyz-dark-gray);
  margin: 14px 0 8px;
  line-height: 1.55;
}
.plan-divider {
  height: 1px;
  background: var(--wyz-border);
  margin: 18px 0;
}
.plan-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wyz-muted);
  margin-bottom: 12px;
}
.plan-outcomes { display: flex; flex-direction: column; gap: 9px; }
.plan-outcomes li {
  display: flex; gap: 10px;
  font-size: 0.88rem;
  color: var(--wyz-slate);
  line-height: 1.55;
}
.check-ico {
  color: var(--wyz-cyan);
  font-weight: 800;
  flex-shrink: 0;
}
.plan-specs { display: flex; flex-direction: column; gap: 6px; }
.plan-spec {
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  color: var(--wyz-muted);
  padding: 4px 0;
}
.plan-spec strong { color: var(--wyz-slate); font-weight: 600; }
.plan-cta { margin-top: auto; margin-top: 22px; }

.add-ons {
  margin-top: 42px;
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.add-ons-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--wyz-navy);
  text-align: center;
  margin-bottom: 22px;
  font-size: 1.05rem;
}
.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.add-on-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background: var(--wyz-bg-soft);
  border-radius: var(--radius-md);
}
.add-on-icon { font-size: 1.5rem; }
.add-on-name { font-family: var(--font-heading); font-weight: 700; color: var(--wyz-navy); font-size: 0.92rem; }
.add-on-price { font-size: 0.78rem; color: var(--wyz-muted); margin-top: 2px; }


/* ---------- 15. FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--wyz-white);
  border: 1px solid var(--wyz-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-item[open] {
  border-color: var(--wyz-cyan);
  box-shadow: var(--shadow-card);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--wyz-navy);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-arrow {
  color: var(--wyz-cyan);
  font-size: 1.2rem;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 22px;
  font-size: 0.93rem;
  color: var(--wyz-dark-gray);
  line-height: 1.7;
}


/* ---------- 16. FINAL CTA ---------- */
.final-cta {
  position: relative;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(0, 184, 230, 0.18), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(127, 227, 191, 0.14), transparent 60%),
    linear-gradient(135deg, var(--wyz-navy-deep) 0%, var(--wyz-navy) 60%, #0a4f9b 100%);
  color: var(--wyz-white);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}
.final-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.final-cta h2 {
  color: var(--wyz-white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.final-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.trial-form {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  max-width: 480px; margin: 0 auto 18px;
}
.trial-form input[type=email] {
  flex: 1 1 240px; min-width: 0;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--wyz-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.trial-form input[type=email]::placeholder { color: rgba(255, 255, 255, 0.65); }
.trial-form input[type=email]:focus { border-color: var(--wyz-cyan); background: rgba(255, 255, 255, 0.16); }

.final-actions { display: flex; justify-content: center; margin-bottom: 18px; }
.final-micro { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }
.risk-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 640px; margin: 0 auto;
}
.risk-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}


/* ---------- 17. FOOTER ---------- */
.site-footer {
  background: var(--wyz-navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-top: var(--space-xl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 42px;
}
.footer-brand img { height: 32px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 320px;
}
.footer-parent {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-parent a {
  color: var(--wyz-lime);
  font-weight: 600;
  transition: opacity 0.18s ease;
}
.footer-parent a:hover { opacity: 0.8; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wyz-white);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--wyz-cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); transition: color 0.18s ease; }
.footer-legal a:hover { color: var(--wyz-cyan); }


/* ---------- 18. ANIMATION HOOKS ---------- */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   19. RESPONSIVE BREAKPOINTS
   Tested at 375px / 768px / 1024px / 1280px
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner,
  .two-col,
  .loop-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .calc-card { position: static; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--wyz-white);
    padding: 28px 24px;
    gap: 22px;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; width: 100%; }
  .nav-toggle { display: flex; }

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

  .cost-bar-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cost-divider { display: none; }
  .cost-item { padding: 8px 0; }

  .loop-stats { grid-template-columns: 1fr; }

  .community-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .scroll-cue { display: none; }

  .hero-card { max-width: 100%; }
  .hero-stats-grid .hero-stat .stat-num { font-size: 1.6rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn-lg { padding: 14px 26px; font-size: 0.95rem; }
  .hero-cta-group .btn { width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .pricing-card { padding: 26px 22px; }
  .calc-card { padding: 24px 20px; }
  .add-on-card { padding: 14px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
