/* ============================================================
   Boss365 — Global Stylesheet
   Brand: Boss Purple Power | boss365.site
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #b169ef;
  --primary-dark: #9450d4;
  --primary-light: #c990f5;
  --bg-body: #ffffff;
  --bg-section: #faf5ff;
  --bg-dark: #1a0f2e;
  --bg-dark-2: #2a1745;
  --bg-card: #ffffff;
  --border: #e8d8f5;
  --text-primary: #1a0f2e;
  --text-muted: #6b5b7e;
  --text-invert: #ffffff;
  --accent: #ff6b9d;
  --accent-dark: #e84f83;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(148, 80, 212, 0.08);
  --shadow: 0 8px 30px rgba(148, 80, 212, 0.12);
  --shadow-lg: 0 20px 50px rgba(148, 80, 212, 0.18);
  --shadow-purple: 0 12px 40px rgba(177, 105, 239, 0.28);

  --font-head: 'Montserrat Alternates', system-ui, sans-serif;
  --font-body: 'Chivo', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
ul, ol { padding-left: 1.3rem; }
li { margin-bottom: 0.4rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
strong { font-weight: 700; color: var(--text-primary); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-tint { background: var(--bg-section); }
.section-dark { background: var(--bg-dark); color: var(--text-invert); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(177, 105, 239, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-dark .eyebrow { color: var(--primary-light); background: rgba(177, 105, 239, 0.18); }
.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 720px; }
.section-dark .lead { color: rgba(255, 255, 255, 0.78); }
.text-center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 760px; margin: 0 auto 52px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 45px rgba(177, 105, 239, 0.4); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.32);
}
.btn-accent:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 45px rgba(255, 107, 157, 0.44); }
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); background: rgba(177, 105, 239, 0.06); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { color: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover { color: #fff; background: rgba(255,255,255,0.16); }
.btn-lg { padding: 17px 40px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 34px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu li { margin: 0; }
.nav-menu a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text-primary);
  padding: 9px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-dark); background: rgba(177, 105, 239, 0.1); }
.nav-cta { margin-left: 10px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, #2f1a4d 0%, var(--bg-dark) 55%);
  color: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.35), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(177, 105, 239, 0.4), transparent 66%);
  filter: blur(30px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { color: rgba(255, 255, 255, 0.82); font-size: 1.18rem; margin-bottom: 30px; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: rgba(255,255,255,0.82); }
.hero-badge svg { width: 20px; height: 20px; color: var(--primary-light); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), border-color var(--transition);
}
.hero-card:hover { transform: translateY(-6px); border-color: rgba(177,105,239,0.5); }
.hero-card img { height: 150px; width: auto; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,0.35)); }
.hero-card span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  color: #fff;
}
.hero-card:nth-child(1) { margin-top: 20px; }
.hero-card:nth-child(4) { margin-top: 20px; }

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { padding: 10px; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--primary-dark);
  line-height: 1;
}
.section-dark .stat-num { color: var(--primary-light); }
.stat-label { font-size: 0.95rem; color: var(--text-muted); margin-top: 6px; }
.section-dark .stat-label { color: rgba(255,255,255,0.72); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary-light); }

/* feature cards with purple top border */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(177,105,239,0.15), rgba(255,107,157,0.15));
  color: var(--primary-dark);
  margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); margin-bottom: 0; font-size: 0.98rem; }

/* game grid cards */
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #2a1745, #1a0f2e);
  border: 1px solid var(--border);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 22px;
  transition: all var(--transition);
}
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(177,105,239,0));
  transition: background var(--transition);
  z-index: 1;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-purple); border-color: var(--primary); }
.game-card:hover::after { background: linear-gradient(180deg, rgba(177,105,239,0.25) 0%, rgba(255,107,157,0.15) 100%); }
.game-card img {
  height: 175px; width: auto; object-fit: contain;
  position: relative; z-index: 2;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.4));
  transition: transform var(--transition);
}
.game-card:hover img { transform: scale(1.06); }
.game-card h3 {
  position: relative; z-index: 2;
  color: #fff; font-size: 1.2rem; margin: 14px 0 0;
}

/* icon list / two-col blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-section), #fff);
  border: 1px solid var(--border);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.split-media img { max-height: 300px; width: auto; filter: drop-shadow(0 18px 26px rgba(148,80,212,0.22)); }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--text-muted);
}
.check-list li strong { color: var(--text-primary); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(177,105,239,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239450d4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* steps */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-purple);
}
.step h4 { margin-bottom: 5px; }
.step p { color: var(--text-muted); margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(177,105,239,0.14);
}
.form-note { font-size: 0.88rem; color: var(--text-muted); margin-top: 6px; }
.form-row { display: flex; gap: 8px; align-items: center; font-size: 0.92rem; color: var(--text-muted); }
.form-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-muted); font-size: 0.85rem;
  margin: 24px 0;
}
.form-divider::before, .form-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}

