@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Playfair+Display:wght@700;900&display=swap');

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
img,video{max-width:100%;height:auto}

/* ============================================================
   TOKENS
   ============================================================ */
:root{
  --bg-base:#111118;
  --bg-card:#1e1e2a;
  --accent:#e8192c;
  --highlight:#f0a500;
  --text:#f0f0f0;
  --muted:#8888a0;
  --border:#2e2e40;

  --ff-head:'Playfair Display',Georgia,serif;
  --ff-body:'Inter',system-ui,-apple-system,sans-serif;
  --radius:8px;
  --radius-lg:16px;
  --tr:0.2s ease;
}

/* ============================================================
   HTML / BODY
   ============================================================ */
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{
  background:var(--bg-base);
  color:var(--text);
  font-family:var(--ff-body);
  line-height:1.65;
  padding-bottom:70px;
  min-height:100vh;
}
@media(min-width:768px){body{padding-bottom:0}}

::-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(--ff-head);
  line-height:1.2;
  color:var(--text);
}
h1{font-size:clamp(1.75rem,5vw,3rem);font-weight:900}
h2{font-size:clamp(1.35rem,3.5vw,2rem);font-weight:700;margin-bottom:1rem}
h3{font-size:clamp(1.05rem,2.5vw,1.35rem);font-weight:700;margin-bottom:0.6rem}
h4{font-size:1rem;font-weight:700;margin-bottom:0.4rem}
p{margin-bottom:1rem;color:var(--text)}
p:last-child{margin-bottom:0}
strong{color:var(--highlight);font-weight:700}
em{font-style:italic}
a{color:var(--accent);text-decoration:none;transition:color var(--tr)}
a:hover,a:focus-visible{color:var(--highlight);outline:2px solid var(--highlight);outline-offset:2px}
a:focus:not(:focus-visible){outline:none}
ul,ol{padding-left:1.25rem}
li{margin-bottom:0.4rem}

/* ============================================================
   CONTAINER
   ============================================================ */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1rem}
@media(min-width:480px){.container{padding:0 1.5rem}}
@media(min-width:768px){.container{padding:0 2rem}}
@media(min-width:1024px){.container{padding:0 2.5rem}}

/* ============================================================
   BUTTONS
   ============================================================ */
.p7k_btn{
  display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
  border:none;border-radius:var(--radius);cursor:pointer;
  font-family:var(--ff-body);font-weight:700;letter-spacing:0.02em;
  text-decoration:none;transition:transform var(--tr),opacity var(--tr),background var(--tr);
  min-height:44px;padding:0 1.25rem;font-size:1rem;
  user-select:none;-webkit-user-select:none;
}
.p7k_btn:active{transform:scale(0.97)}

