:root {
  --bg: #080b12;
  --bg2: #0e1220;
  --bg3: #141826;
  --card: #111622;
  --border: #1e2638;
  --cyan: #00d4ff;
  --cyan2: #00a8d4;
  --orange: #ff6b35;
  --orange2: #e85520;
  --green: #00e5a0;
  --text: #e2e8f8;
  --muted: #6b7a9e;
  --muted2: #4a5470;
  --white: #ffffff;
  --font-head: 'Exo 2', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --r: 14px;
  --r-sm: 8px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}

h1 {
  font-size: clamp(28px, 6vw, 58px);
  font-weight: 900;
}

h2 {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
}

h3 {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.06);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

section.tight {
  padding: 50px 0;
}

/* ─── GRID ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--r-sm);
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid rgba(0, 212, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: var(--cyan);
}

/* ─── CARDS ─── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

/* ─── IMAGE PLACEHOLDER ─── */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--card) 100%);
  border: 1.5px dashed rgba(0, 212, 255, 0.25);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 20px;
  text-align: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 20px,
      rgba(0, 212, 255, 0.015) 20px,
      rgba(0, 212, 255, 0.015) 21px);
}

.img-placeholder .ph-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
}

.img-placeholder .ph-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--cyan);
}

.img-placeholder .ph-desc {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.5;
  position: relative;
}

.img-placeholder .ph-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ─── VIDEO PLACEHOLDER ─── */
.video-placeholder {
  background: var(--bg3);
  border: 1.5px dashed rgba(0, 212, 255, 0.25);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 20px;
  min-height: 360px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 20px,
      rgba(255, 107, 53, 0.015) 20px,
      rgba(255, 107, 53, 0.015) 21px);
}

.play-btn-big {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.play-btn-big::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-placeholder .ph-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
}

.video-placeholder .ph-desc {
  font-size: 12px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
  position: relative;
}

/* ─── SEPARATOR ─── */
.sep {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* ─── SECTION HEADER ─── */
.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .sep {
  margin: 12px auto 20px;
}

.section-header p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 560px;
  font-size: 15px;
}

.section-header.center p {
  margin: 12px auto 0;
}

/* ─────────────────────────────────
   NAVIGATION
───────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--cyan);
}

.nav-btn {
  font-size: 14px;
  padding: 10px 22px;
}

/* ─────────────────────────────────
   HERO
───────────────────────────────── */
#hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.hero-title {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white) 40%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

.hero-trust-item .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.hero-img .img-placeholder {
  min-height: 420px;
}

/* ─────────────────────────────────
   TRUST BAR
───────────────────────────────── */
#trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 36px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  text-align: center;
}

/* ─────────────────────────────────
   ABOUT PRODUCT
───────────────────────────────── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}



.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.highlight-quote {
  background: rgba(0, 212, 255, 0.06);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  margin-top: 20px;
}

/* ─────────────────────────────────
   CONTENTS
───────────────────────────────── */
#contents {
  background: var(--bg2);
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.part-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: var(--transition);
}

.part-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.part-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.part-info h4 {
  font-size: 13px;
  color: var(--white);
  margin-bottom: 3px;
}

.part-info p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.parts-photo {
  margin-bottom: 32px;
}

/* ─────────────────────────────────
   HOW IT WORKS
───────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.5%;
  width: 67%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent);
  opacity: 0.3;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  color: var(--bg);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
}

.step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  border-radius: 100px;
  padding: 3px 12px;
}

/* ─────────────────────────────────
   VIDEO
───────────────────────────────── */
#video {
  background: var(--bg2);
}

/* ─────────────────────────────────
   FOR WHOM
───────────────────────────────── */
.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}



.audience-img .img-placeholder {
  min-height: 200px;
  border-radius: 0;
  border: none;
  border-bottom: 1px dashed rgba(0, 212, 255, 0.2);
}

.audience-body {
  padding: 22px;
}

.audience-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.badge-child {
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
}

.badge-gift {
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
}

.badge-school {
  background: rgba(0, 229, 160, 0.1);
  color: var(--green);
}

.audience-body h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.audience-body p {
  font-size: 14px;
  color: var(--muted);
}

/* ─────────────────────────────────
   PROGRAMMING
───────────────────────────────── */
#programming {
  background: var(--bg2);
}

.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.prog-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.prog-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

.prog-img .img-placeholder {
  min-height: 220px;
  border-radius: 0;
  border: none;
  border-bottom: 1px dashed rgba(0, 212, 255, 0.2);
}

.prog-body {
  background: var(--card);
  padding: 24px;
}

.prog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.prog-tag.beginner {
  background: rgba(0, 229, 160, 0.1);
  color: var(--green);
}

.prog-tag.advanced {
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
}

.prog-body h3 {
  margin-bottom: 10px;
}

.prog-body p {
  font-size: 14px;
  color: var(--muted);
}

/* ─────────────────────────────────
   CAPABILITIES
───────────────────────────────── */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cap-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  transition: var(--transition);
}

.cap-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

.cap-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.cap-card h4 {
  color: var(--white);
  margin-bottom: 6px;
}

.cap-card p {
  font-size: 13px;
  color: var(--muted);
}

.cap-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.cap-img-row .img-placeholder {
  min-height: 160px;
}

/* ─────────────────────────────────
   COLOR PICKER
───────────────────────────────── */
#color-picker {
  background: var(--bg2);
}

.color-picker-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.color-preview-area {
  position: sticky;
  top: 90px;
}

.color-preview-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.robot-preview {
  padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg3) 100%);
  transition: var(--transition);
}

.robot-svg-wrap {
  position: relative;
  z-index: 1;
}

.robot-body-part {
  transition: fill 0.4s ease;
}

