/* ============================================================
   PINCO OFFICIAL KZ — style.css
   Prefix: p7k | Theme: Dark | Accent: Gold #f5a623
   ============================================================ */

/* 1. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@400;500&display=swap');

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* 3. CSS TOKENS */
:root {
  --bg-base:   #0f1117;
  --bg-card:   #1a1d2e;
  --accent:    #f5a623;
  --highlight: #ff6b35;
  --text:      #e8eaf0;
  --muted:     #7b82a0;
  --border:    #2d3154;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  clamp(1.6rem, 4vw, 2.75rem);

  --sp-xs: 0.5rem;
  --sp-sm: 0.75rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  --tr: 0.2s ease;
  --tr-slow: 0.4s ease;
}

/* 4. BASE */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-card); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* 5. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
}
h1 { font-size: var(--fs-3xl); font-weight: 700; }
h2 { font-size: var(--fs-xl); font-weight: 700; margin-bottom: var(--sp-md); }
h3 { font-size: var(--fs-lg); font-weight: 600; margin-bottom: var(--sp-sm); }
h4 { font-size: var(--fs-base); font-weight: 600; }

p { font-size: var(--fs-base); margin-bottom: var(--sp-md); color: var(--text); }
p:last-child { margin-bottom: 0; }

strong { color: var(--accent); font-weight: 600; }

a { color: var(--accent); text-decoration: none; transition: opacity var(--tr); }
a:hover { opacity: 0.8; }

ul, ol { padding-left: 1.25rem; margin-bottom: var(--sp-md); }
li { margin-bottom: var(--sp-xs); color: var(--text); }

/* 6. CONTAINER */
.p7k-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* 7. BUTTONS */
.p7k-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-sm);
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
  border-radius: var(--r-full);
  min-height: 44px;
  padding: 0.625rem 1.5rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.p7k-btn--primary  { background: var(--accent); color: #000; }
.p7k-btn--primary:hover { background: #e09510; color: #000; opacity: 1; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,166,35,0.35); }
.p7k-btn--highlight { background: var(--highlight); color: #fff; }
.p7k-btn--highlight:hover { opacity: 0.9; transform: translateY(-1px); }
.p7k-btn--outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.p7k-btn--outline:hover { background: var(--accent); color: #000; opacity: 1; }
.p7k-btn--ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.p7k-btn--ghost:hover { color: var(--text); border-color: var(--muted); opacity: 1; }
.p7k-btn--sm { font-size: var(--fs-xs); padding: 0.4rem 1rem; min-height: 36px; }
.p7k-btn--lg { font-size: var(--fs-md); padding: 0.875rem 2rem; }
.p7k-btn--full { width: 100%; }

/* 8. NAVIGATION */
.p7k-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,17,23,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-sm) 0;
}
.p7k-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}
.p7k-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}
.p7k-logo:hover { opacity: 0.9; }
.p7k-logo-sub {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 400;
  font-family: var(--font-body);
}
.p7k-nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--sp-lg);
  align-items: center;
}
.p7k-nav-links a {
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color var(--tr);
}
.p7k-nav-links a:hover { color: var(--text); opacity: 1; }
.p7k-nav-links a.active { color: var(--accent); }
.p7k-nav-cta { display: none; }
.p7k-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.p7k-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--tr);
  border-radius: 2px;
}

/* Mobile nav overlay */
.p7k-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 200;
  flex-direction: column;
  padding: var(--sp-2xl) var(--sp-lg);
  gap: var(--sp-lg);
}
.p7k-mobile-nav.open { display: flex; }
.p7k-mobile-nav-close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p7k-mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.p7k-mobile-nav-links a {
  color: var(--text);
  font-size: var(--fs-lg);
  font-family: var(--font-head);
  font-weight: 600;
}

