/* ═══════════════════════════════════════════════════════════════════════════
   RETEST – Main Stylesheet
   ═══════════════════════════════════════════════════════════════════════════
   
   Table of Contents:
   ──────────────────
   1. Design Tokens (CSS Variables)
   2. Reset & Base
   3. Header
   4. Hero
   5. Brands
   6. Services
   7. How It Works
   8. Trust Badges
   9. Price Table
   10. CTA Banner
   11. FAQ
   12. Reviews
   13. Footer
   14. Request Modal
   15. Menu Panel
   16. Decorative Elements
   17. Desktop Breakpoint (≥ 900px)
   18. Large Desktop Breakpoint (≥ 1200px)
   
   ═══════════════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────
   1. Design Tokens
   ───────────────────────────────────────────── */

:root {
  /* Brand */
  --accent: #FFD60A;
  --accent-dim: rgba(255, 214, 10, 0.14);
  --accent-hover: #E6BF00;

  /* Legacy aliases (used in inline styles across HTML) */
  --yellow: var(--accent);
  --yellow-dim: var(--accent-dim);
  --orange: var(--accent);
  --orange-dim: var(--accent-dim);

  /* Backgrounds */
  --bg: #0F0F0F;
  --bg-card: #1A1A1A;
  --bg-elevated: #222222;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #888888;
  --text-muted: #666666;
  --text-subtle: #777777;
  --text-light: #BBBBBB;
  --text-link: #CCCCCC;

  /* Borders */
  --border: #2A2A2A;
  --border-light: #333333;

  /* Misc */
  --black: #0F0F0F;
  --white: #FFFFFF;
  --telegram: #2AABEE;
  --whatsapp: #25D366;
}


/* ─────────────────────────────────────────────
   2. Reset & Base
   ───────────────────────────────────────────── */

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}


/* ─────────────────────────────────────────────
   3. Header
   ───────────────────────────────────────────── */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 88px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  cursor: pointer;
}

.logo picture,
.logo-img {
  display: block;
}

.logo-img {
  height: 72px;
  width: auto;
  max-width: 100%;
}

/* Header right group */
.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdr-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
}