/* ---------- FAQ Accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  position: relative;
  transition: transform var(--transition);
}
.faq-q .ico::before, .faq-q .ico::after {
  content: ""; position: absolute; background: var(--primary-dark);
  border-radius: 2px;
  top: 50%; left: 50%;
}
.faq-q .ico::before { width: 14px; height: 2.5px; transform: translate(-50%, -50%); }
.faq-q .ico::after { width: 2.5px; height: 14px; transform: translate(-50%, -50%); transition: transform var(--transition); }
.faq-item.open .faq-q .ico::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-a-inner { padding: 0 24px 22px; color: var(--text-muted); }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- Interactive Tools ---------- */
.tool {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  max-width: 620px;
  margin: 0 auto;
}
.tool-wide { max-width: 900px; }
.tool-head { text-align: center; margin-bottom: 26px; }
.tool-head h3 { margin-bottom: 8px; }
.tool-head p { color: var(--text-muted); margin-bottom: 0; font-size: 0.98rem; }

/* Multiplier game */
.multiplier-display {
  text-align: center;
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2));
  border-radius: var(--radius);
  padding: 34px 20px;
  margin-bottom: 24px;
  color: #fff;
}
.multiplier-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  background: linear-gradient(120deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.multiplier-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 8px; }
.multiplier-meta {
  display: flex; justify-content: center; gap: 30px; margin-top: 18px;
  flex-wrap: wrap;
}
.multiplier-meta div { text-align: center; }
.multiplier-meta .m-num { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--primary-light); }
.multiplier-meta .m-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.tool-msg {
  text-align: center;
  min-height: 26px;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.tool-msg.win { color: var(--success); }
.tool-msg.lose { color: var(--danger); }
.tool-msg.info { color: var(--primary-dark); }

/* Cashout calculator */
.calc-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.calc-cell {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  border: 1px solid var(--border);
}
.calc-cell .c-num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--primary-dark); }
.calc-cell.accent .c-num { color: var(--accent-dark); }
.calc-cell.success .c-num { color: var(--success); }
.calc-cell .c-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* Achievements */
.ach-progress-wrap { margin-bottom: 26px; }
.ach-progress-bar {
  height: 14px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.ach-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.ach-progress-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.92rem; margin-bottom: 10px;
}
.ach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ach-tile {
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.ach-tile:hover { border-color: var(--primary-light); transform: translateY(-3px); }
.ach-tile .ach-emoji { font-size: 1.7rem; line-height: 1; }
.ach-tile .ach-name { font-size: 0.78rem; font-weight: 600; margin-top: 8px; color: var(--text-muted); }
.ach-tile.done {
  background: linear-gradient(135deg, rgba(177,105,239,0.14), rgba(255,107,157,0.14));
  border-color: var(--primary);
}
.ach-tile.done .ach-name { color: var(--primary-dark); }
.ach-tile.done::after {
  content: "✓";
  display: block; font-weight: 700; color: var(--success); font-size: 0.9rem; margin-top: 3px;
}

/* ---------- Article / legal ---------- */
.article { max-width: 820px; margin: 0 auto; }
.article h2 { margin: 38px 0 14px; }
.article h3 { margin: 26px 0 10px; }
.article p, .article li { color: var(--text-muted); }
.article strong { color: var(--text-primary); }
.article .updated { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 30px; }
.toc {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
}
.toc h4 { margin-bottom: 12px; }
.toc ul { margin: 0; }

/* ---------- Callout / CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, #6d2fb0 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -80px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,157,0.4), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; z-index: 2; }
.cta-band p { color: rgba(255,255,255,0.9); position: relative; z-index: 2; max-width: 620px; margin: 12px auto 26px; }
.cta-band .btn-group { position: relative; z-index: 2; justify-content: center; }

/* alert / disclaimer note */
.note {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.96rem;
}
.note strong { color: var(--warning); }
.note.info { background: rgba(177,105,239,0.07); border-color: rgba(177,105,239,0.3); border-left-color: var(--primary); }
.note.info strong { color: var(--primary-dark); }

/* age badge */
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--danger); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand img { height: 34px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.66); font-size: 0.95rem; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex; gap: 14px; align-items: center;
}

/* whatsapp float */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* breadcrumb */
.breadcrumb { font-size: 0.9rem; color: var(--text-muted); padding: 18px 0 0; }
.breadcrumb a { color: var(--primary-dark); }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }

/* page hero (inner) */
.page-hero {
  background: radial-gradient(circle at 80% 10%, #2f1a4d, var(--bg-dark) 60%);
  color: #fff;
  padding: 56px 0 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; font-size: 1.12rem; }

/* utilities */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill {
  font-size: 0.85rem; font-weight: 500;
  padding: 7px 15px; border-radius: 100px;
  background: rgba(177,105,239,0.1); color: var(--primary-dark);
  font-family: var(--font-head);
}
.section-dark .pill { background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform var(--transition);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-menu .nav-cta { margin: 8px 0 0; }
  .nav-menu .btn { width: 100%; }
  .nav-actions .btn:not(.nav-toggle) { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .ach-grid { grid-template-columns: repeat(3, 1fr); }
  .calc-result { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-band { padding: 44px 24px; }
  .form-wrap, .tool { padding: 28px 22px; }
  .hero { padding: 64px 0 72px; }
}
@media (max-width: 460px) {
  body { font-size: 16px; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .ach-grid { grid-template-columns: repeat(2, 1fr); }
  .multiplier-value { font-size: 2.7rem; }
  .btn { width: 100%; }
  .btn-group { flex-direction: column; }
  .hero-badges { gap: 14px; }
}
