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

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg-base:#0F0F12;
  --bg-card:#1C1C22;
  --accent:#E8172B;
  --highlight:#F5C400;
  --text:#F0EDE8;
  --muted:#8A8592;
  --border:#2E2D35;
  --font-head:'Oswald',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --radius-sm:6px;
  --radius-md:12px;
  --radius-lg:20px;
  --transition:0.2s ease;
  --shadow-card:0 4px 24px rgba(0,0,0,0.45);
  --shadow-btn:0 2px 14px rgba(232,23,43,0.38);
}

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

body{
  background:var(--bg-base);
  color:var(--text);
  font-family:var(--font-body);
  font-size:1rem;
  line-height:1.65;
  padding-bottom:70px;
}

::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg-base)}
::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:var(--muted)}

/* ─── Typography ─── */
h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:700;
  line-height:1.15;
  color:var(--text);
}
h1{font-size:clamp(1.75rem,5vw,2.8rem)}
h2{font-size:clamp(1.3rem,3.5vw,2rem)}
h3{font-size:clamp(1.05rem,2.5vw,1.35rem)}
h4{font-size:1rem;font-weight:600}

p{margin-bottom:1rem;color:var(--text)}
p:last-child{margin-bottom:0}
strong{color:var(--text);font-weight:600}

a{color:var(--accent);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--highlight)}
a:focus-visible{outline:2px solid var(--accent);outline-offset:3px}

/* ─── Container ─── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1rem}

/* ─── Buttons ─── */
.p7k_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  border:none;
  border-radius:var(--radius-sm);
  cursor:pointer;
  font-family:var(--font-head);
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  text-decoration:none;
  transition:transform var(--transition),box-shadow var(--transition),background var(--transition),color var(--transition);
  min-height:44px;
  padding:0.75rem 1.5rem;
  font-size:0.95rem;
  line-height:1;
}
.p7k_btn:hover{transform:translateY(-1px)}
.p7k_btn:active{transform:translateY(0)}

.p7k_btn--primary{background:var(--accent);color:#fff;box-shadow:var(--shadow-btn)}
.p7k_btn--primary:hover{background:#c9111f;color:#fff;box-shadow:0 4px 22px rgba(232,23,43,0.55)}

.p7k_btn--highlight{background:var(--highlight);color:#111;box-shadow:0 2px 12px rgba(245,196,0,0.35)}
.p7k_btn--highlight:hover{background:#d9ad00;color:#111}

.p7k_btn--outline{background:transparent;color:var(--accent);border:2px solid var(--accent)}
.p7k_btn--outline:hover{background:var(--accent);color:#fff}

.p7k_btn--ghost{background:rgba(255,255,255,0.06);color:var(--text);border:1px solid var(--border)}
.p7k_btn--ghost:hover{background:rgba(255,255,255,0.1);color:var(--text)}

.p7k_btn--sm{padding:0.45rem 0.9rem;font-size:0.8rem;min-height:36px}
.p7k_btn--lg{padding:1rem 2.25rem;font-size:1.1rem;min-height:54px}
.p7k_btn--full{width:100%}
.p7k_btn--pulse{animation:p7k-pulse 2.2s ease infinite}

/* ─── Navigation ─── */
.p7k_nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(15,15,18,0.97);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.p7k_nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:60px;
}
.p7k_nav-logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0}
.p7k_nav-logo img{height:34px;width:auto}

.p7k_nav-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
  min-width:44px;
  min-height:44px;
  border-radius:var(--radius-sm);
}
.p7k_nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform var(--transition),opacity var(--transition);
}

.p7k_nav-links{
  display:none;
  flex-direction:column;
  background:var(--bg-card);
  border-top:1px solid var(--border);
  padding:0.5rem 0;
  position:absolute;
  top:60px;
  left:0;
  right:0;
  z-index:99;
  box-shadow:0 8px 24px rgba(0,0,0,0.5);
}
.p7k_nav-links.open{display:flex}
.p7k_nav-links a{
  color:var(--text);
  text-decoration:none;
  padding:0.75rem 1.5rem;
  font-family:var(--font-head);
  font-size:0.9rem;
  font-weight:600;
  letter-spacing:0.02em;
  text-transform:uppercase;
  border-bottom:1px solid var(--border);
  min-height:44px;
  display:flex;
  align-items:center;
  transition:color var(--transition),background var(--transition);
}
.p7k_nav-links a:last-child{border-bottom:none}
.p7k_nav-links a:hover{color:var(--highlight);background:rgba(255,255,255,0.04)}
.p7k_nav-cta{display:none}

/* ─── Hero ─── */
.p7k_hero{
  padding:2.5rem 0 2rem;
  position:relative;
  overflow:hidden;
}
.p7k_hero::before{
  content:'';
  position:absolute;
  top:-30%;
  right:-15%;
  width:500px;
  height:500px;
  background:radial-gradient(circle,rgba(232,23,43,0.1) 0%,transparent 70%);
  pointer-events:none;
}
.p7k_hero-inner{display:flex;flex-direction:column;gap:2rem}

.p7k_hero-badge{
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  background:rgba(245,196,0,0.1);
  border:1px solid rgba(245,196,0,0.28);
  border-radius:999px;
  padding:0.3rem 0.9rem;
  font-size:0.75rem;
  font-weight:600;
  color:var(--highlight);
  text-transform:uppercase;
  letter-spacing:0.05em;
  width:fit-content;
  margin-bottom:0.75rem;
}
.p7k_hero h1{margin-bottom:1rem}
.p7k_hero h1 em{font-style:normal;color:var(--accent)}
.p7k_hero-lead{
  font-size:1rem;
  color:var(--muted);
  margin-bottom:1.5rem;
  max-width:560px;
}
.p7k_hero-actions{display:flex;flex-direction:column;gap:0.75rem}
.p7k_hero-trust{display:flex;flex-wrap:wrap;gap:0.75rem;margin-top:1.25rem}
.p7k_hero-trust-item{
  display:flex;
  align-items:center;
  gap:0.4rem;
  font-size:0.8rem;
  color:var(--muted);
}
.p7k_hero-trust-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
  flex-shrink:0;
}

