:root {
  --green: #00A651;
  --green-dark: #006B3F;
  --green-darker: #004D2E;
  --green-light: #E8F5EE;
  --green-hover: #008F46;
  --white: #FFFFFF;
  --gray-50: #F7F9F8;
  --gray-100: #EEF1EF;
  --gray-200: #DDE3DF;
  --gray-400: #8A9690;
  --gray-600: #4A5650;
  --gray-800: #1E2823;
  --text: #1A1F1C;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 107, 63, 0.12);
  --font: 'Montserrat', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 3rem 0; }

h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-800);
}
h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--green-dark);
  margin: 2.5rem 0 1rem;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.5rem 0 0.75rem;
}
p { margin-bottom: 1rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo img { height: 36px; width: auto; }
.nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--green-hover); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green-light); color: var(--green-dark); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 1.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }
.badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.15);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.card h3 { margin-top: 0; font-size: 1.05rem; }
.card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0; }

/* Features strip */
.features-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0;
}
.features-strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.feature-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 800;
}
.feature-item span { font-size: 0.82rem; color: var(--gray-600); }

/* Content blocks */
.content-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-100);
}
.content-block img {
  border-radius: var(--radius);
  margin: 1rem 0;
}
.prose ul, .prose ol { margin: 0 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 1rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}
th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
}
tr:hover td { background: var(--gray-50); }

/* Reviews */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  margin-bottom: 16px;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.review-author { font-weight: 700; color: var(--gray-800); }
.review-date { font-size: 0.82rem; color: var(--gray-400); }
.stars { color: #F5A623; font-size: 0.95rem; letter-spacing: 1px; }
.rating-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 2rem;
}
.rating-item {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.rating-item strong {
  display: block;
  font-size: 1.6rem;
  color: var(--green-dark);
}

/* Address list */
.address-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
  border: 1px solid var(--gray-100);
}
.address-rating {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}
.address-info h3 { margin: 0 0 4px; font-size: 0.95rem; }
.address-info p { margin: 0; font-size: 0.88rem; color: var(--gray-600); }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,166,81,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-top: 12px;
  display: none;
  font-size: 0.9rem;
}
.form-msg.success { display: block; background: var(--green-light); color: var(--green-dark); }
.form-msg.error { display: block; background: #FDE8E8; color: #C0392B; }

/* Login page */
.auth-box {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.auth-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--gray-50);
  color: var(--gray-600);
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.auth-tab.active { background: var(--green); color: var(--white); }

/* Mobile download */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.download-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.download-card img {
  max-height: 200px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.platform-icon { font-size: 3rem; margin-bottom: 12px; }

/* Play / redirect page */
.play-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-darker));
  padding: 20px;
}
.play-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.play-box h1 { font-size: 1.5rem; margin-bottom: 12px; }
.play-box p { color: var(--gray-600); margin-bottom: 24px; }
.countdown {
  font-size: 4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.countdown-label { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 24px; }
.progress-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 24px;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  width: 100%;
  transition: width 1s linear;
}
.play-notice {
  background: #FFF8E6;
  border: 1px solid #F5D78E;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.875rem;
  color: #7D5A00;
  margin-bottom: 20px;
  text-align: left;
}

/* Page header */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 2.5rem 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.page-hero p { color: rgba(255,255,255,0.85); margin: 0; }

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }

/* Footer */
.footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 0;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 2rem;
}
.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.footer ul a:hover { color: var(--white); }
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.responsible {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.responsible strong { color: var(--white); }

/* Live chat button */
.live-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,166,81,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, background 0.2s;
}
.live-chat:hover { background: var(--green-hover); transform: scale(1.04); }

/* Bonus cards */
.bonus-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.bonus-card::after {
  content: 'BONUS';
  position: absolute;
  right: -20px;
  top: -10px;
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.08;
  letter-spacing: -2px;
}
.bonus-card h3 { color: var(--white); margin-top: 0; }
.bonus-card p { color: rgba(255,255,255,0.85); }
.bonus-card .btn { margin-top: 12px; }

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--green); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.faq-item.open .faq-a { display: block; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; max-height: 260px; object-fit: cover; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    border-bottom: 2px solid var(--green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn-outline { display: none; }
  .play-box { padding: 32px 24px; }
}
