/* ==========================================================================
   5G Male — 5gmaale.com
   Design direction: "Performance Confidence" — black + red, bold and direct
   ========================================================================== */

:root {
  --red: #C41E1E;
  --red-deep: #8C1414;
  --red-bright: #E63946;
  --black: #0A0A0A;
  --off-black: #141414;
  --white: #FFFFFF;
  --section-tint: #F7F7F7;
  --badge-tint: #FBE4E4;
  --border-light: #E5E5E5;
  --border-radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0px 6px 20px rgba(0, 0, 0, 0.12);
  --shadow-elevated: 0px 10px 30px rgba(0,0,0,0.35);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  font-weight: 400;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.22; margin: 0 0 16px; color: var(--black); }
h1 { font-size: clamp(32px, 5vw, 50px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: 22px; }

p { margin: 0 0 16px; }
a { color: var(--red); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.lead { font-size: 20px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--black); color: var(--white); padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--red-bright); outline-offset: 2px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-heading); font-size: 18px; font-weight: 700; padding: 18px 34px; border-radius: 10px; border: 2px solid transparent; cursor: pointer; min-height: 44px; text-align: center; transition: background-color .2s ease, transform .15s ease; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--black); border-color: var(--black); }
.btn-secondary:hover { background: var(--section-tint); }
.btn-block { width: 100%; }

.ticker { background: var(--black); color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 16px; padding: 10px 0; text-align: center; }
.ticker span { margin: 0 18px; display: inline-block; }

.site-nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 2px solid var(--border-light); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1180px; margin: 0 auto; gap: 20px; position: relative; }
.logo { font-family: var(--font-heading); font-weight: 800; font-size: 23px; color: var(--black); }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.nav-links a { color: var(--black); font-size: 16px; font-weight: 600; }
.nav-links a:hover { color: var(--red); }
.nav-cta { display: none; }
.nav-toggle { display: none; background: none; border: 2px solid var(--black); border-radius: 10px; padding: 8px 12px; font-size: 22px; cursor: pointer; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.hero { background-color: var(--black); background-image: radial-gradient(at center center, var(--red-deep) 0%, var(--black) 100%); color: var(--white); padding: 60px 0; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.05fr 0.95fr; } }
.hero h1 { color: var(--white); }
.hero p { color: var(--white); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px; }
.chip { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.35); color: var(--white); padding: 8px 16px; border-radius: 999px; font-size: 15px; font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image img { border-radius: var(--radius-lg); }

.trust-bar { background: var(--section-tint); padding: 28px 0; border-bottom: 1px solid var(--border-light); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
@media (min-width: 800px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-item { font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.trust-item .icon { font-size: 28px; display: block; margin-bottom: 8px; }

.section { padding: 64px 0; }
.section-tint { background: var(--section-tint); }
.section-header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); background: var(--badge-tint); padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; }

.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } .two-col.reverse .col-image { order: 2; } }
.col-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

.card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .card-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }

.card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--border-radius); padding: 26px; box-shadow: var(--shadow-card); }
.card .icon { font-size: 32px; margin-bottom: 12px; display: block; }
.card h3 { margin-bottom: 10px; font-size: 19px; }
.card p:last-child { margin-bottom: 0; }

.steps { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: center; }
.step-num { font-family: var(--font-heading); font-weight: 800; font-size: 40px; color: var(--red); margin-bottom: 8px; }

.contrast-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 800px) { .contrast-grid { grid-template-columns: 1fr 1fr; } }
.contrast-card { border-radius: var(--radius-lg); padding: 32px; }
.contrast-card.yes { background: var(--section-tint); border: 2px solid var(--red); }
.contrast-card.no { background: #FAFAFA; border: 2px solid #E2E2E2; }
.contrast-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.contrast-card li { padding: 8px 0; font-size: 17px; }
.contrast-card.yes li::before { content: "✓ "; color: var(--red); font-weight: 800; }
.contrast-card.no li::before { content: "✗ "; color: #666666; font-weight: 800; }

.table-wrap { overflow-x: auto; border-radius: var(--border-radius); border: 1px solid var(--border-light); }
table.compare { width: 100%; border-collapse: collapse; font-size: 17px; min-width: 560px; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border-light); }
table.compare th { background: var(--black); color: var(--white); font-family: var(--font-heading); }
table.compare tr:nth-child(even) td { background: var(--section-tint); }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-card); position: relative; }
.price-card.featured { border-color: var(--red); box-shadow: var(--shadow-elevated); }
.badge-best { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); padding: 6px 18px; border-radius: 999px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.price-card img { margin: 0 auto 16px; }
.price-big { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--black); }
.price-per { font-size: 16px; }
.price-list { list-style: none; padding: 0; margin: 16px 0 24px; text-align: left; }
.price-list li { padding: 6px 0; font-size: 16px; }
.price-list li::before { content: "✓ "; color: var(--red); font-weight: 800; }