/* 9. TICKER */
.p7k-ticker {
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  color: #000;
  padding: 8px var(--sp-md);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

/* 10. HERO */
.p7k-hero { padding: var(--sp-xl) 0 var(--sp-lg); }
.p7k-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.p7k-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-md);
}
.p7k-hero-title {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}
.p7k-hero-title .hl { color: var(--accent); }
.p7k-hero-lead {
  font-size: var(--fs-md);
  color: var(--muted);
  margin-bottom: var(--sp-lg);
  line-height: 1.75;
}
.p7k-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}
.p7k-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.p7k-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--muted);
}
.p7k-hero-meta-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Bonus Widget */
.p7k-bonus-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.p7k-bonus-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
}
.p7k-bonus-widget-head {
  padding: var(--sp-lg) var(--sp-lg) var(--sp-md);
  text-align: center;
}
.p7k-bonus-tag {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  color: var(--highlight);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.p7k-bonus-amount {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sp-xs);
  display: block;
}
.p7k-bonus-fs {
  font-size: var(--fs-xl);
  color: var(--highlight);
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: var(--sp-sm);
  display: block;
}
.p7k-bonus-note { font-size: var(--fs-sm); color: var(--muted); }

.p7k-code-block {
  margin: 0 var(--sp-lg) var(--sp-md);
  background: rgba(245,166,35,0.07);
  border: 1px dashed rgba(245,166,35,0.45);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  text-align: center;
}
.p7k-code-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}
.p7k-code-value {
  font-family: var(--font-head);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: block;
}
.p7k-bonus-widget-body { padding: 0 var(--sp-lg) var(--sp-lg); }
.p7k-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-lg);
}
.p7k-bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--muted);
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.p7k-bonus-list li:last-child { border-bottom: none; }
.p7k-bonus-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 11. TRUST BAR */
.p7k-trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-md) 0;
}
.p7k-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  justify-content: center;
  align-items: center;
}
.p7k-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 500;
}
.p7k-trust-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 12. CONTENT SECTIONS */
.p7k-section {
  padding: var(--sp-2xl) 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}
.p7k-section--alt { background: var(--bg-card); }
.p7k-section-label {
  display: inline-block;
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-sm);
}
.p7k-section-title { font-size: var(--fs-2xl); margin-bottom: var(--sp-sm); }
.p7k-section-lead { color: var(--muted); font-size: var(--fs-md); margin-bottom: var(--sp-xl); max-width: 620px; }

/* Grid */
.p7k-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
.p7k-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: border-color var(--tr), transform var(--tr);
}
.p7k-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.p7k-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-md);
}
.p7k-card-title {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
  color: var(--text);
  font-family: var(--font-head);
}
.p7k-card-text { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* Tables */
.p7k-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin: var(--sp-lg) 0;
}
.p7k-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 500px;
}
.p7k-table th {
  background: rgba(245,166,35,0.1);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  padding: var(--sp-sm) var(--sp-md);
  text-align: left;
  white-space: nowrap;
}
.p7k-table td {
  padding: var(--sp-sm) var(--sp-md);
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.p7k-table tr:hover td { background: rgba(245,166,35,0.03); color: var(--text); }
.p7k-table td strong { color: var(--text); }

/* Steps */
.p7k-steps { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
.p7k-step { display: flex; gap: var(--sp-md); align-items: flex-start; }
.p7k-step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p7k-step-body { flex: 1; padding-top: 8px; }
.p7k-step-title { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-xs); color: var(--text); font-family: var(--font-head); }
.p7k-step-text { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* Info / Alert boxes */
.p7k-info-box {
  background: rgba(245,166,35,0.07);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-md) var(--sp-lg);
  margin: var(--sp-lg) 0;
}
.p7k-info-box p { margin: 0; font-size: var(--fs-sm); color: var(--muted); }

.p7k-alert {
  display: flex;
  gap: var(--sp-sm);
  background: rgba(255,107,53,0.07);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  margin: var(--sp-md) 0;
}
.p7k-alert-ico { font-size: 1.2rem; flex-shrink: 0; }
.p7k-alert p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* Promo display (large inline code) */
.p7k-promo-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-xl);
  text-align: center;
  margin: var(--sp-xl) 0;
}
.p7k-promo-box-label { font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--sp-xs); text-transform: uppercase; letter-spacing: 0.08em; }
.p7k-promo-box-code {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: var(--sp-sm);
}
.p7k-promo-box-desc { font-size: var(--fs-md); color: var(--text); margin: 0; }