.hdr-phone span {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

/* Desktop nav & CTA (hidden on mobile) */
.hdr-nav { display: none; }
.hdr-cta { display: none; }

/* Burger button */
.burger {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
}

.burger-line {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.burger-line:nth-child(1) { width: 18px; }
.burger-line:nth-child(2) { width: 14px; }
.burger-line:nth-child(3) { width: 18px; }


/* ─────────────────────────────────────────────
   4. Hero
   ───────────────────────────────────────────── */

.hero {
  background: var(--bg);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.hero-accent {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light);
}

/* Primary CTA */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.hero-cta span {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

/* Secondary buttons row */
.hero-secondary {
  display: flex;
  gap: 8px;
}

.sec-btn {
  flex: 1;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.sec-btn--tg {
  background: var(--telegram);
  border-color: var(--telegram);
}

.sec-btn--wa {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
}

.sec-btn--call {
  border-color: var(--border);
  background: none;
}

/* Hero image / slider */
.hero-image {
  border-radius: 16px;
  height: 260px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

/* Hero slider (vertical photos, mobile-first) */
.hero-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -20px;
  padding: 4px 20px 8px;
}

.hero-track::-webkit-scrollbar { display: none; }

.hero-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  min-width: 0;
  height: 380px;
  border-radius: 16px;
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hero-btn:hover {
  background: var(--bg);
  border-color: var(--yellow);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}

.hero-dot--active {
  background: var(--yellow);
  width: 20px;
  border-radius: 999px;
}

.hero-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-img-placeholder span {
  font-size: 13px;
  color: var(--text-secondary);
}


/* ─────────────────────────────────────────────
   5. Brands
   ───────────────────────────────────────────── */

.brands {
  background: var(--bg);
  padding: 48px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brands-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brands-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.brands-eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.brands-h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
}

.brands-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 20px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.brand-card {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.6);
}


/* ─────────────────────────────────────────────
   6. Services
   ───────────────────────────────────────────── */

.services {
  background: var(--bg);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Shared section title (used in Services, How It Works) */
.section-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.section-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Service cards grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.svc-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.svc-badge-row {
  display: flex;
  justify-content: flex-end;
}

.svc-badge {
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
}

.svc-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}


/* ─────────────────────────────────────────────
   7. How It Works
   ───────────────────────────────────────────── */

.how-it-works {
  background: var(--bg);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.how-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.how-cta span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.how-cta:hover {
  background: var(--accent-dim);
}

/* Step cards */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.step-card-num {
  color: var(--accent);
  margin-right: 4px;
}

.step-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* ─────────────────────────────────────────────
   8. Trust Badges
   ───────────────────────────────────────────── */

.trust-badges {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
  display: flex;
}

.trust-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-badge-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}


/* ─────────────────────────────────────────────
   9. Price Table
   ───────────────────────────────────────────── */

.price-table {
  background: var(--bg);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
}

.price-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.price-h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.price-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

.price-divider {
  height: 1px;
  background: var(--border);
}

.price-row {
  display: grid;
  grid-template-columns: 140px auto 1fr;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 8px;
}

.price-row-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.price-chip {
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 4px 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.price-chip:hover {
  background: var(--accent-dim);
}

.price-chip span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.price-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
}


/* ─────────────────────────────────────────────
   10. CTA Banner
   ───────────────────────────────────────────── */

.cta-banner {
  background: var(--accent);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-banner-h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

.cta-banner-sub {
  font-size: 15px;
  color: var(--black);
  text-align: center;
  line-height: 1.4;
  opacity: 0.8;
}

.cta-banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--black);
  border-radius: 12px;
  height: 54px;
  width: 100%;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-banner-btn span {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}


/* ─────────────────────────────────────────────
   11. FAQ
   ───────────────────────────────────────────── */

.faq {
  background: var(--bg);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.faq-answer {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.faq-price {
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}


/* ─────────────────────────────────────────────
   12. Reviews
   ───────────────────────────────────────────── */

.reviews {
  background: var(--bg);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews-h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rev-stars {
  display: flex;
  gap: 2px;
}

.rev-text {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}

.rev-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.rev-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.rev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rev-tag,
.rev-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1;
}

.rev-tag i { color: var(--yellow); }
.rev-date i { color: var(--text-secondary); }

.rev-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rev-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -20px;
  padding: 4px 20px 8px;
}

.rev-track::-webkit-scrollbar { display: none; }

.rev-track .rev-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  min-width: 0;
}

.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.rev-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.rev-btn:hover {
  background: var(--bg);
  border-color: var(--yellow);
}

.rev-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rev-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}

.rev-dot--active {
  background: var(--yellow);
  width: 20px;
  border-radius: 999px;
}


/* ─────────────────────────────────────────────
   13. Footer
   ───────────────────────────────────────────── */

.footer {
  background: var(--bg-card);
  padding: 40px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  cursor: pointer;
}

.footer-logo picture,
.footer-logo-img {
  display: block;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  max-width: 100%;
}

.footer-tagline {
  font-size: 13px;
  color: #999999;
  line-height: 1.55;
}

/* Footer contacts */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-contact-row span {
  font-size: 13px;
  color: var(--text-link);
}

a.footer-contact-row:hover span {
  color: var(--accent);
}

/* Footer links */
.footer-link {
  font-size: 14px;
  color: var(--text-link);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-col--legal {
  gap: 10px;
}

.footer-legal-link {
  font-size: 13px;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal-link:hover {
  color: var(--accent);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-subtle);
  text-align: center;
}

.footer-bottom-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
}

.footer-bottom-phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-bottom-ico {
  font-size: 12px;
  color: var(--text-subtle);
}

.footer-bottom-quick {
  display: flex;
  gap: 18px;
}

.footer-quick-link {
  font-size: 12px;
  color: var(--text-subtle);
  text-decoration: none;
}

.footer-quick-link:hover {
  color: var(--accent);
}


/* ─────────────────────────────────────────────
   14. Request Modal
   ───────────────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 390px;
  max-height: 95vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

/* Modal header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

.modal-back { display: none; }

.modal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--white);
}

.modal-close-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.modal-header-spacer {
  width: 36px;
  flex-shrink: 0;
}

/* Modal form */
.modal-form {
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.form-input {
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--bg-card);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Input with icon */
.form-input-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.form-input-icon:focus-within {
  border-color: var(--accent);
}

.form-input-inner {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: transparent;
}

.form-input-inner::placeholder {
  color: var(--text-muted);
}

/* Form chips (radio/checkbox styled as pills) */
.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-chip {
  cursor: pointer;
}

.form-chip input { display: none; }

.form-chip span {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--bg-card);
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.form-chip input:checked + span {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  font-weight: 600;
}

/* Textarea */
.form-textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--bg-card);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  border-color: var(--accent);
}

.form-textarea::placeholder {
  color: var(--text-muted);
}

/* Submit button */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  width: 100%;
  margin-top: 8px;
}

