/* ===== CLEANPAGES STYLES ===== */
:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-2: #f5f2ee;
  --text: #1a1a1a;
  --text-muted: #6b6560;
  --text-dim: #a09890;
  --accent-warm: #e85d04;
  --accent-red: #d00000;
  --accent-orange: #f48c06;
  --accent-green: #2e7d32;
  --border: #ede8e2;
  --border-hover: #ddd5cc;
  --shadow: rgba(0,0,0,0.05);
  --shadow-hover: rgba(0,0,0,0.08);
  --navy: #102734;
  --navy-deep: #0b1c26;
  --navy-soft: #16303f;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--accent-warm); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  padding: 8px 20px;
  background: var(--accent-warm);
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.25);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .accent {
  color: var(--accent-warm);
  position: relative;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-warm);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent-warm);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 93, 4, 0.25);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  background: var(--surface-2);
  box-shadow: 0 4px 16px var(--shadow);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat { text-align: left; }

.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-warm);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== HERO DESIGN PANEL (скелет + кнопка) ===== */
.hero-design {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

.hero-design-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(16, 39, 52, 0.18);
}

.hero-design-img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.hero-design-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(250, 248, 245, 0) 55%, rgba(250, 248, 245, 0.82) 88%, rgba(250, 248, 245, 0.95) 100%),
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(232, 93, 4, 0.10) 0%, transparent 60%);
}

.hero-design-btn {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  padding: 13px 26px;
  font-size: 0.85rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--border-hover);
  border-radius: 14px;
  z-index: 1;
}

.hero-scroll span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--accent-warm);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header { margin-bottom: 3rem; }

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-orange), var(--accent-warm));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,93,4,0.1), rgba(244,140,6,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(232,93,4,0.15);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}

/* ===== SHOWCASE ===== */
.showcase-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(232,93,4,0.03) 50%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow-hover);
  border: 1px solid var(--border);
}

.showcase-img--tiger {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 2rem;
  background: var(--surface);
}

.showcase-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.showcase-text h2 span { color: var(--accent-warm); }

.showcase-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.showcase-list li .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== COMPARISON ===== */
.compare-section {
  background: var(--surface);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px var(--shadow);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.compare-col {
  padding: 2rem;
  border-radius: 16px;
}

.compare-col.bad {
  background: rgba(208, 0, 0, 0.04);
  border: 1px solid rgba(208, 0, 0, 0.12);
}

.compare-col.good {
  background: rgba(232, 93, 4, 0.04);
  border: 1px solid rgba(232, 93, 4, 0.12);
}

.compare-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-col.bad h4 { color: var(--accent-red); }
.compare-col.good h4 { color: var(--accent-warm); }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.compare-item .check { color: var(--accent-warm); flex-shrink: 0; margin-top: 2px; }
.compare-item .cross { color: var(--accent-red); flex-shrink: 0; margin-top: 2px; }

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.video-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.video-content .section-header { text-align: left; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px var(--shadow);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px var(--shadow-hover);
  border-color: var(--accent-warm);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 340px;
  background: var(--navy-deep);
  overflow: hidden;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease;
}

.video-card:hover .video-poster { transform: scale(1.04); }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: all 0.3s ease;
  border: 3px solid rgba(255,255,255,0.3);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
  box-shadow: 0 0 30px rgba(232,93,4,0.4);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 4px;
}

.video-card .video-info {
  padding: 1.25rem;
  text-align: left;
}

.video-card .video-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.video-card .video-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-card .video-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.video-tag.reels {
  background: rgba(232,93,4,0.1);
  color: var(--accent-warm);
}

.video-tag.tutorial {
  background: rgba(46,125,50,0.1);
  color: var(--accent-green);
}

.video-tag.case {
  background: rgba(208,0,0,0.08);
  color: var(--accent-red);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 2px 8px var(--shadow);
}

.pricing-card.popular {
  border-color: var(--accent-warm);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(232,93,4,0.04) 100%);
  box-shadow: 0 4px 20px rgba(232,93,4,0.08);
}

.pricing-card.popular::after {
  content: 'ПОПУЛЯРНОЕ';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-orange));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px var(--shadow-hover);
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--accent-warm);
}

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

.pricing-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card ul li svg {
  color: var(--accent-warm);
  flex-shrink: 0;
}

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

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow);
}

.step:hover {
  border-color: var(--accent-warm);
  box-shadow: 0 12px 32px var(--shadow-hover);
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.step:hover .step-num { color: var(--accent-warm); }

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TEAM ===== */
.team-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow-hover);
}

.team-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.team-text h2 span { color: var(--accent-warm); }

.team-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(232,93,4,0.04) 50%, var(--surface) 100%);
  border-radius: 32px;
  margin: 2rem auto 4rem;
  max-width: 1200px;
  border: 1px solid var(--border);
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  position: relative;
}