/* Wagering calc box */
.p7k-calc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: var(--sp-lg) 0;
}
.p7k-calc-head {
  background: rgba(245,166,35,0.1);
  padding: var(--sp-sm) var(--sp-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--accent);
}
.p7k-calc-body { padding: var(--sp-md); }
.p7k-calc-row {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
}
.p7k-calc-row:last-child { border-bottom: none; font-weight: 700; }
.p7k-calc-row span:first-child { color: var(--muted); }
.p7k-calc-row span:last-child { color: var(--text); }
.p7k-calc-row--total span { color: var(--accent); font-family: var(--font-head); }

/* Checklist */
.p7k-checklist { list-style: none; padding: 0; margin-bottom: var(--sp-md); }
.p7k-checklist li {
  display: flex;
  gap: var(--sp-sm);
  padding: var(--sp-xs) 0;
  font-size: var(--fs-sm);
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.p7k-checklist li:last-child { border-bottom: none; }
.p7k-checklist li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Breadcrumbs */
.p7k-crumbs { padding: var(--sp-sm) 0; }
.p7k-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.p7k-crumbs li {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  color: var(--muted);
  margin: 0;
}
.p7k-crumbs li a { color: var(--muted); }
.p7k-crumbs li a:hover { color: var(--accent); opacity: 1; }
.p7k-crumbs li:last-child { color: var(--text); }

/* Author bio */
.p7k-author {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}
.p7k-author-ava {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: #000;
  flex-shrink: 0;
}
.p7k-author-info { flex: 1; }
.p7k-author-name { font-size: var(--fs-md); font-weight: 700; color: var(--text); margin-bottom: 2px; font-family: var(--font-head); }
.p7k-author-role {
  font-size: var(--fs-xs);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-sm);
  display: block;
}
.p7k-author-text { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* Badges */
.p7k-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.p7k-badge--gold { background: rgba(245,166,35,0.15); color: var(--accent); }
.p7k-badge--green { background: rgba(34,197,94,0.15); color: #4ade80; }
.p7k-badge--red { background: rgba(255,107,53,0.15); color: var(--highlight); }

/* Payment strip */
.p7k-pay-strip { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin: var(--sp-md) 0; }
.p7k-pay-icon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

/* Highlight box */
.p7k-hl-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(255,107,53,0.06));
  border: 1px solid rgba(245,166,35,0.28);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-xl);
  margin: var(--sp-lg) 0;
}
.p7k-hl-box-title { font-family: var(--font-head); font-size: var(--fs-md); font-weight: 700; color: var(--accent); margin-bottom: var(--sp-sm); }

/* Utility colours */
.p7k-hl  { color: var(--accent); }
.p7k-hl2 { color: var(--highlight); }

/* 13. FAQ ACCORDION */
.p7k-faq { display: grid; grid-template-columns: 1fr; gap: var(--sp-sm); }
.p7k_faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--tr);
}
.p7k_faq-item.open { border-color: var(--accent); }
.p7k_faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  cursor: pointer;
  text-align: left;
  min-height: 54px;
}
.p7k_faq-q {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-head);
}
.p7k_faq-ico {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1rem;
  transition: all var(--tr);
  line-height: 1;
}
.p7k_faq-item.open .p7k_faq-ico { background: var(--accent); border-color: var(--accent); color: #000; transform: rotate(45deg); }
.p7k_faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.p7k_faq-item.open .p7k_faq-answer { max-height: 600px; }
.p7k_faq-answer-inner {
  padding: 0 var(--sp-lg) var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.75;
}

/* 14. CTA BAND */
.p7k-cta-band {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-base));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl) var(--sp-lg);
  text-align: center;
  margin: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}
