/* ==========================================================================
   ANTI-SLOP / RAW COMMERCIAL THEME — PORTUGAL EDITION
   Palette: Deep Green, Red, Gold — High Contrast Black/White
   ========================================================================== */

:root {
  --pt-green: #006C35;
  --pt-red: #A61D22;
  --pt-gold: #C8A25D;
  --pt-gold-light: #FBEFCD;
  --bg-white: #FFFFFF;
  --bg-off: #F4F4F0;
  --text-dark: #000000;
  --text-mut: #333333;
  --border-thick: 3px solid #000;
  --border-thin: 1.5px solid #000;
  --shadow-hard: 6px 6px 0px #000;
  --shadow-pressed: 2px 2px 0px #000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ════════════════════════════════════════════════════════════════════════
   ANIMATIONS & KEYFRAMES
═════════════════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes shimmer {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

@keyframes glow {
  0%, 100% { box-shadow: 6px 6px 0px #000; }
  50% { box-shadow: 8px 8px 0px #000; }
}

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-fade-up { animation: fadeInUp 0.7s ease-out; }
.animate-slide-left { animation: slideInLeft 0.7s ease-out; }
.animate-slide-right { animation: slideInRight 0.7s ease-out; }
.animate-scale { animation: scaleIn 0.6s ease-out; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.5;
}

h1, h2, h3, .logo-text, .pcard-amount, .hstat-num, .vod-num, .trust-score {
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

a { text-decoration: none; color: inherit; }
.text-center { text-align: center; }
.underline-red { border-bottom: 4px solid var(--pt-red); display: inline; }
.white { color: var(--bg-white); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pt-green); color: var(--bg-white);
  padding: 14px 28px; font-weight: 800; font-size: 16px; text-transform: uppercase;
  border: var(--border-thick); box-shadow: var(--shadow-hard);
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer;
  position: relative; overflow: hidden;
}
.btn:hover {
  transform: translate(4px, 4px); box-shadow: var(--shadow-pressed);
  animation: pulse 0.3s ease-out;
}
.btn:active { transform: translate(6px, 6px); }
.btn-ghost { background: var(--bg-white); color: var(--text-dark); }
.btn-ghost:hover { background: var(--pt-gold); }
.btn-red { background: var(--pt-red); }
.wa-icon { width: 22px; height: 22px; fill: currentColor; }

/* Chips */
.chip {
  display: inline-block; font-size: 14px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-dark); background: var(--pt-gold-light);
  padding: 6px 14px; border: var(--border-thick); margin-bottom: 20px;
}

/* Sections */
.sec { padding: 80px 24px; border-bottom: var(--border-thick); }
.sec-sm { padding: 40px 24px; border-bottom: var(--border-thick); }
.sec-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.sec-sub { font-size: 18px; font-weight: 500; color: var(--text-mut); max-width: 600px; margin: 0 auto; }

/* ══ HEADER ══ */
.hdr {
  position: sticky; top: 0; background: var(--bg-white);
  border-bottom: var(--border-thick); z-index: 100;
}
.hdr-in {
  max-width: 1200px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: center; padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 900; text-transform: uppercase; color: var(--text-dark); letter-spacing: -0.04em; }
.logo img { height: 40px; width: auto; display: block; }
.logo-text { font-weight: 900; }
.logo em { font-style: normal; color: var(--pt-red); }
.nav { display: none; gap: 32px; font-weight: 700; font-size: 15px; text-transform: uppercase; }
.nav a:hover { text-decoration: underline; text-underline-offset: 4px; color: var(--pt-red); }
.hdr-cta {
  display: none; align-items: center; gap: 6px;
  background: var(--pt-gold); color: var(--text-dark);
  padding: 10px 20px; font-weight: 800; font-size: 14px; text-transform: uppercase;
  border: var(--border-thin); box-shadow: 3px 3px 0px #000; transition: 0.1s;
}
.hdr-cta:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0px #000; }
.hdr-cta svg { width: 18px; height: 18px; fill: currentColor; }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--text-dark); transition: 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mob-nav {
  display: none; flex-direction: column; background: var(--bg-white);
  position: absolute; top: 100%; left: 0; width: 100%;
  border-bottom: var(--border-thick); padding: 20px;
}
.mob-nav.open { display: flex; }
.mob-nav a { padding: 12px 0; font-weight: 800; text-transform: uppercase; border-bottom: var(--border-thin); }
.mob-nav a:last-child { border-bottom: none; }
.mob-wa { background: var(--pt-green); color: white; padding: 12px; display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; border: var(--border-thick); }
.mob-wa svg { width: 18px; height: 18px; fill: currentColor; }

@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav, .hdr-cta { display: flex; }
}

/* ══ HERO ══ */
.hero {
  padding: 100px 24px 80px; text-align: left;
  background-color: var(--bg-off); border-bottom: var(--border-thick);
  display: flex; flex-direction: column; align-items: center;
  animation: fadeIn 0.8s ease-out;
}
.hero-inner { max-width: 1000px; width: 100%; text-align: center; }
.hero-badge {
  display: inline-block; background: var(--pt-red); color: white;
  padding: 8px 16px; font-size: 14px; font-weight: 800;
  margin-bottom: 24px; text-transform: uppercase;
  border: var(--border-thick); transform: rotate(-1deg);
  animation: bounce 1s ease-in-out infinite;
  animation-delay: 0.2s;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 56px); margin-bottom: 24px; color: var(--text-dark);
  animation: fadeInUp 0.7s ease-out 0.1s both;
}
.hero-sub {
  font-size: 20px; font-weight: 500; color: var(--text-mut); max-width: 800px; margin: 0 auto 40px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}