.guarantee-box { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; background: var(--section-tint); border-radius: var(--radius-lg); padding: 40px; }
@media (min-width: 800px) { .guarantee-box { grid-template-columns: 240px 1fr; } }

.testimonial-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--border-radius); padding: 26px; box-shadow: var(--shadow-card); }
.stars { color: var(--red); font-size: 20px; letter-spacing: 2px; margin-bottom: 10px; }
.verified { display: inline-block; font-size: 13px; font-weight: 700; background: var(--badge-tint); color: var(--red); padding: 4px 10px; border-radius: 999px; margin-top: 12px; }

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-family: var(--font-heading); font-size: 18px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--black); }
.faq-question .plus { font-size: 24px; color: var(--red); flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding-bottom: 20px; }

.article-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-card); }
.article-card img { aspect-ratio: 16/10; object-fit: cover; }
.article-card-body { padding: 20px; }
.article-card .meta { font-size: 14px; margin-bottom: 8px; }
.article-card a.card-link { color: var(--black); }
.read-more { font-weight: 700; color: var(--red); }

.final-cta { background-color: var(--black); background-image: radial-gradient(at center center, var(--red-deep) 0%, var(--black) 100%); color: var(--white); text-align: center; padding: 64px 0; }
.final-cta h2, .final-cta p { color: var(--white); }
.final-cta img { margin: 0 auto 28px; max-width: 220px; }
.payment-icons { margin-top: 20px; font-size: 15px; opacity: .85; }

.disclosure-box { background: var(--badge-tint); border: 1px solid var(--red); border-radius: var(--border-radius); padding: 20px 24px; font-size: 16px; }
.disclosure-box strong { color: var(--red-deep); }

/* Bonus offers */
.bonus-section { background-color: var(--black); background-image: radial-gradient(at 50% 0%, var(--red-deep) 0%, var(--black) 60%); color: var(--white); }
.bonus-section .section-header h2, .bonus-section .section-header p { color: var(--white); }
.bonus-figure { margin: 0 auto; max-width: 860px; }
.bonus-figure img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-elevated); border: 1px solid rgba(255,255,255,0.12); }
.bonus-disclosure { max-width: 860px; margin: 28px auto 0; }

footer { background: var(--black); color: var(--white); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
footer a { color: var(--white); }
footer a:hover { color: var(--red-bright); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.disclaimer-box { border-top: 1px solid #333; margin-top: 32px; padding-top: 24px; font-size: 15px; color: #FFFFFF; }
.copyright { font-size: 14px; color: #FFFFFF; margin-top: 16px; }

.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--white); border-top: 2px solid var(--border-light); padding: 12px 16px; display: flex; }
@media (min-width: 900px) { .mobile-sticky-cta { display: none; } }
.mobile-sticky-cta .btn { flex: 1; }
body { padding-bottom: 84px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

.back-to-top { position: fixed; bottom: 96px; right: 20px; background: var(--red); color: var(--white); border: none; border-radius: 50%; width: 48px; height: 48px; font-size: 20px; cursor: pointer; display: none; z-index: 90; box-shadow: var(--shadow-card); }
@media (min-width: 900px) { .back-to-top { bottom: 30px; } }
.back-to-top.show { display: block; }

.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.72); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.exit-popup-overlay.show { display: flex; }
.exit-popup { background: var(--white); border-radius: var(--radius-lg); max-width: 480px; width: 100%; padding: 36px; text-align: center; position: relative; }
.exit-popup-close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 26px; cursor: pointer; min-width: 44px; min-height: 44px; }
.countdown { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--red); margin: 16px 0; }

@media (max-width: 899px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; border-bottom: 2px solid var(--border-light); }
  .nav-links.open { display: flex; }
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