/* ─── Widget ─── */
.p7k_widget{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  box-shadow:var(--shadow-card);
}
.p7k_widget-header{
  text-align:center;
  margin-bottom:1.25rem;
  padding-bottom:1.25rem;
  border-bottom:1px solid var(--border);
}
.p7k_widget-badge{
  display:inline-block;
  background:rgba(232,23,43,0.15);
  color:var(--accent);
  font-size:0.72rem;
  font-weight:600;
  text-transform:uppercase;
  padding:0.2rem 0.7rem;
  border-radius:999px;
  margin-bottom:0.6rem;
  letter-spacing:0.05em;
}
.p7k_widget-title{
  font-family:var(--font-head);
  font-size:1.15rem;
  font-weight:700;
  margin-bottom:0.25rem;
}

.p7k_bonus-highlight{
  background:linear-gradient(135deg,rgba(245,196,0,0.1),rgba(232,23,43,0.07));
  border:1px solid rgba(245,196,0,0.22);
  border-radius:var(--radius-md);
  padding:1rem;
  margin:1rem 0;
  text-align:center;
}
.p7k_bonus-amount{
  font-family:var(--font-head);
  font-size:2.2rem;
  font-weight:700;
  color:var(--highlight);
  display:block;
  line-height:1;
}
.p7k_bonus-label{font-size:0.82rem;color:var(--muted);margin-top:0.3rem}

.p7k_promo-box{
  background:rgba(245,196,0,0.05);
  border:1px dashed rgba(245,196,0,0.28);
  border-radius:var(--radius-sm);
  padding:0.6rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0.75rem;
  margin:0.75rem 0;
}
.p7k_promo-label{font-size:0.75rem;color:var(--muted)}
.p7k_promo-code{
  font-family:var(--font-head);
  font-weight:700;
  font-size:1rem;
  color:var(--highlight);
  letter-spacing:0.06em;
}

.p7k_widget-specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0.5rem;
  margin:1rem 0;
}
.p7k_spec-item{
  background:rgba(255,255,255,0.04);
  border-radius:var(--radius-sm);
  padding:0.5rem 0.75rem;
}
.p7k_spec-label{font-size:0.7rem;color:var(--muted);text-transform:uppercase;letter-spacing:0.04em}
.p7k_spec-value{font-size:0.9rem;font-weight:600;color:var(--text);margin-top:0.15rem}