.footer-flight {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-flight canvas {
  display: block;
  width: 100%;
  height: auto;
}

.flight-caption {
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}

.flight-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.flight-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  color: #fff;
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.45);
}

.footer-col h5 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-col a:hover { color: var(--accent-orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.75rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--accent-orange); }

.footer-links span { margin: 0 0.5rem; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2.5rem));
  visibility: hidden;
  background: var(--navy);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 16px 48px rgba(16,39,52,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 200;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
  max-width: calc(100vw - 3rem);
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
  .hero-design { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-content { max-width: 720px; }
  .hero-design {
    justify-self: center;
    width: 100%;
    max-width: 420px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .nav-links a:hover { background: var(--surface-2); }
  .nav-burger { display: flex; }
  .hero { padding: 6.5rem 1.25rem 4rem; }
  .hero-stats { gap: 1.5rem; }
  .stat { text-align: center; }
  .hero-design { max-width: 340px; }
  .hero-design-img { height: 430px; }
  .compare-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .section { padding: 4rem 1.5rem; }
  .compare-section { padding: 2rem 1.5rem; }
  .showcase-grid { grid-template-columns: 1fr; }
  .team-content { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .flight-caption { left: 1.25rem; top: 0.9rem; }
  .flight-text { display: none; }
  .cta-section { margin: 1rem 1rem 3rem; padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .stat-value { font-size: 1.4rem; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  visibility: hidden;
  z-index: 300;
  width: min(680px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.cookie-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--accent-warm);
  text-decoration: none;
}

.cookie-text a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
  border-radius: 10px;
}

/* ===== MODAL / ORDER FORM ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 39, 52, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(16,39,52,0.35);
  padding: 2.25rem 2.25rem 2rem;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

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

.modal-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field {
  display: block;
  margin-bottom: 0.9rem;
}

.field > span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.field input[type="text"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}

.field textarea { resize: vertical; min-height: 74px; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.12);
}

.design-picker {
  margin-bottom: 0.9rem;
}

.design-picker-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.design-hint {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 0.9rem 1rem;
  border: 1px dashed var(--border-hover);
  border-radius: 12px;
  background: var(--surface);
}

.design-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
}

.design-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.design-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.design-option .design-body {
  display: block;
  position: relative;
  height: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: all 0.25s ease;
}

.design-option .design-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.design-option .design-desc {
  display: block;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.design-option:hover .design-body {
  border-color: var(--border-hover);
  box-shadow: 0 4px 14px var(--shadow);
}

.design-option input:checked + .design-body {
  border-color: var(--accent-warm);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(232,93,4,0.05) 100%);
  box-shadow: 0 6px 20px rgba(232,93,4,0.12);
}

.design-option input:checked + .design-body::after {
  content: '✓';
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-warm);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.35rem 0.9rem;
}

.check, .agree {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0;
}

.check input, .agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check i, .agree i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1.5px solid var(--border-hover);
  background: var(--surface);
  position: relative;
  transition: all 0.2s ease;
}

.check input:checked + i,
.agree input:checked + i {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
}

.check input:checked + i::after,
.agree input:checked + i::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agree {
  margin: 0.25rem 0 1.1rem;
  line-height: 1.5;
}

.agree a { color: var(--accent-warm); text-decoration: none; }
.agree a:hover { text-decoration: underline; }

.form-submit {
  width: 100%;
}

.form-submit[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.form-status {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
}

.form-status.ok { color: var(--accent-green); }
.form-status.err { color: var(--accent-red); }

/* ===== PRIVACY PAGE ===== */
.policy {
  max-width: 820px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.policy h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.policy .policy-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.policy h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2.2rem 0 0.75rem;
}

.policy p, .policy li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.policy ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.policy li { margin-bottom: 0.35rem; }

.policy strong { color: var(--text); }

.inn-placeholder {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 8px;
  background: rgba(232,93,4,0.08);
  border: 1px dashed var(--accent-warm);
  color: var(--accent-warm);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}

.policy-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.policy-footer a {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
}

.policy-footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .modal-card { padding: 1.75rem 1.25rem 1.5rem; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .morph-caption { font-size: 0.6rem; }
}

/* ===== DESIGNS SECTION ===== */
.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.design-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px var(--shadow);
}

.design-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px var(--shadow-hover);
  border-color: var(--accent-warm);
}

.design-card-img {
  height: 300px;
  overflow: hidden;
  background: #eef1f4;
  border-bottom: 1px solid var(--border);
}

.design-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.design-card:hover .design-card-img img {
  transform: scale(1.03);
}

.design-card-info {
  padding: 1.25rem 1.4rem 1.5rem;
}

.design-card-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.design-card-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRICING CAROUSEL (mobile) ===== */
.pricing-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}

.pricing-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-hover);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.pricing-dots button.active {
  background: var(--accent-warm);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }
  .pricing-dots { display: flex; }
  .feature-morph { height: 150px; }
  .design-card-img { height: 260px; }
}

