/* ============================================================
   SKIPERSHOP.BY — Product Page Styles
   Based on reference design (index22.html)
   ============================================================ */

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

:root {
  --green:       #1a7a2e;
  --green-dark:  #125520;
  --green-light: #e8f5eb;
  --orange:      #f07800;
  --orange-dark: #c85f00;
  --black:       #111111;
  --dark:        #1e1e1e;
  --gray:        #4a4a4a;
  --gray-light:  #f5f5f5;
  --white:       #ffffff;
  --border:      #d9d9d9;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  font-size: 17px;
  box-shadow: 0 4px 18px rgba(240,120,0,.4);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 6px 24px rgba(240,120,0,.5); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 13px 28px;
  font-size: 15px;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }

.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 16px 32px;
  font-size: 17px;
  box-shadow: 0 4px 18px rgba(26,122,46,.35);
}
.btn-green:hover { background: var(--green-dark); }

.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { opacity: .9; }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  font-size: 15px;
  border: 2px solid var(--dark);
}
.btn-dark:hover { background: #333; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section--dark  { background: var(--dark);  color: var(--white); }
.section--gray  { background: var(--gray-light); }
.section--green { background: var(--green); color: var(--white); }

.section-title {
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: clamp(14px, 3vw, 17px);
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 680px;
}
.section--dark .section-sub,
.section--green .section-sub { color: rgba(255,255,255,.75); }

.tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-top {
  background: var(--green-dark);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-pay-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  overflow-x: auto;
  scrollbar-width: none;
}
.header-pay-row::-webkit-scrollbar { display: none; }

.header-pay-label {
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-right: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.pay-badge:hover { background: rgba(255,255,255,.18); }
.pay-badge--highlight {
  background: rgba(240,120,0,.25);
  border-color: rgba(240,120,0,.4);
  color: #ffc87a;
}

.header-bottom { padding: 10px 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.header-logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  text-decoration: none;
}
.header-logo span { color: var(--orange); }

.header-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-phone {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  transition: opacity .2s;
  flex-shrink: 0;
  text-decoration: none;
}
.icon-btn:hover { opacity: .8; }
.icon-btn--wa { background: #25d366; }
.icon-btn--tg { background: #0088cc; }

.btn-callback {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-callback:hover { background: var(--orange-dark); }

/* ===== HEADER PHONE WRAP & CTA ===== */
.header-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background .2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.header-cta:hover { background: var(--orange-dark); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

@media (max-width: 767px) {
  .header-phone-wrap { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
}

/* ===== MOBILE NAV DRAWER ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 110;
}
.nav-overlay.open { display: block; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--dark);
  z-index: 120;
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-drawer-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-drawer ul {
  list-style: none;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer ul li a {
  display: block;
  padding: 12px 14px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: background .2s;
}
.nav-drawer ul li a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-drawer ul li a.active { color: var(--orange); font-weight: 700; }

.nav-drawer-footer {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-drawer-footer a {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  text-decoration: none;
}
.nav-drawer-footer .label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

/* ===== HEADER NAV ===== */
.header-nav {
  display: none;
  list-style: none;
  flex: 1;
  margin: 0 8px;
  gap: 4px;
}
.header-nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  display: block;
}
.header-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.header-phone-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  display: block;
}

@media (min-width: 768px) {
  .header-nav { display: flex; align-items: center; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d3a17 0%, #1a5c28 55%, #2a7a3c 100%);
  color: var(--white);
  padding: 60px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(26px, 6vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(15px, 3vw, 18px);
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.hero-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-7' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero-price-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-price {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.hero-price-note {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

.hero-pay { margin-bottom: 20px; }
.hero-pay-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-pay-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.hero-pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.hero-pay-badge--hot {
  background: rgba(240,120,0,.2);
  border-color: rgba(240,120,0,.45);
  color: #ffc87a;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Hero image */
.hero-image-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.55));
  display: block;
  margin: 0 auto;
}
.hero-img-placeholder {
  background: rgba(255,255,255,.07);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.hero-img-placeholder .ph-icon { font-size: 4rem; opacity: .3; }

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.95);
}

/* ===== PRICE BLOCK ===== */
.price-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.price-ask {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -.02em;
}
/* === Price with old price + savings === */
.hero-price-old {
  font-size: clamp(16px, 3.5vw, 22px);
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  line-height: 1;
}
.hero-price-save {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-main-wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.price-main {
  font-size: clamp(44px, 9vw, 68px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -.03em;
}
.price-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 6px;
}
.price-old {
  font-size: 20px;
  font-weight: 600;
  color: #aaa;
  text-decoration: line-through;
}
.price-badge-save {
  background: #fff0e0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #f9c98a;
  display: inline-block;
}

.price-block-right {
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
.pay-methods { display: flex; flex-direction: column; gap: 12px; }
.pay-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--gray-light);
  border-radius: 10px;
}
.pay-icon { font-size: 24px; flex-shrink: 0; }
.pay-name { font-size: 15px; font-weight: 600; color: var(--black); }
.pay-desc { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ===== PROBLEMS / FOR WHOM ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
  transition: transform .2s, box-shadow .2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.13); }
.problem-card-body { padding: 20px; }
.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 26px;
}
.problem-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.problem-card p  { font-size: 14px; color: var(--gray); line-height: 1.5; }
.problem-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.adv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background .2s, transform .2s;
}
.adv-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.adv-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 24px;
}
.adv-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.adv-card p  { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ===== SPECS TABLE ===== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.specs-table tr:nth-child(odd)  { background: var(--gray-light); }
.specs-table tr:nth-child(even) { background: var(--white); }
.specs-table td { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { font-weight: 600; color: var(--gray); width: 46%; }
.specs-table td:last-child  { font-weight: 500; color: var(--black); }
.specs-table thead td {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.specs-cta { margin-top: 32px; text-align: center; }

/* ===== MEDIA ===== */
.media-section { background: var(--dark); }
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder-dark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 20px;
}
.play-btn-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.play-btn-wrap:hover { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(240,120,0,.2); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.photo-placeholder {
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 10px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  padding: 12px;
  text-align: center;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform .3s, box-shadow .3s;
}
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(0,0,0,.5); }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s;
}
.why-card:hover { transform: translateY(-4px); }
.why-card .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.why-card p  { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--orange), #e05000);
  color: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.promo-banner h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.promo-banner p  { font-size: 14px; opacity: .9; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}
.review-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card blockquote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 14px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; }
.review-city { font-size: 12px; color: var(--gray); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--black);
  transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ===== FORM ===== */
.form-section {
  background: linear-gradient(135deg, #0d3a17 0%, #1a5c28 100%);
  color: var(--white);
}
.form-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 40px 32px;
}
.form-title { font-size: clamp(20px, 4vw, 28px); font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.form-sub   { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,.8); }
.form-control {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-control::placeholder { color: rgba(255,255,255,.4); }
.form-control:focus { border-color: var(--orange); background: rgba(255,255,255,.13); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  cursor: pointer;
}
.form-check input { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--orange); }
.form-check a { color: rgba(255,255,255,.75); text-decoration: underline; }
.form-submit  { width: 100%; font-size: 17px; padding: 18px; }
.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.form-note a { color: var(--orange); font-weight: 600; }
.form-success {
  display: none;
  background: rgba(26,122,46,.25);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-size: 15px;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  padding: 28px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { color: var(--white); font-weight: 800; font-size: 17px; }
.footer-logo span { color: var(--orange); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.5); transition: color .2s; font-size: 12px; }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gray-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: background .2s;
  font-family: inherit;
}
.modal-close:hover { background: var(--border); }
.modal h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.modal p  { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.modal .form-control {
  background: var(--gray-light);
  border-color: var(--border);
  color: var(--black);
}
.modal .form-control::placeholder { color: #aaa; }
.modal .form-control:focus { border-color: var(--orange); background: #fff; }
.modal .form-check { color: var(--gray); }
.modal label { color: var(--gray); }

/* ===== FLOATING CTA (mobile) ===== */
.float-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  gap: 10px;
  padding: 0 16px;
  width: 100%;
  max-width: 420px;
  pointer-events: none;
}
.float-cta .btn {
  pointer-events: all;
  flex: 1;
  font-size: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MEDIA QUERIES ===== */
@media (min-width: 600px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .hero-grid     { grid-template-columns: 1fr 1fr; gap: 48px; }
  .videos-grid   { grid-template-columns: 1fr 1fr; max-width: 1100px; }
  .float-cta     { display: none; }
}
@media (max-width: 680px) {
  .price-block { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
  .price-block-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 28px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero    { padding: 48px 0 56px; }
  .hero-cta, .hero-ctas { flex-direction: column; }
  .hero-cta .btn, .hero-ctas .btn { width: 100%; }
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-banner .btn-white { width: 100%; }
  .form-wrap { padding: 28px 20px; }
}

/* ================================================================
   MISSING ALIASES — match GW550 class names used in other pages
   ================================================================ */

/* ---- Section title in dark/green sections ---- */
.section-title--light { color: var(--white) !important; }

/* ---- Cards grid (replaces .problems-grid, .adv-grid) ---- */
.cards-grid {
  display: grid;
  gap: 20px;
}
.cards-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---- Problem card aliases ---- */
.problem-card-top {
  height: 150px;
  background: rgba(0,0,0,.04);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
}
/* When card content is directly in .problem-card (no .problem-card-body wrapper) */
.problem-card > .problem-card-icon { margin: 20px 20px 14px; }
.problem-card > .problem-card-title { padding: 0 20px; margin-bottom: 8px; }
.problem-card > .problem-card-text { padding: 0 20px 20px; }

.problem-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 26px;
}
.problem-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.problem-card-text  { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ---- Adv card aliases ---- */
.adv-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 24px;
}
.adv-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.adv-card-text  { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ---- Why card aliases ---- */
.why-card-icon  { font-size: 2rem; margin-bottom: 12px; display: block; }
.why-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.why-card-text  { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ---- Hero layout aliases ---- */
.hero-left, .hero-content { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; text-align: center; }
.hero-img-wrap { text-align: center; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---- Extra buttons ---- */
.btn-wa {
  background: #25d366;
  color: var(--white);
  padding: 16px 24px;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1fb058; }
.btn-full { width: 100%; justify-content: center; }
.btn-outline--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ---- Pay badge light variant ---- */
.pay-badge--light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
}

/* ---- Pay methods extras ---- */
.pay-methods-title { font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.pay-item--highlight { background: var(--green-light); border: 1px solid #b2dbb9; }
.pay-name--green { color: var(--green) !important; }
.price-block-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ---- FAQ aliases (.faq-question / .faq-answer / .faq-icon) ---- */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--black);
  transition: color .2s;
}
.faq-question:hover { color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  font-style: normal;
  color: var(--green);
  font-size: 14px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-arrow {
  flex-shrink: 0;
  font-style: normal;
  color: var(--green);
  font-size: 12px;
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ---- Section --form alias ---- */
.section--form {
  background: linear-gradient(135deg, #0d3a17 0%, #1a5c28 100%);
  color: var(--white);
}

/* ---- Form aliases (.form-input instead of .form-control) ---- */
.form-input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
  display: block;
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { border-color: var(--orange); background: rgba(255,255,255,.13); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.form-row > * { flex: 1; min-width: 180px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,.8); }
.form-policy, .form-privacy {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.form-policy a, .form-privacy a { color: var(--orange); text-decoration: underline; }
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }

/* ---- Media section aliases ---- */
.media-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.video-placeholder {
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 16px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 20px;
}
.video-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}
.video-label { font-size: 13px; color: rgba(255,255,255,.5); }
.media-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
@media (min-width: 600px) { .media-photos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .media-videos { grid-template-columns: 1fr; } }

/* ---- Specs table (th version) ---- */
.specs-table th {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.specs-wrap { overflow-x: auto; }

/* ---- Modal fix — .modal as overlay, .modal-inner/.modal-box as content ---- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* Reset inner-box styles that were here before */
  border-radius: 0;
  max-width: none;
  width: auto;
  box-shadow: none;
}
.modal.active { display: flex; }
.modal-inner, .modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: slideUp .3s ease;
}
.modal-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--black); }
.modal-sub   { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.modal-inner .form-input,
.modal-box   .form-input {
  background: var(--gray-light);
  border-color: var(--border);
  color: var(--black);
}
.modal-inner .form-input::placeholder,
.modal-box   .form-input::placeholder { color: #aaa; }
.modal-inner .form-input:focus,
.modal-box   .form-input:focus { border-color: var(--orange); background: #fff; }