/* ─── Trust bar ─── */
.p7k_trust-bar{
  background:var(--bg-card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:0.9rem 0;
  content-visibility:auto;
  contain-intrinsic-size:0 60px;
}
.p7k_trust-bar-inner{
  display:flex;
  flex-direction:column;
  gap:0.6rem;
  align-items:center;
  text-align:center;
}
.p7k_trust-item{
  display:flex;
  align-items:center;
  gap:0.5rem;
  font-size:0.8rem;
  color:var(--muted);
}
.p7k_trust-item strong{color:var(--text)}

/* ─── Sections ─── */
.p7k_section{padding:2.5rem 0;content-visibility:auto;contain-intrinsic-size:0 500px}
.p7k_section--alt{background:var(--bg-card)}

.p7k_section-title{
  margin-bottom:1.25rem;
  position:relative;
  padding-bottom:0.75rem;
}
.p7k_section-title::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:40px;
  height:3px;
  background:var(--accent);
  border-radius:2px;
}
.p7k_section-lead{color:var(--muted);font-size:0.95rem;max-width:680px;margin-bottom:1.5rem}

/* ─── Steps ─── */
.p7k_steps{display:flex;flex-direction:column;gap:0.9rem;margin-top:1.5rem}
.p7k_step{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:1rem 1.25rem;
  transition:border-color var(--transition);
}
.p7k_step:hover{border-color:rgba(232,23,43,0.28)}
.p7k_step-num{
  flex-shrink:0;
  width:36px;
  height:36px;
  background:var(--accent);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-head);
  font-size:0.95rem;
  font-weight:700;
}
.p7k_step-content h3{font-size:1rem;margin-bottom:0.25rem}
.p7k_step-content p{font-size:0.88rem;color:var(--muted);margin-bottom:0}

