/* ===== CSS Variables ===== */
:root {
  --bg: #ffffff;
  --surface: #f8f9f7;
  --surface-2: #eef0ec;
  --surface-3: #e2e6df;
  --text: #1a3a2a;
  --text-2: #2d5a3d;
  --text-muted: #5a7a6a;
  --text-light: #8a9a8a;
  --accent: #c9a227;
  --accent-2: #d4b443;
  --accent-3: #b8921e;
  --accent-soft: rgba(201, 162, 39, 0.1);
  --accent-border: rgba(201, 162, 39, 0.35);
  --green-dark: #0f2e1f;
  --green-mid: #1a4a30;
  --green-light: #2a6a45;
  --border: #dde0d8;
  --border-2: #cccfc7;
  --danger: #b33a2a;
  --success: #1a7a4a;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 8px rgba(26, 58, 42, 0.06);
  --shadow: 0 4px 16px rgba(26, 58, 42, 0.1);
  --shadow-lg: 0 8px 32px rgba(26, 58, 42, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.18);
  --max-width: 1140px;
  --header-h: 72px;
  --font-head: Georgia, 'Times New Roman', Times, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-3);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

/* ===== Utility ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 50px 0;
}

.text-center { text-align: center; }
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }

.section-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 2rem;
  position: relative;
}

.accent-line::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  background: var(--accent-3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent-3);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-mid);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent-border);
}

.header-top {
  background: var(--green-dark);
  padding: 7px 0;
}

.header-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.85);
}

.header-contact-item svg {
  width: 15px;
  height: 15px;
  fill: var(--accent-2);
  flex-shrink: 0;
}

.header-contact-item a {
  color: rgba(255, 255, 255, 0.85);
}

.header-contact-item a:hover {
  color: var(--accent-2);
}

.header-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-border);
}

.header-logo .company-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.header-logo .company-name span {
  color: var(--accent);
}

/* ===== Navigation ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav a:hover, .nav a.active {
  color: var(--accent-3);
  background: var(--accent-soft);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ===== Burger ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-3);
  margin-bottom: 1rem;
  padding-left: 40px;
  position: relative;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Hero Badges ===== */
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--accent-border);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  padding: 90px 0 50px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(248,249,247,0.95) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.page-hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ===== Info Grid ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.info-grid.reverse {
  direction: rtl;
}

.info-grid.reverse > * {
  direction: ltr;
}

.info-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-text h2 {
  margin-bottom: 1rem;
}

.info-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.info-text .btn {
  margin-top: 0.5rem;
}

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.card-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: all var(--transition);
}

.stat-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.review-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.review-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.review-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.review-author-info span {
  color: var(--text-light);
  font-size: 0.83rem;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  content: 'Most Chosen';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

.pricing-features {
  text-align: left;
  margin: 22px 0;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Offline Badges ===== */
.offline-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0;
}

.offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offline-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* ===== Themed Block ===== */
.themed-block {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}

.themed-block h3 {
  color: var(--accent-2);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.themed-block p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}

.themed-block .warning-text {
  color: var(--accent-2);
  font-weight: 600;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== Disclaimer ===== */
.disclaimer-block {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  margin: 30px 0;
}

.disclaimer-block p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.92rem;
}

.disclaimer-block strong {
  color: var(--accent-3);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.92rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-input.error, .form-textarea.error {
  border-color: var(--danger);
}

.form-error {
  color: var(--danger);
  font-size: 0.83rem;
  margin-top: 5px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ===== Messenger ===== */
.messenger-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.messenger-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.messenger-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.messenger-btn.whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: #fff;
}

.messenger-btn.viber {
  background: #7360f2;
  color: #fff;
}

.messenger-btn.viber:hover {
  background: #5d4ad1;
  transform: translateY(-2px);
  color: #fff;
}

/* ===== Contact Info ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.contact-info-item p, .contact-info-item a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.messenger-heading {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ===== Map ===== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 36px;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 14px;
  transition: all var(--transition);
}

.step-item:hover .step-number {
  background: var(--accent);
  color: #fff;
}

.step-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.step-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ===== Features ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--accent-border);
  transform: translateX(4px);
}

.feature-item .icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item .icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 3px;
  font-weight: 600;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Games ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.game-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.game-card-image {
  height: 220px;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-body {
  padding: 22px;
}

.game-card-body h3 {
  color: var(--accent-3);
  margin-bottom: 0.6rem;
}

.game-card-body p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.93rem;
}

/* ===== Legal ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-3);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--text-muted);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta-block {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}

.cta-block h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* ===== Images Row ===== */
.images-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.images-row img {
  border-radius: var(--radius);
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.images-row img:hover {
  transform: scale(1.03);
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-border);
}

.footer-brand .company-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand .company-name span {
  color: var(--accent-2);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--accent-2);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-col ul li a:hover {
  color: var(--accent-2);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span, .footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-contact-item a:hover {
  color: var(--accent-2);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill var(--transition);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-legal-text p {
  margin-bottom: 3px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--green-dark);
  border-top: 2px solid var(--accent);
  padding: 18px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 0;
  flex: 1;
}

.cookie-banner p a {
  color: var(--accent-2);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--accent-2);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

/* ===== Success Popup ===== */
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: #fff;
  border: 1px solid var(--success);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  max-width: 380px;
  box-shadow: 0 10px 40px rgba(26, 58, 42, 0.15);
}

.success-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.success-popup svg {
  width: 56px;
  height: 56px;
  fill: var(--success);
  margin: 0 auto 14px;
}

.success-popup h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.success-popup p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.success-popup .btn {
  width: 100%;
  justify-content: center;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 46, 31, 0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Utility Classes ===== */
.form-wrap {
  max-width: 580px;
  margin: 0 auto;
}

.info-grid-spacing {
  margin-top: 40px;
}

.included-list {
  color: var(--text-muted);
  padding-left: 20px;
  list-style: disc;
}

.included-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 20px 20px;
    gap: 0;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav a.active::after {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .info-grid, .info-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .cards-grid, .pricing-grid, .reviews-grid, .games-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .images-row {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 480px;
  }

  .offline-badges {
    flex-direction: column;
    align-items: center;
  }

  .themed-block, .cta-block {
    padding: 28px 20px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .messenger-buttons {
    flex-direction: column;
  }

  .messenger-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .badge {
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  .offline-badge {
    font-size: 0.82rem;
    padding: 9px 18px;
  }

  .pricing-card {
    padding: 28px 18px;
  }

  .card, .review-card, .feature-item {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .header-logo .company-name {
    font-size: 1.05rem;
  }

  .header-logo img {
    width: 38px;
    height: 38px;
  }
}
