:root {
  --ice: #00CFFF;
  --ice-dark: #0099CC;
  --ice-glow: rgba(0, 207, 255, 0.15);
  --dark: #080F1A;
  --dark2: #0D1825;
  --dark3: #111E2E;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.55);
  --accent: #FF4D00;
  --green: #00E676;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; }

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(8,15,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,207,255,0.2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-bar .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--ice);
}

.sticky-bar .wa-btn {
  background: #25D366;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,207,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,207,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,207,255,0.1);
  border: 1px solid rgba(0,207,255,0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ice);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 13vw, 96px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease both 0.1s;
}

.hero h1 .ice { color: var(--ice); }
.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease both 0.2s;
}

.hero-sub strong { color: var(--white); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease both 0.3s;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.trust-pill .icon { color: var(--ice); font-size: 15px; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.7s ease both 0.4s;
  max-width: 400px;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}

.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.4); }
.btn-wa:active { transform: scale(0.97); }

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s;
}

.btn-call:hover { border-color: var(--ice); color: var(--ice); }

/* PROBLEM BAR */
.problem-bar {
  background: var(--accent);
  padding: 16px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
  background: var(--dark2);
  padding: 28px 16px;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--ice);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-unit { font-size: 24px; }

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS */
section { padding: 60px 0; }
.section-inner { padding: 0 20px; max-width: 700px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 8vw, 54px);
  line-height: 1.0;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title .ice { color: var(--ice); }

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* PAIN */
.pain-section { background: var(--dark2); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pain-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 16px;
}

.pain-icon { font-size: 28px; margin-bottom: 10px; }

.pain-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pain-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* PACKAGES */
.packages-section { background: var(--dark); }

.pkg-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pkg-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.pkg-card.hero-pkg {
  border-color: var(--ice);
  background: linear-gradient(135deg, rgba(0,207,255,0.08) 0%, var(--dark2) 100%);
}

.pkg-card.hero-pkg::before {
  content: '⭐ MOST POPULAR';
  position: absolute;
  top: 0; right: 0;
  background: var(--ice);
  color: var(--dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 0 20px 0 12px;
}

.pkg-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1;
}

.pkg-name span { color: var(--ice); }

.pkg-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

.pkg-price { text-align: right; }

.pkg-price .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}

.pkg-price .unit {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.pkg-price .was {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}

.pkg-features li .check { color: var(--ice); flex-shrink: 0; margin-top: 1px; }

.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.pkg-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.pkg-cta.ice-cta {
  background: var(--ice);
  color: var(--dark);
  font-size: 15px;
  padding: 16px;
}

.pkg-divider {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 0;
}

/* COMMERCIAL */
.commercial {
  background: linear-gradient(135deg, var(--dark3) 0%, rgba(0,207,255,0.05) 100%);
  border: 1px solid rgba(0,207,255,0.2);
  border-radius: 20px;
  padding: 28px 20px;
  margin-top: 20px;
}

.commercial-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.commercial h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--ice);
}

.commercial p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.commercial .price-hint {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

/* HOW IT WORKS */
.how-section { background: var(--dark2); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 56px; bottom: 56px;
  width: 2px;
  background: linear-gradient(to bottom, var(--ice), transparent);
}

.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  align-items: flex-start;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--ice);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  margin-top: 14px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* GUARANTEE */
.guarantee-section {
  background: linear-gradient(135deg, rgba(0,207,255,0.08) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(0,207,255,0.15);
  border-bottom: 1px solid rgba(0,207,255,0.15);
}

.guarantee-box {
  background: rgba(0,207,255,0.06);
  border: 2px solid rgba(0,207,255,0.3);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
}

.guarantee-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}

.guarantee-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--ice);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.guarantee-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* REVIEWS */
.reviews-section { background: var(--dark2); }

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
}

.stars {
  color: #FFB800;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: var(--dark);
  flex-shrink: 0;
}

.reviewer-name { font-size: 13px; font-weight: 800; }
.reviewer-area { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* OBJECTIONS */
.obj-section { background: var(--dark); }

.obj-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.obj-card {
  background: var(--dark2);
  border-radius: 16px;
  padding: 20px;
  border-left: 3px solid var(--ice);
}

.obj-q {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 8px;
}

.obj-a {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
  font-weight: 600;
}

/* FINAL CTA */
.final-cta {
  background: var(--dark2);
  text-align: center;
}

.final-cta .sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.final-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 24px;
}

.final-btns .btn-wa {
  font-size: 16px;
  padding: 20px;
}

.coverage {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}

.brand-footer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--ice);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* REMOVE DEFAULT WP STYLES */
.wp-block-group,
.entry-content,
.site-header,
.site-footer,
.navigation {
  display: none !important;
}