/* ─── Table ─── */
.p7k_table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  margin:1.5rem 0;
  border-radius:var(--radius-md);
  border:1px solid var(--border);
}
.p7k_table{
  width:100%;
  border-collapse:collapse;
  min-width:340px;
  font-size:0.88rem;
}
.p7k_table th{
  background:rgba(232,23,43,0.1);
  color:var(--text);
  font-family:var(--font-head);
  font-weight:600;
  padding:0.7rem 1rem;
  text-align:left;
  border-bottom:1px solid var(--border);
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.p7k_table td{
  padding:0.65rem 1rem;
  border-bottom:1px solid rgba(46,45,53,0.55);
  color:var(--text);
}
.p7k_table tr:last-child td{border-bottom:none}
.p7k_table tr:hover td{background:rgba(255,255,255,0.02)}
.p7k_check{color:#2ED573}
.p7k_cross{color:var(--accent)}

/* ─── Bonus card ─── */
.p7k_bonus-card{
  background:linear-gradient(135deg,rgba(232,23,43,0.09),rgba(245,196,0,0.05));
  border:1px solid rgba(245,196,0,0.18);
  border-radius:var(--radius-lg);
  padding:2rem 1.5rem;
  margin:1.5rem 0;
  position:relative;
  overflow:hidden;
}
.p7k_bonus-card::before{
  content:'';
  position:absolute;
  top:-50px;
  right:-50px;
  width:200px;
  height:200px;
  background:radial-gradient(circle,rgba(245,196,0,0.07) 0%,transparent 70%);
  pointer-events:none;
}
.p7k_bonus-card-title{
  font-family:var(--font-head);
  font-size:1.4rem;
  color:var(--highlight);
  margin-bottom:0.4rem;
}
.p7k_bonus-grid{display:grid;grid-template-columns:1fr;gap:0.9rem;margin:1.25rem 0}
.p7k_bonus-item{
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:0.9rem 1rem;
}
.p7k_bonus-item-label{font-size:0.75rem;color:var(--muted);text-transform:uppercase;letter-spacing:0.04em}
.p7k_bonus-item-value{font-family:var(--font-head);font-size:1.25rem;font-weight:700;color:var(--highlight);margin-top:0.2rem}

/* ─── Features ─── */
.p7k_features{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:1.5rem}
.p7k_feature{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:1.25rem;
  transition:border-color var(--transition),transform var(--transition);
}
.p7k_feature:hover{border-color:rgba(232,23,43,0.28);transform:translateY(-2px)}
.p7k_feature-icon{
  width:44px;
  height:44px;
  background:rgba(232,23,43,0.1);
  border-radius:var(--radius-sm);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:0.75rem;
  font-size:1.25rem;
}
.p7k_feature h3{font-size:0.95rem;margin-bottom:0.35rem}
.p7k_feature p{font-size:0.85rem;color:var(--muted);margin-bottom:0}

/* ─── Author block ─── */
.p7k_author{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  margin:2rem 0;
}
.p7k_author-avatar{
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-head);
  font-size:1.15rem;
  font-weight:700;
  color:#fff;
  flex-shrink:0;
}
.p7k_author-name{font-family:var(--font-head);font-size:1rem;font-weight:700;margin-bottom:0.1rem}
.p7k_author-role{font-size:0.78rem;color:var(--muted);margin-bottom:0.5rem}
.p7k_author-bio{font-size:0.86rem;color:var(--muted);margin-bottom:0}

/* ─── Info box ─── */
.p7k_info-box{
  background:rgba(245,196,0,0.06);
  border-left:3px solid var(--highlight);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  padding:1rem 1.25rem;
  margin:1.25rem 0;
}
.p7k_info-box p{font-size:0.88rem;color:var(--text);margin-bottom:0}

.p7k_warn-box{
  background:rgba(232,23,43,0.06);
  border-left:3px solid var(--accent);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  padding:1rem 1.25rem;
  margin:1.25rem 0;
}
.p7k_warn-box p{font-size:0.88rem;color:var(--text);margin-bottom:0}

/* ─── FAQ accordion ─── */
.p7k_faq{display:flex;flex-direction:column;gap:0.5rem;margin-top:1.5rem}
.p7k_faq-item{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:border-color var(--transition);
}
.p7k_faq-item.open{border-color:rgba(232,23,43,0.3)}
.p7k_faq-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 1.25rem;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  color:var(--text);
  font-family:var(--font-head);
  font-size:0.92rem;
  font-weight:600;
  min-height:54px;
  transition:color var(--transition);
}
.p7k_faq-btn:hover{color:var(--highlight)}
.p7k_faq-icon{
  flex-shrink:0;
  width:20px;
  height:20px;
  position:relative;
}
.p7k_faq-icon::before,.p7k_faq-icon::after{
  content:'';
  position:absolute;
  background:currentColor;
  border-radius:2px;
  transition:opacity var(--transition),transform var(--transition);
}
.p7k_faq-icon::before{width:12px;height:2px;top:50%;left:50%;transform:translate(-50%,-50%)}
.p7k_faq-icon::after{width:2px;height:12px;top:50%;left:50%;transform:translate(-50%,-50%)}
.p7k_faq-item.open .p7k_faq-icon::after{opacity:0;transform:translate(-50%,-50%) rotate(90deg)}
.p7k_faq-answer{
  display:none;
  padding:0 1.25rem 1.25rem;
  font-size:0.88rem;
  color:var(--muted);
  line-height:1.65;
}
.p7k_faq-item.open .p7k_faq-answer{display:block}