.form-submit span {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}

.form-submit:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.form-note {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

/* Description shortcuts */
.form-shortcuts {
  margin-top: 10px;
}

.form-shortcuts-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-shortcuts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-shortcut {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--bg-card);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.form-shortcut:hover {
  border-color: var(--accent);
}

/* Brand autocomplete */
.form-autocomplete {
  position: relative;
}

.form-autocomplete-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  list-style: none;
  padding: 6px 0;
  margin: 0;
}

.form-autocomplete-list.active {
  display: block;
}

.form-autocomplete-item {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.15s;
}

.form-autocomplete-item:hover {
  background: var(--accent-dim, rgba(255, 204, 0, 0.08));
  color: var(--accent);
}


/* ─────────────────────────────────────────────
   15. Menu Panel
   ───────────────────────────────────────────── */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  background: var(--bg);
  width: 100%;
  max-width: 390px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

/* Menu header */
.menu-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.menu-panel-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-lang {
  position: relative;
}

.menu-lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.menu-lang-chevron {
  transition: transform 0.2s ease;
}

.menu-lang.open .menu-lang-chevron {
  transform: rotate(180deg);
}

.menu-lang-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
}

.menu-lang.open .menu-lang-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  user-select: none;
}

.menu-lang-item:hover {
  background: var(--bg-elevated);
}

.menu-lang-item.is-active {
  background: var(--accent-dim);
  color: var(--accent);
}

.menu-lang-code {
  font-weight: 700;
  font-size: 12px;
  width: 22px;
  flex-shrink: 0;
}

.menu-lang-name {
  font-weight: 500;
}

.menu-close-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  color: var(--white);
}

/* Menu body */
.menu-panel-body {
  flex: 1;
  padding: 28px 20px;
  overflow-y: auto;
}

.menu-panel-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.menu-panel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Menu navigation */
.menu-nav {
  display: flex;
  flex-direction: column;
}

.menu-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.menu-nav-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.menu-nav-item:hover span {
  color: var(--accent);
}

.menu-nav-icon { display: none; }

/* Menu footer */
.menu-panel-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.menu-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background: var(--accent);
  border-radius: 12px;
  text-decoration: none;
}

.menu-cta-primary span {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}

.menu-cta-primary:hover {
  background: var(--accent-hover);
}

.menu-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  text-decoration: none;
}

