* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #0f0f0f;
}

/* TOP CTA BANNER */
.top-banner {
  text-align: center;
  padding: 28px 0;
}


.top-banner a {
  background: #000;
  color: #ffd700;
  border: 3px solid #ffd700;
  padding: 20px 60px;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.top-banner a:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.8);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 20px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 1000px;
  text-align: center;
}
h1 span {
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheading {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.urgency-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 20px 0;
}

/* HERO IMAGE */
.hero-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  max-height: 500px;
}

/* CONTENT SECTION */
.content-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  margin: 60px 0;
}

h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 25px;
  text-align: center;
}
h2 span {
  color: #ff6b35;
}

.text-content {
  color: #b0b0b0;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 25px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.text-content strong {
  color: #ff6b35;
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.benefit-card {
  background: rgba(255, 107, 53, 0.08);
  border-left: 4px solid #ff6b35;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}
.benefit-card h3 {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.benefit-card p {
  color: #b0b0b0;
}

/* SITES GRID */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 40px 0;
}
.site-badge {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid #ff6b35;
  color: #e0e0e0;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

/* STATS */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 50px auto;
  max-width: 800px;
}
.stat {
  background: rgba(255, 107, 53, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff6b35;
}

/* TRUST */
.trust-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 20px;
  margin-top: 80px;
  text-align: center;
}
.trust-text {
  color: #e0e0e0;
  font-size: 1.05rem;
  max-width: 800px;
  margin: auto auto 30px auto;
}



/* MOBILE */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .top-banner { margin: 20px; padding: 20px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
}


/* === Final Price Block === */
.price-block {
  background: #111;
  padding: 28px 22px;
  text-align: center;
  margin: 60px auto;
  border-radius: 20px;
  max-width: 900px;
  border: 2px solid #ff6b35;
  box-shadow: 0 10px 30px rgba(255,107,53,0.15);
}
.price-block .regular-price {
  color: #bdbdbd;
  font-size: 1rem;
  margin-bottom: 10px;
}
.price-block .strike {
  text-decoration: line-through;
  opacity: 0.8;
}
.price-block .special-price {
  color: #eaeaea;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.price-block .mobile-price {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
}
.price-block .price-amount {
  color: #ffd700;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.price-block .subscription-period {
  color: #bbb;
  font-size: 0.95rem;
}

/* CTA button inside price block */
.save-button {
  display: inline-block;
  background: #ffd700;
  color: #000;
  padding: 14px 34px;
  border-radius: 50px;
  margin-top: 16px;
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid #000;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.save-button:hover {
  transform: translateY(-1px);
  background: #ffbe1a;
  box-shadow: 0 10px 24px rgba(255,215,0,.25);
}

/* === Footer === */
.footer {
  background: #000;
  color: #8a8a8a;
  padding: 28px 16px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer p {
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer .to-top {
  display: inline-block;
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,215,0,0.4);
}
.footer .to-top:hover {
  background: rgba(255,215,0,0.12);
}

/* === Small screens === */
@media (max-width: 768px) {
  .price-block { margin: 40px 16px; padding: 22px 16px; }
  .price-block .price-amount { font-size: 1.6rem; }
}


/* Fix stats labels */
.stat-label {
  color: #cccccc !important;
  font-size: 0.95rem;
  margin-top: 6px;
  display: block;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Optional: make big numbers pop */
.stat-number {
  color: #ff6b35 !important;
  font-weight: 800;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.trust-badge {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 22px 14px;
  border-radius: 12px;
  text-align: center;
  transition: .2s ease;
}
.trust-badge:hover {
  background: rgba(255,107,53,0.14);
  border-color: #ff6b35;
  transform: translateY(-3px);
}
.trust-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.trust-label {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* === MEGA CTA BOX === */
.mega-offer-box {
  background: #111;
  border: 3px solid #ff8c2b;
  border-radius: 28px;
  padding: 45px 20px;
  text-align: center;
  max-width: 900px;
  margin: 70px auto;
  box-shadow: 0 0 40px rgba(255,140,43,.25);
}

.offer-regular {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.offer-regular .strike {
  text-decoration: line-through;
  opacity: .7;
}

.offer-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.offer-special {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 25px;
}

.offer-price {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
}
.offer-period {
  color: #ddd;
  font-size: 1rem;
}

.mega-cta-btn {
  display: block;
  background: linear-gradient(90deg,#ffd900,#ffb300);
  color: #000;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 15px;
  box-shadow: 0 10px 25px rgba(255,185,0,.3);
  transition: .25s;
}

.mega-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg,#ffd900,#ffb300);
  color: #000;
  font-size: 1.2rem; /* было 1.6rem */
  font-weight: 900;
  padding: 12px 26px; /* было 20px 40px */
  border-radius: 40px;
  text-decoration: none;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 20px rgba(255,185,0,.3);
  transition: .25s;
  white-space: nowrap;
  max-width: 100%;
}

.mega-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,185,0,.45);
  background: linear-gradient(90deg,#ffe600,#ffbf00);
}
/* === Fix Benefit Cards — make smaller & cleaner === */
.benefits-grid {
  gap: 18px; /* было 30px */
  margin: 35px 0; /* было 50px */
}

.benefit-card {
  padding: 18px; /* было 25px */
  border-radius: 10px; /* было 12px */
}

.benefit-card h3 {
  font-size: 1.05rem; /* было 1.2rem */
  margin-bottom: 8px; /* было 12px */
}

.benefit-card p {
  font-size: 0.9rem; /* чуть меньше текста */
  line-height: 1.4;
}

/* mobile sizing */
@media (max-width: 768px) {
  .benefit-card {
    padding: 14px;
  }
  
  .benefit-card h3 {
    font-size: 1rem;
  }
  
  .benefit-card p {
    font-size: 0.85rem;
  }
}


/* === Restore 2-row Benefit Cards + make smaller === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* фиксируем размер */
  gap: 18px;
  margin: 35px auto;
  max-width: 1100px; /* чтобы НЕ растягивались в одну строку */
}

.benefit-card {
  padding: 18px;
  border-radius: 10px;
  min-height: 120px; /* держит компактность */
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.35;
}

/* Mobile — ровно по 2 карточки, не одна на строке */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .benefit-card {
    padding: 14px;
    min-height: auto;
  }
  
  .benefit-card h3 { font-size: 0.95rem; }
  .benefit-card p  { font-size: 0.8rem; }
}

/* Extra small — 1 card per row ONLY если очень узко */
@media (max-width: 420px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Unified 8-benefit grid */
.benefits-8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 22px;
  margin: 45px auto;
  max-width: 1100px;
}

.benefit-8 {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.35);
  padding: 18px 15px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  color: #ff8c3a;
  font-size: 1.05rem;
  transition: 0.2s;
}

.benefit-8 span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
}

.benefit-8 small {
  display: block;
  margin-top: 3px;
  font-size: 0.87rem;
  color: #dcdcdc;
  font-weight: 400;
}

.benefit-8:hover {
  background: rgba(255,107,53,0.18);
  transform: translateY(-4px);
  border-color: #ffb46a;
  box-shadow: 0 10px 22px rgba(255,107,53,0.28);
}


/* === Top Verification Banner (MetArt Luxe Style) === */
.deal-status-bar {
    background: linear-gradient(90deg, #1a1a1a, #101010);
    border-bottom: 2px solid #ff6b35;
    color: #ffb86b;
    text-align: center;
    padding: 12px 10px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .4px;
}

.deal-status-text {
    font-size: 1.05rem;
    color: #ff8c42;
    margin-bottom: 4px;
}

.deal-status-meta {
    font-size: .85rem;
    color: #dcdcdc;
}

.deal-available {
    background: rgba(0, 200, 80, .15);
    color: #2ee36f;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    margin-right: 4px;
}

.deal-date {
    background: rgba(255, 155, 66, .18);
    color: #ffb86b;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
}

.price-summary {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 15px;
}

.price-big {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffd700;
}

.price-sub {
  font-size: 1rem;
  color: #c8c8c8;
  margin-top: 4px;
}

.savings-line {
  margin-top: 12px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0,255,0,0.4);
  color: #8cff8c;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
}


.hero h1 {
  font-size: 2rem;
  white-space: nowrap;
  line-height: 1.2;
}

@media(max-width: 700px) {
  .hero h1 {
    font-size: 1.45rem;
    white-space: normal;
    text-wrap: balance;
  }
}

.offer-note {
  text-align: center;
  margin: 15px auto 35px;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.offer-note .check-icon {
  font-size: 1.2rem;
  color: #4caf50;
}

.offer-note small {
  font-size: 0.9rem;
  opacity: 0.85;
}

.offer-note {
  text-align: center;
  margin: 14px auto 30px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 1rem;
  display: inline-block;
}
.offer-note .check-icon {
  font-size: 1.2rem;
  margin-right: 6px;
}


.top-banner a {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.cta-btn {
  background: #000;
  color: #ffd700;
  padding: 18px 50px;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50px;
  text-decoration: none;
  border: 3px solid #ffd700;
  display: inline-block;
  box-shadow: 0 0 30px rgba(255,215,0,.6);
  transition: .25s;
}


.cta-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 45px rgba(255,215,0,.9);
}


.cta-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #ffd700b5;
}