/* ─── CTA Band ─── */
.p7k_cta-band{
  background:linear-gradient(135deg,#c9111f,var(--accent));
  padding:2.5rem 0;
  text-align:center;
  content-visibility:auto;
  contain-intrinsic-size:0 180px;
}
.p7k_cta-band h2{color:#fff;margin-bottom:0.5rem}
.p7k_cta-band p{color:rgba(255,255,255,0.82);margin-bottom:1.5rem;font-size:1.05rem}

/* ─── Footer ─── */
.p7k_footer{
  background:rgba(255,255,255,0.015);
  border-top:1px solid var(--border);
  padding:2rem 0 1.5rem;
  content-visibility:auto;
  contain-intrinsic-size:0 280px;
}
.p7k_footer-inner{display:flex;flex-direction:column;gap:1.5rem}
.p7k_footer-logo img{height:30px;width:auto}
.p7k_footer-desc{font-size:0.82rem;color:var(--muted);margin-top:0.5rem;max-width:300px}
.p7k_footer-links-title{
  font-family:var(--font-head);
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.07em;
  color:var(--muted);
  margin-bottom:0.7rem;
}
.p7k_footer-links{display:flex;flex-direction:column;gap:0.35rem}
.p7k_footer-links a{
  font-size:0.86rem;
  color:var(--muted);
  text-decoration:none;
  transition:color var(--transition);
  display:inline-block;
  min-height:28px;
  line-height:28px;
}
.p7k_footer-links a:hover{color:var(--text)}
.p7k_footer-bottom{
  border-top:1px solid var(--border);
  margin-top:1.5rem;
  padding-top:1.5rem;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
}
.p7k_footer-copy{font-size:0.76rem;color:var(--muted)}
.p7k_footer-legal{font-size:0.73rem;color:var(--muted);line-height:1.55}
.p7k_footer-age{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border:2px solid var(--muted);
  border-radius:50%;
  font-size:0.65rem;
  font-weight:700;
  color:var(--muted);
  font-family:var(--font-head);
  flex-shrink:0;
  margin-right:0.4rem;
}

/* ─── Sticky CTA ─── */
.p7k_sticky-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:200;
  background:var(--bg-card);
  border-top:1px solid var(--border);
  padding:0.7rem 1rem;
  display:flex;
  align-items:center;
  gap:0.75rem;
  box-shadow:0 -4px 24px rgba(0,0,0,0.45);
}
.p7k_sticky-cta-text{flex:1;min-width:0}
.p7k_sticky-cta-bonus{
  font-family:var(--font-head);
  font-size:0.82rem;
  font-weight:700;
  color:var(--highlight);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.p7k_sticky-cta-sub{font-size:0.68rem;color:var(--muted)}

/* ─── Animations ─── */
@keyframes p7k-fadeup{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes p7k-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(232,23,43,0.45)}
  50%{box-shadow:0 0 0 9px rgba(232,23,43,0)}
}
.p7k_animate{opacity:0}
.p7k_animate.visible{animation:p7k-fadeup 0.5s ease forwards}

/* ─── Responsive: 480px ─── */
@media(min-width:480px){
  .container{padding:0 1.5rem}
  .p7k_hero-actions{flex-direction:row;flex-wrap:wrap}
  .p7k_trust-bar-inner{flex-direction:row;flex-wrap:wrap;justify-content:center;gap:1.25rem}
  .p7k_bonus-grid{grid-template-columns:1fr 1fr}
  .p7k_features{grid-template-columns:1fr 1fr}
  .p7k_author{flex-direction:row;align-items:flex-start}
}

/* ─── Responsive: 768px ─── */
@media(min-width:768px){
  body{padding-bottom:0}
  .p7k_sticky-cta{display:none}
  .container{padding:0 2rem}
  .p7k_nav-toggle{display:none}
  .p7k_nav-links{
    display:flex;
    flex-direction:row;
    align-items:center;
    background:transparent;
    border-top:none;
    position:static;
    padding:0;
    gap:0.15rem;
    box-shadow:none;
  }
  .p7k_nav-links a{
    padding:0.45rem 0.7rem;
    border-bottom:none;
    font-size:0.82rem;
  }
  .p7k_nav-cta{display:block}
  .p7k_section{padding:3.5rem 0}
  .p7k_features{grid-template-columns:repeat(2,1fr)}
  .p7k_footer-inner{flex-direction:row;justify-content:space-between;align-items:flex-start}
  .p7k_footer-bottom{flex-direction:row;justify-content:space-between;align-items:center}
}

/* ─── Responsive: 1024px ─── */
@media(min-width:1024px){
  .p7k_hero-inner{
    flex-direction:row;
    align-items:flex-start;
    gap:3rem;
  }
  .p7k_hero-content{flex:1}
  .p7k_hero-widget{width:380px;flex-shrink:0}
  .p7k_features{grid-template-columns:repeat(4,1fr)}
  .p7k_bonus-grid{grid-template-columns:repeat(4,1fr)}
}