.menu-cta-secondary span {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

.menu-hours {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 4px;
}


/* ─────────────────────────────────────────────
   16. Decorative Elements
   ───────────────────────────────────────────── */

.hero,
.services,
.how-it-works,
.price-table,
.faq,
.reviews,
.cta-banner {
  position: relative;
  overflow: hidden;
}

.deco {
  position: absolute;
  color: var(--accent);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.deco-tl { top: 24px; left: 16px; transform: rotate(-12deg); }
.deco-tr { top: 28px; right: 16px; transform: rotate(15deg); }
.deco-bl { bottom: 32px; left: 16px; transform: rotate(8deg); }
.deco-br { bottom: 28px; right: 16px; transform: rotate(-10deg); }

.hero > *:not(.deco),
.services > *:not(.deco),
.how-it-works > *:not(.deco),
.price-table > *:not(.deco),
.faq > *:not(.deco),
.reviews > *:not(.deco),
.cta-banner > *:not(.deco) {
  position: relative;
  z-index: 1;
}


/* ─────────────────────────────────────────────
   17. Desktop Breakpoint (≥ 900px)
   ───────────────────────────────────────────── */

@media (min-width: 900px) {

  /* ── Header ── */
  .header {
    padding: 0 40px;
    height: 96px;
    gap: 24px;
  }

  .hdr-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
  }

  .hdr-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.15s;
  }

  .hdr-nav-link:hover { color: var(--accent); }

  .hdr-right { gap: 12px; }
  .hdr-phone span { font-size: 13px; }

  .hdr-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    background: var(--accent);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
  }

  .hdr-cta:hover { background: var(--accent-hover); }

  /* ── Hero ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto 1fr;
    column-gap: 56px;
    row-gap: 16px;
    align-items: start;
    margin: 0;
    max-width: none;
    padding: 64px max(40px, calc((100% - 1200px) / 2));
    background: var(--black);
  }

  .hero-headline { grid-column: 1; grid-row: 1; gap: 6px; }
  .hero-h1 { font-size: 56px; }
  .hero-accent { font-size: 56px; }

  .hero-sub {
    grid-column: 1;
    grid-row: 2;
    font-size: 17px;
    max-width: 480px;
  }

  .hero-cta {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 420px;
    align-self: flex-start;
    padding: 0 28px;
  }

  .hero-secondary {
    grid-column: 1;
    grid-row: 4;
    max-width: 420px;
  }

  .hero-image {
    grid-column: 2;
    grid-row: 1 / 6;
    height: 420px;
    border-radius: 24px;
    align-self: stretch;
    display: flex;
  }

  .hero-slider {
    grid-column: 2;
    grid-row: 1 / 6;
    align-self: stretch;
    gap: 14px;
  }

  .hero-track {
    margin: 0;
    padding: 4px 0 8px;
    gap: 14px;
  }

  .hero-slide {
    height: 540px;
    border-radius: 24px;
  }

  .hero-slide img {
    border-radius: 24px;
  }

  /* Hero button hovers */
  .hero-cta:hover { background: var(--accent-hover); }

  .sec-btn--call:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--black);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .sec-btn--wa:hover { background: #1fba57; }
  .sec-btn--tg:hover { background: #1a96d4; }

  /* ── Brands ── */
  .brands {
    max-width: none;
    margin: 0;
    padding: 80px max(40px, calc((100% - 1200px) / 2));
    align-items: center;
  }

  .brands-eyebrow,
  .brands-h2,
  .brands-sub,
  .brands-grid {
    width: 100%;
    max-width: 1100px;
  }

  .brands-h2 {
    font-size: 44px;
    margin-bottom: 14px;
  }

  .brands-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .brands-grid { gap: 0; }

  .brand-card { padding: 0; }

  /* ── Services ── */
  .services {
    padding: 64px 40px;
    align-items: center;
    gap: 24px;
  }

  .services .section-title,
  .services .svc-grid {
    width: 100%;
    max-width: 1200px;
  }

  .section-h2 { font-size: 36px; text-align: center; }
  .section-sub { font-size: 16px; text-align: center; }

  .svc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .svc-card { padding: 20px; gap: 16px; }
  .svc-label { font-size: 17px; }

  /* ── How It Works ── */
  .how-it-works {
    padding: 72px 40px;
    align-items: center;
    gap: 28px;
  }

  .how-it-works .how-header,
  .how-it-works .steps {
    width: 100%;
    max-width: 1200px;
  }

  .how-it-works .section-h2 { text-align: left; }
  .how-cta { padding: 10px 18px; }
  .how-cta span { font-size: 14px; }

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

  .step-card { padding: 28px; gap: 14px; }
  .step-card-title { font-size: 18px; }
  .step-card-desc { font-size: 14px; }

  /* ── Trust Badges ── */
  .trust-badges {
    padding: 32px 40px;
    justify-content: center;
    gap: 80px;
  }

  .trust-badge { flex: 0 0 auto; }
  .trust-badge-text { font-size: 13px; }

  /* ── Price Table ── */
  .price-table {
    padding: 64px 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  .price-h2 { font-size: 32px; text-align: center; }
  .price-sub { text-align: center; }

  .price-row {
    padding: 20px 0;
    grid-template-columns: 200px auto 1fr auto;
    gap: 0 16px;
  }

  .price-row-label { font-size: 16px; }
  .price-chip { justify-self: start; }

  .price-amount {
    font-size: 16px;
    justify-self: end;
    min-width: 100px;
  }

  /* ── CTA Banner ── */
  .cta-banner { padding: 64px 40px; }
  .cta-banner-h2 { font-size: 36px; }
  .cta-banner-sub { font-size: 17px; }

  .cta-banner-btn {
    width: auto;
    padding: 0 36px;
    height: 56px;
  }

  /* ── FAQ ── */
  .faq {
    padding: 64px 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-h2 { font-size: 36px; margin-bottom: 12px; text-align: center; }
  .faq-item { padding: 20px 22px; }
  .faq-q-text { font-size: 16px; }

  /* ── Reviews ── */
  .reviews {
    padding: 64px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .reviews-h2 { font-size: 36px; margin-bottom: 8px; text-align: center; }
  .rev-card { padding: 24px; }
  .rev-text { font-size: 15px; }

  .rev-track {
    margin: 0 -40px;
    padding: 4px 40px 8px;
    gap: 18px;
  }
  .rev-track .rev-card { flex: 0 0 calc((100% - 36px) / 3); }

  /* ── Footer ── */
  .footer {
    padding: 56px 40px 24px;
    gap: 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-col--brand { max-width: 360px; }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 24px;
  }

  .footer-copy { text-align: left; flex: 1; }
  .footer-bottom-center { flex: 1; justify-content: center; }
  .footer-bottom-quick { flex: 1; justify-content: flex-end; }

  /* ── Menu Panel (desktop: drops from top) ── */
  .menu-overlay {
    align-items: flex-start;
    justify-content: stretch;
  }

  .menu-panel {
    max-width: none;
    width: 100%;
    height: auto;
    max-height: 100vh;
    transform: translateY(-100%);
    border-radius: 0;
  }

  .menu-overlay.active .menu-panel {
    transform: translateY(0);
  }

  .menu-panel-header {
    padding: 0 40px;
    height: 76px;
  }

  .menu-panel-content {
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 32px 40px;
    gap: 32px;
  }

  .menu-panel-body {
    flex: 1;
    padding: 0;
    overflow: visible;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: center;
  }

  .menu-panel-title {
    font-size: 22px;
    margin-bottom: 0;
  }

  .menu-panel-title::after {
    content: 'Vyberte kategorii spotřebiče';
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 6px;
  }

  .menu-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .menu-nav-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 8px;
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 12px;
    gap: 8px;
    transition: border-color 0.15s, background 0.15s;
  }

  .menu-nav-item:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
  }

  .menu-nav-item span { font-size: 13px; }
  .menu-nav-item i { display: none; }
  .menu-nav-item .menu-nav-icon { display: block; }
  .menu-nav-item .menu-nav-chevron { display: none; }

  .menu-panel-footer {
    border-top: none;
    padding: 0;
    flex: 0 0 220px;
    width: 220px;
    gap: 8px;
  }

  .menu-cta-primary,
  .menu-cta-secondary { height: 40px; }

  .menu-cta-primary span,
  .menu-cta-secondary span { font-size: 13px; }

  .menu-hours { font-size: 12px; margin-top: 2px; }

  /* ── Modal (desktop: centered) ── */
  .modal-overlay {
    align-items: center;
    padding: 24px;
  }

  .modal {
    border-radius: 20px;
    max-width: 560px;
    max-height: 90vh;
    transform: translateY(40px);
  }

  .modal-overlay.active .modal {
    transform: translateY(0);
  }

  .modal-header { border-radius: 20px 20px 0 0; }

  /* ── Decorative Elements ── */
  .deco-tl { top: 40px; left: 32px; }
  .deco-tr { top: 40px; right: 32px; }
  .deco-bl { bottom: 48px; left: 32px; }
  .deco-br { bottom: 48px; right: 32px; }
  .deco { opacity: 0.04; }
}


/* ─────────────────────────────────────────────
   18. Large Desktop Breakpoint (≥ 1200px)
   ───────────────────────────────────────────── */

@media (min-width: 1200px) {
  .hero-h1 { font-size: 64px; }
  .hero-accent { font-size: 64px; }
}

/* ─────────────────────────────────────────────────────────────────────
   /en/ legal pages: translation disclaimer block
   ───────────────────────────────────────────────────────────────────── */
.legal-disclaimer {
  margin: 16px 0 24px;
  padding: 14px 18px;
  border-left: 3px solid var(--yellow);
  background: rgba(251, 191, 36, 0.08);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.legal-disclaimer p { margin: 0; }
.legal-disclaimer a { color: inherit; text-decoration: underline; }