.p7k-cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.p7k-cta-band-title { font-size: var(--fs-2xl); font-weight: 700; margin-bottom: var(--sp-sm); }
.p7k-cta-band-title .hl { color: var(--accent); }
.p7k-cta-band-sub { color: var(--muted); margin-bottom: var(--sp-lg); font-size: var(--fs-md); }
.p7k-cta-band-actions { display: flex; flex-wrap: wrap; gap: var(--sp-sm); justify-content: center; }

/* 15. FOOTER */
.p7k-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--sp-2xl) 0 var(--sp-xl);
}
.p7k-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.p7k-footer-brand { font-family: var(--font-head); font-size: var(--fs-xl); font-weight: 700; color: var(--accent); display: block; margin-bottom: var(--sp-sm); }
.p7k-footer-tagline { font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--sp-md); line-height: 1.65; }
.p7k-footer-col-title {
  font-family: var(--font-head);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-md);
}
.p7k-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-sm); }
.p7k-footer-links a { font-size: var(--fs-sm); color: var(--muted); transition: color var(--tr); }
.p7k-footer-links a:hover { color: var(--accent); opacity: 1; }
.p7k-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.p7k-footer-disclaimer { font-size: var(--fs-xs); color: var(--muted); line-height: 1.75; }
.p7k-footer-legal { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.p7k-footer-legal a { font-size: var(--fs-xs); color: var(--muted); }
.p7k-footer-legal a:hover { color: var(--accent); opacity: 1; }
.p7k-footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--highlight);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 16. STICKY MOBILE CTA */
.p7k-sticky {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg-card);
  border-top: 2px solid var(--accent);
  padding: var(--sp-sm) var(--sp-md);
  gap: var(--sp-sm);
  align-items: center;
}
.p7k-sticky-txt { flex: 1; min-width: 0; }
.p7k-sticky-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-head);
  display: block;
}
.p7k-sticky-sub { font-size: 10px; color: var(--muted); display: block; }

/* Legal page layout */
.p7k-legal { max-width: 800px; margin: 0 auto; padding: var(--sp-2xl) 0; }
.p7k-legal h2 { font-size: var(--fs-lg); margin-top: var(--sp-xl); margin-bottom: var(--sp-sm); }
.p7k-legal h3 { font-size: var(--fs-base); margin-top: var(--sp-lg); margin-bottom: var(--sp-sm); }
.p7k-legal p, .p7k-legal li { color: var(--muted); font-size: var(--fs-sm); line-height: 1.8; }
.p7k-legal-updated { font-size: var(--fs-xs); color: var(--muted); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); padding: var(--sp-xs) var(--sp-sm); display: inline-block; margin-bottom: var(--sp-lg); }

/* 17. ANIMATIONS */
@keyframes p7k-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes p7k-pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.65; } }

.p7k-animate { opacity: 0; transform: translateY(16px); }
.p7k-animate.p7k-vis { animation: p7k-fadeUp 0.5s ease forwards; }
.p7k-pulse { animation: p7k-pulse 2.2s ease infinite; }

/* 18. RESPONSIVE — scale UP from 320px */
@media (min-width: 480px) {
  .p7k-bonus-amount { font-size: 3.5rem; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .p7k-nav-toggle { display: none; }
  .p7k-nav-links { display: flex; }
  .p7k-nav-cta { display: block; }
  .p7k-grid { grid-template-columns: repeat(2, 1fr); }
  .p7k-steps { grid-template-columns: repeat(2, 1fr); }
  .p7k-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .p7k-footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .p7k-sticky { display: none; }
  .p7k-hero { padding: var(--sp-2xl) 0; }
}

@media (min-width: 1024px) {
  .p7k-hero-inner { grid-template-columns: 1fr 420px; gap: var(--sp-2xl); }
  .p7k-grid { grid-template-columns: repeat(3, 1fr); }
  .p7k-steps { grid-template-columns: repeat(4, 1fr); }
  .p7k-section { padding: var(--sp-3xl) 0; }
}