.p7k_btn-primary{background:var(--accent);color:#fff}
.p7k_btn-primary:hover{opacity:0.9;color:#fff}

.p7k_btn-highlight{background:var(--highlight);color:#111118}
.p7k_btn-highlight:hover{opacity:0.9;color:#111118}

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

.p7k_btn-ghost{background:transparent;color:var(--muted);border:1px solid var(--border)}
.p7k_btn-ghost:hover{color:var(--text);border-color:var(--muted)}

.p7k_btn-sm{font-size:0.82rem;padding:0 0.9rem;min-height:36px}
.p7k_btn-md{font-size:1rem}
.p7k_btn-lg{font-size:1.1rem;padding:0 2rem;min-height:52px}
.p7k_btn-full{width:100%;display:flex}

/* ============================================================
   NAVIGATION
   ============================================================ */
.p7k_nav{
  background:var(--bg-card);
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:100;
}
.p7k_nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:60px;padding:0 1rem;max-width:1200px;margin:0 auto;
}
.p7k_logo{
  font-family:var(--ff-head);font-size:1.5rem;font-weight:900;
  color:var(--accent);text-decoration:none;
  display:flex;align-items:center;gap:0.15rem;
  outline:none;
}
.p7k_logo:hover{color:var(--accent)}
.p7k_logo em{color:var(--highlight);font-style:normal}

.p7k_nav-links{display:none;gap:1.25rem;align-items:center;list-style:none}
.p7k_nav-links a{
  color:var(--muted);font-size:0.875rem;font-weight:700;
  transition:color var(--tr);padding:0.25rem 0;
}
.p7k_nav-links a:hover{color:var(--text)}

.p7k_nav-cta{display:none;gap:0.75rem;align-items:center}

.p7k_hamburger{
  background:none;border:1px solid var(--border);border-radius:var(--radius);
  cursor:pointer;color:var(--text);
  display:flex;flex-direction:column;gap:5px;
  padding:0;width:44px;height:44px;justify-content:center;align-items:center;
  flex-shrink:0;
}
.p7k_hamburger span{
  display:block;width:20px;height:2px;
  background:var(--text);transition:transform var(--tr),opacity var(--tr);
}
.p7k_hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.p7k_hamburger[aria-expanded="true"] span:nth-child(2){opacity:0}
.p7k_hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.p7k_mobile-nav{
  display:none;flex-direction:column;
  background:var(--bg-card);border-bottom:1px solid var(--border);
  padding:1rem 1.5rem;gap:0;
}
.p7k_mobile-nav.open{display:flex}
.p7k_mobile-nav a{
  color:var(--muted);font-weight:700;font-size:0.9rem;
  padding:0.75rem 0;border-bottom:1px solid var(--border);
  display:block;
}
.p7k_mobile-nav a:last-child{border-bottom:none}
.p7k_mobile-nav a:hover{color:var(--text)}

@media(min-width:768px){
  .p7k_nav-inner{padding:0 2rem}
  .p7k_nav-links{display:flex}
  .p7k_nav-cta{display:flex}
  .p7k_hamburger{display:none}
  .p7k_mobile-nav{display:none!important}
}

/* ============================================================
   HERO — LAYOUT A (split grid, mobile-first = single col)
   ============================================================ */
.p7k_hero{
  padding:2rem 0 2.5rem;
  background:linear-gradient(160deg,#15151f 55%,#1a0a0e 100%);
  position:relative;overflow:hidden;
}
.p7k_hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 75% 30%,rgba(232,25,44,0.1) 0%,transparent 55%),
             radial-gradient(ellipse at 20% 80%,rgba(240,165,0,0.05) 0%,transparent 50%);
  pointer-events:none;
}
.p7k_hero-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  align-items:start;
  position:relative;
}
.p7k_hero-badge{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:rgba(240,165,0,0.1);border:1px solid rgba(240,165,0,0.3);
  color:var(--highlight);font-size:0.75rem;font-weight:700;
  padding:0.3rem 0.85rem;border-radius:100px;margin-bottom:0.85rem;
  text-transform:uppercase;letter-spacing:0.06em;
}
.p7k_hero h1{margin-bottom:0.85rem}
.p7k_hero-sub{
  font-size:1rem;color:var(--muted);margin-bottom:1.25rem;
}
.p7k_hero-actions{
  display:flex;flex-direction:column;gap:0.75rem;margin-bottom:1.25rem;
}
.p7k_hero-note{font-size:0.78rem;color:var(--muted)}
.p7k_hero-note a{color:var(--muted);text-decoration:underline}

.p7k_bonus-widget{
  background:var(--bg-card);
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:1.5rem;
}
.p7k_bonus-widget-badge{
  display:inline-flex;align-items:center;gap:0.4rem;
  background:rgba(232,25,44,0.1);border:1px solid rgba(232,25,44,0.25);
  color:var(--accent);font-size:0.7rem;font-weight:700;
  padding:0.25rem 0.6rem;border-radius:100px;
  text-transform:uppercase;letter-spacing:0.05em;margin-bottom:1rem;
}
.p7k_bonus-main{margin-bottom:0.5rem}
.p7k_bonus-percent{
  font-family:var(--ff-head);font-size:clamp(2.5rem,7vw,3.5rem);
  font-weight:900;color:var(--highlight);line-height:1;display:block;
}
.p7k_bonus-fs{
  font-family:var(--ff-head);font-size:1.5rem;font-weight:700;
  color:var(--text);
}
.p7k_bonus-desc{color:var(--muted);font-size:0.875rem;margin-bottom:1.25rem}
.p7k_promo-box{
  background:rgba(232,25,44,0.07);
  border:1px dashed rgba(232,25,44,0.4);
  border-radius:var(--radius);padding:0.85rem 1rem;
  margin-bottom:1.25rem;
}
.p7k_promo-label{font-size:0.72rem;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:0.06em;display:block;margin-bottom:0.35rem}
.p7k_promo-row{display:flex;align-items:center;justify-content:space-between;gap:0.5rem}
.p7k_promo-code{
  font-family:monospace;font-size:1.1rem;font-weight:700;
  color:var(--accent);letter-spacing:0.12em;
}
.p7k_copy-btn{
  background:var(--accent);color:#fff;border:none;border-radius:var(--radius);
  padding:0.35rem 0.7rem;font-size:0.72rem;font-weight:700;
  cursor:pointer;transition:opacity var(--tr);min-height:32px;white-space:nowrap;
}
.p7k_copy-btn:hover{opacity:0.85}
.p7k_bonus-terms{font-size:0.72rem;color:var(--muted);line-height:1.5}

@media(min-width:480px){
  .p7k_hero-actions{flex-direction:row;flex-wrap:wrap}
}
@media(min-width:1024px){
  .p7k_hero{padding:3.5rem 0 4rem}
  .p7k_hero-inner{grid-template-columns:1fr 400px;gap:3rem;align-items:center}
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.p7k_trust{
  background:var(--bg-card);
  border-bottom:1px solid var(--border);
  padding:0.85rem 0;
}
.p7k_trust-items{
  display:flex;flex-wrap:wrap;gap:0.85rem 1.5rem;
  justify-content:center;align-items:center;
}
.p7k_trust-item{
  display:flex;align-items:center;gap:0.45rem;
  font-size:0.8rem;color:var(--muted);white-space:nowrap;
}
.p7k_trust-icon{font-size:1rem;flex-shrink:0}
@media(min-width:768px){
  .p7k_trust-items{justify-content:space-between;flex-wrap:nowrap}
}

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

.p7k_section-head{margin-bottom:1.5rem}
.p7k_section-head h2{
  display:flex;align-items:center;gap:0.75rem;
}
.p7k_section-head h2::before{
  content:'';display:block;width:4px;height:1.5em;
  background:var(--accent);border-radius:2px;flex-shrink:0;
}

/* ============================================================
   GRID / CARD LAYOUTS
   ============================================================ */
.p7k_grid-2{display:grid;grid-template-columns:1fr;gap:1.25rem}
.p7k_grid-3{display:grid;grid-template-columns:1fr;gap:1.25rem}
.p7k_grid-4{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

@media(min-width:480px){
  .p7k_grid-2{grid-template-columns:1fr 1fr}
  .p7k_grid-3{grid-template-columns:1fr 1fr}
}
@media(min-width:768px){
  .p7k_grid-3{grid-template-columns:repeat(3,1fr)}
  .p7k_grid-4{grid-template-columns:repeat(4,1fr)}
}

.p7k_card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:1.25rem;
}
.p7k_card-accent{border-top:3px solid var(--accent)}
.p7k_card-highlight{border-top:3px solid var(--highlight)}

/* ============================================================
   TABLE
   ============================================================ */
.p7k_table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:var(--radius);border:1px solid var(--border)}
.p7k_table{width:100%;border-collapse:collapse;font-size:0.875rem;min-width:400px}
.p7k_table th{
  background:rgba(232,25,44,0.08);color:var(--highlight);
  font-weight:700;text-align:left;padding:0.75rem 1rem;
  border-bottom:2px solid var(--accent);white-space:nowrap;
}
.p7k_table td{padding:0.75rem 1rem;border-bottom:1px solid var(--border);color:var(--text)}
.p7k_table tr:last-child td{border-bottom:none}
.p7k_table tbody tr:hover td{background:rgba(255,255,255,0.02)}
.p7k_table .ok{color:var(--highlight)}
.p7k_table .no{color:var(--muted)}

/* ============================================================
   CHECKLIST / STEPS
   ============================================================ */
.p7k_checklist{list-style:none;padding:0;display:flex;flex-direction:column;gap:0.6rem}
.p7k_checklist li{display:flex;align-items:flex-start;gap:0.65rem;font-size:0.93rem}
.p7k_checklist li::before{
  content:'✓';color:var(--highlight);font-weight:700;flex-shrink:0;margin-top:0.05rem;
}
.p7k_checklist-x li::before{content:'✗';color:var(--muted)}

.p7k_steps{display:flex;flex-direction:column;gap:1.25rem}
.p7k_step{display:flex;align-items:flex-start;gap:1rem}
.p7k_step-num{
  width:36px;height:36px;min-width:36px;border-radius:50%;
  background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:0.875rem;
}
.p7k_step-body h4{margin-bottom:0.2rem}
.p7k_step-body p{color:var(--muted);font-size:0.875rem;margin:0}

/* ============================================================
   RATING / SCORE
   ============================================================ */
.p7k_rating{display:flex;align-items:center;gap:0.75rem;margin-bottom:1rem}
.p7k_rating-score{
  font-family:var(--ff-head);font-size:2.5rem;font-weight:900;color:var(--highlight);
}
.p7k_rating-info{display:flex;flex-direction:column}
.p7k_stars{color:var(--highlight);letter-spacing:2px;font-size:1.1rem}
.p7k_stars-label{font-size:0.78rem;color:var(--muted)}

.p7k_score-grid{display:grid;grid-template-columns:1fr;gap:0.6rem}
@media(min-width:480px){.p7k_score-grid{grid-template-columns:1fr 1fr}}
.p7k_score-item{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:0.65rem 1rem;
  display:flex;align-items:center;justify-content:space-between;
}
.p7k_score-label{font-size:0.82rem;color:var(--muted)}
.p7k_score-val{font-weight:700;color:var(--highlight);font-size:0.9rem}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.p7k_faq{display:flex;flex-direction:column;gap:0.5rem}
.p7k_faq-item{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
}
.p7k_faq-btn{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:0.875rem 1.25rem;background:none;border:none;color:var(--text);
  font-family:var(--ff-body);font-size:0.93rem;font-weight:700;cursor:pointer;
  text-align:left;min-height:52px;transition:background var(--tr);gap:1rem;
}
.p7k_faq-btn:hover{background:rgba(255,255,255,0.025)}
.p7k_faq-icon{
  font-size:1.25rem;font-weight:400;color:var(--accent);
  transition:transform var(--tr);flex-shrink:0;line-height:1;
}
.p7k_faq-item.open .p7k_faq-icon{transform:rotate(45deg)}
.p7k_faq-body{
  max-height:0;overflow:hidden;
  transition:max-height 0.3s ease;
}
.p7k_faq-item.open .p7k_faq-body{max-height:600px}
.p7k_faq-body-inner{
  padding:0 1.25rem 1.25rem;
  color:var(--muted);font-size:0.875rem;line-height:1.7;
}
.p7k_faq-body-inner p{color:var(--muted)}
.p7k_faq-body-inner a{color:var(--accent)}

/* ============================================================
   CTA BAND
   ============================================================ */
.p7k_cta-band{
  background:linear-gradient(135deg,#c0001a,var(--accent));
  padding:2.5rem 0;text-align:center;
}
.p7k_cta-band h2{color:#fff;margin-bottom:0.75rem}
.p7k_cta-band h2::before{display:none}
.p7k_cta-band p{color:rgba(255,255,255,0.8);margin-bottom:1.5rem}
.p7k_cta-code{
  display:inline-block;background:rgba(255,255,255,0.15);
  border:1px dashed rgba(255,255,255,0.5);
  border-radius:var(--radius);padding:0.4rem 1rem;
  font-family:monospace;font-size:1rem;color:#fff;
  letter-spacing:0.1em;font-weight:700;margin-bottom:1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.p7k_footer{
  background:var(--bg-card);
  border-top:1px solid var(--border);
  padding:2rem 0 0;
}
.p7k_footer-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:2rem}
@media(min-width:480px){.p7k_footer-grid{grid-template-columns:1fr 1fr}}
@media(min-width:768px){.p7k_footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}

.p7k_footer-logo{
  font-family:var(--ff-head);font-size:1.4rem;font-weight:900;
  color:var(--accent);display:inline-block;margin-bottom:0.5rem;
  text-decoration:none;
}
.p7k_footer-logo:hover{color:var(--accent)}
.p7k_footer-brand p{color:var(--muted);font-size:0.82rem;line-height:1.6}

.p7k_footer-col h4{
  color:var(--text);font-size:0.78rem;
  text-transform:uppercase;letter-spacing:0.08em;
  margin-bottom:0.75rem;font-family:var(--ff-body);
}
.p7k_footer-col ul{list-style:none;padding:0;display:flex;flex-direction:column;gap:0.4rem}
.p7k_footer-col a{color:var(--muted);font-size:0.82rem;transition:color var(--tr)}
.p7k_footer-col a:hover{color:var(--text)}

.p7k_footer-bottom{
  border-top:1px solid var(--border);padding:1rem 0;
  display:flex;flex-direction:column;gap:0.75rem;
  font-size:0.75rem;color:var(--muted);
}
.p7k_footer-bottom a{color:var(--muted);text-decoration:underline}
.p7k_footer-legal{display:flex;align-items:flex-start;gap:0.75rem}
.p7k_age-badge{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;min-width:32px;border-radius:50%;
  border:2px solid var(--muted);font-size:0.65rem;font-weight:700;
  color:var(--muted);flex-shrink:0;margin-top:0.1rem;
}
@media(min-width:768px){
  .p7k_footer-bottom{flex-direction:row;justify-content:space-between;align-items:center}
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.p7k_sticky-cta{
  position:fixed;bottom:0;left:0;right:0;z-index:200;
  background:var(--bg-card);border-top:2px solid var(--accent);
  padding:0.7rem 1rem;
  display:flex;gap:0.6rem;align-items:center;
}
.p7k_sticky-cta .p7k_btn{flex:1;font-size:0.875rem;min-height:44px}
.p7k_sticky-label{font-size:0.68rem;color:var(--muted);white-space:nowrap}
@media(min-width:768px){.p7k_sticky-cta{display:none}}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.p7k_page-hero{
  padding:1.75rem 0;
  background:linear-gradient(135deg,var(--bg-card) 0%,var(--bg-base) 100%);
  border-bottom:1px solid var(--border);
}
.p7k_breadcrumb{
  display:flex;align-items:center;gap:0.4rem;flex-wrap:wrap;
  font-size:0.78rem;color:var(--muted);margin-bottom:0.6rem;list-style:none;padding:0;
}
.p7k_breadcrumb a{color:var(--muted);transition:color var(--tr)}
.p7k_breadcrumb a:hover{color:var(--text)}
.p7k_breadcrumb-sep{color:var(--border);font-size:0.65rem}
.p7k_page-hero h1{margin-bottom:0.5rem}
.p7k_page-hero-sub{color:var(--muted);font-size:0.93rem;margin:0}

/* ============================================================
   AUTHOR PAGE
   ============================================================ */
.p7k_author-header{
  display:flex;flex-direction:column;gap:1.25rem;
  align-items:flex-start;margin-bottom:2rem;
}
@media(min-width:480px){.p7k_author-header{flex-direction:row;align-items:center}}
.p7k_avatar{
  width:80px;height:80px;min-width:80px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--highlight));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--ff-head);font-size:1.75rem;font-weight:900;color:#fff;
}
.p7k_author-name{font-size:clamp(1.5rem,4vw,2rem);margin-bottom:0.25rem}
.p7k_author-title{color:var(--muted);font-size:0.875rem;font-family:var(--ff-body);font-weight:400;display:block;margin-bottom:0}

/* ============================================================
   TAGS
   ============================================================ */
.p7k_tags{display:flex;flex-wrap:wrap;gap:0.5rem;list-style:none;padding:0}
.p7k_tag{
  background:rgba(232,25,44,0.08);border:1px solid rgba(232,25,44,0.2);
  color:var(--text);font-size:0.78rem;font-weight:700;
  padding:0.3rem 0.75rem;border-radius:100px;
}

/* ============================================================
   ALERTS / CALLOUTS
   ============================================================ */
.p7k_alert{
  background:rgba(240,165,0,0.07);border:1px solid rgba(240,165,0,0.25);
  border-left:4px solid var(--highlight);
  border-radius:var(--radius);padding:0.875rem 1.25rem;margin-bottom:1rem;
  font-size:0.875rem;
}
.p7k_alert p{color:var(--text);margin:0}
.p7k_alert-red{background:rgba(232,25,44,0.07);border-color:rgba(232,25,44,0.25);border-left-color:var(--accent)}
.p7k_alert-red p{color:var(--text)}

/* ============================================================
   ARTICLE BODY (review / about / methodology)
   ============================================================ */
.p7k_article h2{margin-top:2rem}
.p7k_article h3{margin-top:1.5rem}
.p7k_article ul{margin-bottom:1rem}
.p7k_article ol{margin-bottom:1rem}
.p7k_article li{margin-bottom:0.5rem;color:var(--text)}

/* ============================================================
   METHODOLOGY CRITERIA
   ============================================================ */
.p7k_criteria{display:flex;flex-direction:column;gap:0.875rem}
.p7k_criterion{
  display:flex;align-items:flex-start;gap:1rem;
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1rem 1.25rem;
}
.p7k_criterion-num{
  font-family:var(--ff-head);font-size:1.4rem;font-weight:900;
  color:var(--accent);flex-shrink:0;line-height:1;min-width:1.8rem;
}
.p7k_criterion h4{margin-bottom:0.2rem}
.p7k_criterion p{color:var(--muted);font-size:0.875rem;margin:0}

/* ============================================================
   CONTACT METHODS
   ============================================================ */
.p7k_contact-method{
  display:flex;align-items:flex-start;gap:1rem;
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:1.25rem;
}
.p7k_contact-icon{
  width:44px;height:44px;min-width:44px;border-radius:var(--radius);
  background:rgba(232,25,44,0.1);border:1px solid rgba(232,25,44,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;
}
.p7k_contact-info h4{margin-bottom:0.2rem}
.p7k_contact-info p{color:var(--muted);font-size:0.82rem;margin:0}

/* ============================================================
   ISSUE CARDS
   ============================================================ */
.p7k_issue{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.25rem;margin-bottom:1rem;
}
.p7k_issue h3{color:var(--accent);margin-bottom:0.5rem}

/* ============================================================
   PRIVACY / LEGAL
   ============================================================ */
.p7k_legal{max-width:800px}
.p7k_legal h2{margin-top:2rem;font-size:1.25rem}
.p7k_legal h3{margin-top:1.25rem;font-size:1.05rem}
.p7k_legal p{color:var(--muted)}
.p7k_legal ul{color:var(--muted);margin-bottom:1rem}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes p7k-fadeup{
  from{opacity:0;transform:translateY(16px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes p7k-pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.04)}
}
.p7k_animate{opacity:0}
.p7k_animate.visible{animation:p7k-fadeup 0.5s ease forwards}
.p7k_pulse{animation:p7k-pulse 2.5s ease infinite}

/* ============================================================
   RESPONSIVE SCALE-UP
   ============================================================ */
@media(min-width:480px){
  .p7k_section{padding:3rem 0}
}
@media(min-width:768px){
  .p7k_section{padding:3.5rem 0}
  .p7k_bonus-widget{position:sticky;top:80px}
}
@media(min-width:1024px){
  .p7k_section{padding:4rem 0}
}

/* ============================================================
   UTILITY
   ============================================================ */
.p7k_text-muted{color:var(--muted)}
.p7k_text-accent{color:var(--accent)}
.p7k_text-highlight{color:var(--highlight)}
.p7k_text-center{text-align:center}
.p7k_mb-0{margin-bottom:0}
.p7k_mb-1{margin-bottom:0.5rem}
.p7k_mb-2{margin-bottom:1rem}
.p7k_mb-3{margin-bottom:1.5rem}
.p7k_mt-1{margin-top:0.5rem}
.p7k_mt-2{margin-top:1rem}
.p7k_separator{border:none;border-top:1px solid var(--border);margin:1.5rem 0}