.hero-btns {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 64px;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 30px; background: var(--bg-white); border: var(--border-thick);
  box-shadow: var(--shadow-hard); width: 100%; max-width: 1000px;
  animation: scaleIn 0.7s ease-out 0.4s both;
}
.hstat-num {
  font-size: 36px; color: var(--pt-green); margin-bottom: 4px;
  animation: pulse 2s ease-in-out infinite;
}
.hstat-lbl { font-size: 15px; font-weight: 800; text-transform: uppercase; }

/* ══ TRUST BAR ══ */
.trust-bar {
  background: var(--pt-green); color: white; padding: 16px 24px;
  border-bottom: var(--border-thick);
}
.trust-bar-in {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  font-size: 14px; font-weight: 800; text-transform: uppercase;
}
.trust-bar-in span::before { content: '✓ '; color: var(--pt-gold); }

/* ══ BENEFITS ══ */
.g3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.bcard {
  background: var(--bg-white); padding: 32px;
  border: var(--border-thick); box-shadow: 6px 6px 0px var(--pt-gold);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 0.6s ease-out backwards;
}
.bcard:nth-child(1) { animation-delay: 0.1s; }
.bcard:nth-child(2) { animation-delay: 0.2s; }
.bcard:nth-child(3) { animation-delay: 0.3s; }
.bcard:nth-child(4) { animation-delay: 0.4s; }
.bcard:nth-child(5) { animation-delay: 0.5s; }
.bcard:nth-child(6) { animation-delay: 0.6s; }
.bcard:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0px var(--pt-gold);
}
.bcard-icon {
  font-size: 40px; margin-bottom: 16px; border-bottom: var(--border-thin); padding-bottom: 8px; display: inline-block;
  transition: transform 0.3s ease-out;
}
.bcard:hover .bcard-icon {
  transform: scale(1.15) rotate(-5deg);
}
.bcard-title { font-size: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.bcard-text { font-size: 16px; font-weight: 500; color: var(--text-mut); }

/* ══ PRICING ══ */
.pricing { background: var(--bg-off); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: start; max-width: 1200px; margin: 0 auto; }
.pcard {
  background: var(--bg-white); padding: 40px 32px;
  border: var(--border-thick); text-align: center; position: relative;
  box-shadow: var(--shadow-hard);
  animation: fadeInUp 0.7s ease-out backwards;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pcard:nth-child(1) { animation-delay: 0.1s; }
.pcard:nth-child(2) { animation-delay: 0.2s; }
.pcard:nth-child(3) { animation-delay: 0.3s; }
.pcard-tag { font-size: 22px; font-weight: 900; margin-bottom: 16px; text-transform: uppercase; background: #000; color: #fff; padding: 4px; }
.pcard-price { margin-bottom: 8px; }
.pcard-euro { font-size: 28px; font-weight: 900; vertical-align: top; }
.pcard-amount { font-size: 72px; letter-spacing: -4px; }
.pcard-period { font-size: 15px; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; color: var(--text-mut); }
.pcard-divider { height: 3px; background: var(--text-dark); margin: 24px 0; }
.pcard-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pcard-features li { margin-bottom: 12px; font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.check { color: var(--pt-red); font-weight: 900; font-size: 20px; }
.pcard-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  background: var(--bg-off); color: var(--text-dark); font-weight: 900; font-size: 18px; text-transform: uppercase;
  border: var(--border-thick); box-shadow: 4px 4px 0px var(--text-dark);
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pcard-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--text-dark);
  background: var(--pt-gold);
  animation: shimmer 0.6s ease-out;
}
.pcard-btn:active { transform: translate(4px, 4px); }

.feat {
  background: var(--pt-green); color: white;
  transform: scale(1.02) translateY(-10px);
  box-shadow: 8px 8px 0px var(--pt-red);
  animation: pulse 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
.feat .pcard-tag { background: white; color: var(--pt-green); }
.feat .pcard-price, .feat .pcard-period { color: white; }
.feat .pcard-divider { background: white; }
.feat .check { color: var(--pt-gold); }
.feat .pcard-features li { font-weight: 700; }
.feat .pcard-period { color: rgba(255,255,255,0.75); }
.feat-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--pt-red); color: white; padding: 8px 16px;
  border: var(--border-thick); font-size: 14px; font-weight: 900; text-transform: uppercase;
  transform: rotate(4deg);
}
.feat .pcard-btn { background: var(--pt-gold); color: black; border-color: black; }
.feat .pcard-btn:hover { background: white; }

.pricing-note { text-align: center; margin-top: 40px; font-size: 16px; font-weight: 700; }
.pricing-note a { color: var(--pt-red); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) { .feat { transform: none; box-shadow: var(--shadow-hard); } }

/* ══ SPORT ══ */
.sport { background: var(--text-dark); color: white; }
.sport .chip { background: var(--pt-red); color: white; border-color: white; }
.sport .sec-sub { color: #ccc; }
.sport-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.sport-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #111; padding: 24px; border: 2px solid #333;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 0.6s ease-out backwards;
}
.sport-item:nth-child(1) { animation-delay: 0.1s; }
.sport-item:nth-child(2) { animation-delay: 0.2s; }
.sport-item:nth-child(3) { animation-delay: 0.3s; }
.sport-item:nth-child(4) { animation-delay: 0.4s; }
.sport-item:nth-child(5) { animation-delay: 0.5s; }
.sport-item:nth-child(6) { animation-delay: 0.6s; }
.sport-item:hover {
  border-color: var(--pt-gold);
  transform: translateX(8px);
  background: #1a1a1a;
}
.sport-emoji {
  font-size: 32px;
  transition: transform 0.3s ease-out;
}
.sport-item:hover .sport-emoji {
  transform: scale(1.3) rotate(10deg);
}
.sport-name { font-size: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.sport-desc { font-size: 15px; color: #aaa; }

/* ══ VOD ══ */
.vod { background: var(--pt-gold-light); }
.vod-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 64px; max-width: 1200px; margin: 0 auto; }
.vod-text { flex: 1 1 400px; }
.vod-text p { margin-bottom: 20px; font-size: 17px; font-weight: 500; color: var(--text-mut); }
.vod-visual {
  flex: 1 1 400px; background: var(--bg-white); padding: 48px;
  border: var(--border-thick); text-align: center; box-shadow: var(--shadow-hard);
}
.vod-num { font-size: 80px; color: var(--pt-red); margin-bottom: 8px; }
.vod-sub { font-size: 22px; font-weight: 900; text-transform: uppercase; margin-bottom: 32px; }
.vod-items { text-align: left; display: grid; gap: 16px; }
.vod-item {
  background: var(--bg-off); padding: 16px;
  font-weight: 800; text-transform: uppercase; font-size: 14px;
  border: var(--border-thick); box-shadow: 2px 2px 0px #000;
}

/* ══ STEPS ══ */
.steps { background: var(--bg-white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.step {
  background: var(--bg-off); padding: 32px;
  border: var(--border-thick); text-align: left; position: relative;
  box-shadow: 6px 6px 0px var(--pt-green);
  animation: fadeInUp 0.7s ease-out backwards;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0px var(--pt-green);
}
.step-num {
  width: 48px; height: 48px; background: var(--text-dark); color: white;
  border: 2px solid #000; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; margin-bottom: 24px;
}
.step-num.s2 { background: var(--pt-red); }
.step-num.s3 { background: var(--pt-gold); color: black; }
.step-title { font-size: 22px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.step-text { font-size: 16px; font-weight: 500; color: var(--text-mut); }

/* ══ DEVICES ══ */
.devices { background: var(--bg-off); }
.device-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 1200px; margin: 0 auto; }
.dcard {
  background: var(--bg-white); padding: 24px;
  text-align: center; border: var(--border-thick);
  animation: scaleIn 0.6s ease-out backwards;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dcard:nth-child(1) { animation-delay: 0.05s; }
.dcard:nth-child(2) { animation-delay: 0.1s; }
.dcard:nth-child(3) { animation-delay: 0.15s; }
.dcard:nth-child(4) { animation-delay: 0.2s; }
.dcard:nth-child(5) { animation-delay: 0.25s; }
.dcard:nth-child(6) { animation-delay: 0.3s; }
.dcard:nth-child(7) { animation-delay: 0.35s; }
.dcard:nth-child(8) { animation-delay: 0.4s; }
.dcard:hover {
  transform: scale(1.08);
  box-shadow: 6px 6px 0px var(--pt-green);
}
.dcard-icon {
  font-size: 40px; margin-bottom: 12px;
  transition: transform 0.3s ease-out;
  display: inline-block;
}
.dcard:hover .dcard-icon {
  transform: scale(1.25) rotate(10deg) translateY(-8px);
}
.dcard-name { font-weight: 900; font-size: 18px; text-transform: uppercase; margin-bottom: 8px; color: var(--pt-green); }
.dcard-text { font-size: 14px; font-weight: 500; color: var(--text-mut); }

/* ══ COMPARISON ══ */
.compare { background: var(--bg-white); }
.table-wrap { overflow-x: auto; max-width: 1000px; margin: 0 auto; border: var(--border-thick); box-shadow: var(--shadow-hard); }
.ctable { width: 100%; border-collapse: collapse; text-align: left; background: var(--bg-off); }
.ctable th { background: #000; color: white; padding: 20px 24px; font-weight: 900; font-size: 18px; text-transform: uppercase; white-space: nowrap; border-bottom: var(--border-thick); }
.ctable td { padding: 16px 24px; border-bottom: var(--border-thin); font-size: 16px; font-weight: 600; border-right: var(--border-thin); }
.ctable tr td:last-child { border-right: none; }
.ctable tr:last-child td { border-bottom: none; }
.ctable tr:hover td { background: var(--bg-white); }

/* ══ REVIEWS ══ */
.reviews { background: var(--pt-green); color: white; }
.reviews .sec-title, .reviews .sec-sub { color: white; }
.reviews .chip { background: white; border-color: white; color: var(--text-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.rcard {
  background: var(--bg-white); color: var(--text-dark); padding: 32px;
  border: var(--border-thick); box-shadow: 6px 6px 0px #000;
  animation: fadeInUp 0.6s ease-out backwards;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rcard:nth-child(1) { animation-delay: 0.1s; }
.rcard:nth-child(2) { animation-delay: 0.2s; }
.rcard:nth-child(3) { animation-delay: 0.3s; }
.rcard:nth-child(4) { animation-delay: 0.4s; }
.rcard:nth-child(5) { animation-delay: 0.5s; }
.rcard:nth-child(6) { animation-delay: 0.6s; }
.rcard:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0px #000;
}
.r-stars { color: var(--pt-red); font-size: 24px; margin-bottom: 16px; letter-spacing: 2px; }
.r-text { font-size: 16px; font-weight: 600; margin-bottom: 24px; border-left: 4px solid var(--pt-gold); padding-left: 16px; }
.r-author { display: flex; align-items: center; gap: 12px; }
.r-avatar { width: 48px; height: 48px; background: #000; color: white; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; border: 2px solid #000; flex-shrink: 0; }
.r-name { font-weight: 900; font-size: 16px; text-transform: uppercase; }
.r-loc { font-size: 14px; font-weight: 500; color: var(--text-mut); }
.trust-card { background: var(--pt-gold); text-align: center; border: var(--border-thick); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.trust-score { font-size: 64px; font-weight: 900; }
.trust-stars { color: #000; font-size: 28px; margin-bottom: 8px; }
.trust-label { font-size: 16px; font-weight: 800; text-transform: uppercase; }

/* ══ FAQ ══ */
.faq { background: var(--bg-off); }
.faq-wrap { max-width: 800px; margin: 0 auto; background: var(--bg-white); border: var(--border-thick); box-shadow: var(--shadow-hard); }
.faq-item { border-bottom: var(--border-thick); }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 24px; font-size: 17px; font-weight: 900; text-transform: uppercase; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { background: var(--pt-gold-light); }
.faq-ico { font-size: 28px; font-weight: 900; color: var(--pt-red); transition: 0.15s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; font-size: 16px; font-weight: 500; background: var(--bg-off); transition: max-height 0.25s ease-out; }
.faq-item.open .faq-a { max-height: 400px; padding: 24px; border-top: 3px solid #000; }
.faq-item.open .faq-ico { transform: rotate(45deg); color: #000; }
.faq-a a { color: var(--pt-red); font-weight: bold; text-decoration: underline; }

/* ══ CTA BAND ══ */
.cta-band { background: var(--bg-white); padding: 80px 24px; border-bottom: var(--border-thick); }
.cta-box {
  background: var(--pt-red); color: white; padding: 64px 32px;
  border: var(--border-thick); text-align: center; max-width: 1200px;
  margin: 0 auto; box-shadow: 10px 10px 0px #000;
}
.cta-box .chip { background: #000; color: white; border-color: #000; }
.cta-box h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; color: white; }
.cta-box p { font-size: 18px; font-weight: 600; max-width: 700px; margin: 0 auto 40px; }
.cta-pkgs { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-pkg {
  background: white; padding: 20px 32px; color: #000;
  border: var(--border-thick); box-shadow: 4px 4px 0px #000;
  display: flex; flex-direction: column; align-items: center; min-width: 200px;
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 0.6s ease-out backwards;
}
.cta-pkg:nth-child(1) { animation-delay: 0.1s; }
.cta-pkg:nth-child(2) { animation-delay: 0.2s; }
.cta-pkg:nth-child(3) { animation-delay: 0.3s; }
.cta-pkg:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000;
  animation: shimmer 0.4s ease-out;
}
.cta-pkg.highlight {
  background: var(--pt-gold);
  transform: scale(1.05);
  box-shadow: 6px 6px 0px #000;
  animation: pulse 2s ease-in-out infinite;
}
.cta-pkg.highlight:hover {
  transform: scale(1.05) translate(2px, 2px);
  box-shadow: 4px 4px 0px #000;
}
.cta-pkg-n { font-size: 16px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.cta-pkg-p { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.cta-pkg-l { font-size: 13px; font-weight: 800; text-transform: uppercase; background: #000; color: white; padding: 4px 8px; }
.cta-trust-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 15px; font-weight: 800; text-transform: uppercase; }
.cta-trust-row span { display: flex; align-items: center; gap: 8px; }
.cta-trust-row span::before { content: '■'; color: var(--pt-gold); font-size: 12px; }

/* ══ FOOTER ══ */
.footer { background: #000; color: white; padding: 80px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.f-logo { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 900; text-transform: uppercase; }
.f-logo img { height: 40px; width: auto; display: block; }
.f-logo .logo-text { font-weight: 900; }
.f-logo { display: flex; align-items: center; gap: 8px; font-size: 24px; font-weight: 900; margin-bottom: 20px; color: white; text-transform: uppercase; letter-spacing: -0.04em; }
.f-logo em { font-style: normal; color: var(--pt-red); }
.f-tagline { color: #ccc; margin-bottom: 24px; max-width: 350px; font-weight: 500; font-size: 15px; }
.f-wa { display: inline-flex; align-items: center; gap: 8px; color: #4ade80; font-weight: 900; font-size: 18px; }
.f-wa svg { width: 24px; height: 24px; fill: currentColor; }
.f-col-title { font-size: 18px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; color: var(--pt-gold); border-bottom: 2px solid #333; padding-bottom: 8px; display: inline-block; }
.f-links { list-style: none; }
.f-links li { margin-bottom: 12px; }
.f-links a { color: #aaa; font-weight: 600; text-transform: uppercase; font-size: 14px; }
.f-links a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 32px;
  border-top: 2px solid #333;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
  color: #888; font-size: 14px; font-weight: 600; text-transform: uppercase;
}
.payment-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-pill { background: #111; border: 1px solid #333; padding: 6px 12px; font-size: 13px; font-weight: 700; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
}