.color-name-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  color: var(--text);
  z-index: 2;
}

.color-note {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  background: var(--card);
}



.color-controls h3 {
  margin-bottom: 6px;
}

.color-controls>p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.color-swatch {
  border-radius: var(--r-sm);
  padding: 12px 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--card);
  position: relative;
}

.color-swatch:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.color-swatch.active {
  border-color: var(--cyan);
}

.swatch-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
}

.swatch-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.swatch-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.swatch-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 10px;
  color: var(--bg);
  font-weight: 900;
}

.color-swatch.active .swatch-check {
  opacity: 1;
}

.color-info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin-bottom: 24px;
}

.color-info-box .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.color-info-box .info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--muted);
}

.info-val {
  font-weight: 600;
  color: var(--text);
}

.info-val.available {
  color: var(--green);
}

.info-val.limited {
  color: var(--orange);
}

.info-val.unavailable {
  color: #ff4b4b;
}

/* ─────────────────────────────────
   REVIEWS
───────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.review-avatar .img-placeholder {
  min-height: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  border: none;
}

.review-avatar .img-placeholder .ph-icon {
  display: none;
}

.review-avatar .img-placeholder .ph-title {
  font-size: 9px;
}

.review-avatar .img-placeholder .ph-desc {
  display: none;
}

.review-avatar .img-placeholder .ph-tag {
  display: none;
}

.review-meta .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.review-meta .city {
  font-size: 12px;
  color: var(--muted);
}

.stars {
  color: #f9c846;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.mobile-review-photo {
  display: none;
}

.review-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.review-photo-row .img-placeholder {
  min-height: 180px;
}

/* ─────────────────────────────────
   FAQ
───────────────────────────────── */
#faq {
  background: var(--bg2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(0, 212, 255, 0.3);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-q-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.faq-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--cyan);
  font-size: 12px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────
   DELIVERY
───────────────────────────────── */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.delivery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}

.delivery-card h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.delivery-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.delivery-row:last-child {
  border-bottom: none;
}

.delivery-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.delivery-text {
  color: var(--muted);
}

.delivery-text strong {
  color: var(--text);
  display: block;
}

.map-placeholder {
  grid-column: span 2;
}

/* ─────────────────────────────────
   ORDER CTA
───────────────────────────────── */
#order {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 212, 255, 0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.order-img .img-placeholder {
  min-height: 380px;
}



.price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 20px 0 24px;
}

.price-main {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-currency {
  font-size: 22px;
  color: var(--muted);
  font-weight: 400;
}

.price-old {
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 229, 160, 0.1);
  border-radius: 100px;
  padding: 4px 12px;
}

.order-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.order-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.order-feat::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(0, 229, 160, 0.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.order-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.order-microcopy {
  font-size: 12px;
  color: var(--muted);
}

.urgency-bar {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

/* ─────────────────────────────────
   GUARANTEE
───────────────────────────────── */
#guarantee {
  background: var(--bg2);
}

.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 40px;
  max-width: 740px;
  margin: 0 auto;
}

.shield-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
  border: 2px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

.guarantee-text h3 {
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}

.guarantee-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.g-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0, 229, 160, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 229, 160, 0.2);
}

/* ─────────────────────────────────
   ABOUT US
───────────────────────────────── */
.about-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-us-text p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.about-us-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.about-us-fact::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-us-img .img-placeholder {
  min-height: 300px;
}

/* ─────────────────────────────────
   FOOTER
───────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 100px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo-col .nav-logo {
  font-size: 24px;
  margin-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.footer-logo-col p {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
}

.footer-contacts h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition);
}

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

.footer-link-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* ─────────────────────────────────
   STICKY CTA
───────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(8, 11, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: none;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
}

.sticky-price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.sticky-btn {
  flex: 1;
  font-size: 15px;
  padding: 12px 20px;
}

/* ─────────────────────────────────
   EXIT POPUP
───────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.popup-overlay.visible .popup-box {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: var(--border);
  border-radius: 50%;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover {
  background: var(--card);
  color: var(--text);
}

.popup-emoji {
  font-size: 48px;
  margin-bottom: 12px;
}

.popup-box h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.popup-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.popup-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 12px;
  outline: none;
  transition: var(--transition);
}

.popup-input:focus {
  border-color: var(--cyan);
}

/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
@media (max-width: 900px) {
  section {
    padding: 60px 0;
  }

  .hero-grid,
  #about .about-grid,
  .about-us-layout,
  .prog-grid,
  .delivery-grid,
  .order-layout,
  .color-picker-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-3,
  .steps-row,
  .caps-grid,
  .reviews-grid,
  .parts-grid,
  .review-photo-row,
  .cap-img-row {
    grid-template-columns: 1fr 1fr;
  }

  .guarantee-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-tags {
    justify-content: center;
  }

  .map-placeholder {
    grid-column: span 1;
  }

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

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

  .trust-item {
    padding: 8px 20px;
  }

  .steps-row::before {
    display: none;
  }

  .color-preview-area {
    position: static;
  }

  .colors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(24px, 8vw, 36px);
  }

  section {
    padding: 48px 0;
  }

  .grid-2,
  .grid-3,
  .steps-row,
  .caps-grid,
  .reviews-grid,
  .parts-grid,
  .cap-img-row,
  .prog-grid,
  .audience-cards {
    grid-template-columns: 1fr;
  }

  .review-photo-row {
    display: none;
  }

  .mobile-review-photo {
    display: block;
  }

  .trust-items {
    flex-direction: column;
    gap: 0;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    padding: 12px 20px;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

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

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

  .price-main {
    font-size: 42px;
  }

  .sticky-cta {
    display: block;
  }

  .order-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .colors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}