/* =====================================================
   SMM PRAGUE — ALISA KULOVA — MAIN STYLES
   Font: Unbounded (Google Fonts)
   Colors: #5356F8 (primary), #EDFFAE (accent), #0D0D0F (dark bg)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #5356F8;
  --primary-light: #7B7DFF;
  --primary-dark: #3A3CD6;
  --accent: #E9FF9A;
  --bg-dark: #1A1A2E;
  --bg-dark2: #20203A;
  --bg-light: #F5F5F7;
  --text-light: #FFFFFF;
  --text-muted: rgba(255,255,255,0.45);
  --text-muted2: rgba(255,255,255,0.7);
  --text-dark: #0D0D0F;
  --text-dark-muted: rgba(13,13,15,0.55);
  --border: rgba(255,255,255,0.1);
  --border-light: rgba(13,13,15,0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
}

html {
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ───────────────────────────────────── */
.font-display { font-family: 'Unbounded', sans-serif; }

h1, h2, h3 { font-family: 'Unbounded', sans-serif; line-height: 1.1; font-weight: 700; }

/* ─── UTILITY ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(237,255,174,0.1);
  border: 1px solid rgba(237,255,174,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.section-tag.dark {
  color: var(--primary);
  background: rgba(83,86,248,0.08);
  border-color: rgba(83,86,248,0.2);
}

/* ─── SCROLL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 32px rgba(83,86,248,0.35);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 12px 40px rgba(83,86,248,0.5);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 8px 32px rgba(237,255,174,0.2);
}
.btn-accent:hover {
  background: #f5ffcc;
  box-shadow: 0 12px 40px rgba(237,255,174,0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* ─── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-light); }
.nav-cta { display: flex; }

/* ─── LANG SWITCH ──────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px 6px;
}
.lang-btn {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  padding: 5px 10px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}
.lang-btn:hover { color: rgba(255,255,255,0.8); }
.lang-btn.lang-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(83,86,248,0.4);
}
.lang-divider {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  user-select: none;
}
.lang-switch-mobile {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  padding: 6px 10px;
}
.lang-switch-mobile .lang-btn { font-size: 13px; padding: 8px 16px; }

/* Mobile nav burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--primary); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Full-screen photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% top;
  display: block;
}

/* Overlay: тёмный слева (текст), светлый справа (фото) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(13,12,30,0.92) 0%,
      rgba(13,12,30,0.75) 38%,
      rgba(13,12,30,0.30) 65%,
      rgba(13,12,30,0.10) 100%
    ),
    linear-gradient(to bottom,
      rgba(13,12,30,0.40) 0%,
      rgba(13,12,30,0.10) 30%,
      rgba(13,12,30,0.55) 70%,
      rgba(13,12,30,0.95) 100%
    );
}

/* Main content — text on left, photo visible right */
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 0;
}

.hero-body > * { max-width: 580px; }

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(233,255,154,0.5); }
  50%       { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 0 8px rgba(233,255,154,0); }
}

/* Name */
.hero-name {
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-top: 20px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  white-space: pre-line;
  margin-top: 16px;
  max-width: 480px;
}

/* Buttons row anchored at bottom */
.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  padding-bottom: 48px;
  margin-top: -32px;
  flex-wrap: wrap;
  max-width: 660px;
}

/* Footnote strip — скрыта (десктоп: убрана по запросу; мобильная версия скрывала её и раньше) */
.hero-footnote-wrap {
  display: none;
}
.hero-footnote {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255,255,255,0.32);
  max-width: 680px;
}

/* ── Desktop-only hero tuning (мобильную версию не трогаем) */
@media (min-width: 901px) {
  .hero-desc { font-size: clamp(19px, 2vw, 23px); line-height: 1.6; max-width: 600px; }
  .hero-actions { gap: 18px; margin-top: -64px; }
  .hero-actions .btn { font-size: 16px; padding: 19px 38px; }
  .hero-bg img { object-position: 62% 12%; transform: scale(1.04); }
}

/* ── Load animations */
.h-anim { opacity: 0; animation: hFadeUp 0.7s ease forwards; }
.h-anim-1 { animation-delay: 0.15s; }
.h-anim-2 { animation-delay: 0.3s; }
.h-anim-3 { animation-delay: 0.5s; }
.h-anim-4 { animation-delay: 0.65s; }
.h-anim-5 { animation-delay: 0.8s; }

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

/* ─── ABOUT ────────────────────────────────────────── */
.about {
  background: var(--bg-light);
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text-dark);
  line-height: 1.1;
  white-space: pre-line;
  margin-bottom: 24px;
}
.about-heading em {
  color: var(--primary);
  font-style: normal;
}
.about-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark-muted);
  white-space: pre-line;
}
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-stat {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.about-stat:hover {
  border-color: rgba(83,86,248,0.2);
  box-shadow: 0 8px 32px rgba(83,86,248,0.08);
}
.about-stat-number {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 10px;
}
.about-stat-label {
  font-size: 14px;
  color: var(--text-dark-muted);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 4px;
}
.about-stat-sub {
  font-size: 13px;
  color: var(--text-dark-muted);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2px;
}

/* ─── SERVICES ─────────────────────────────────────── */
.services {
  background: var(--bg-dark2);
  padding: 100px 0;
}
.services-header {
  margin-bottom: 56px;
}
.services-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background var(--transition);
}
.accordion-item:first-child { border-top: 1px solid var(--border); }

.accordion-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}
.accordion-trigger:hover .accordion-title { color: var(--primary-light); }

.accordion-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.accordion-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
  transition: color var(--transition);
  line-height: 1.2;
}
.accordion-summary {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.accordion-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.accordion-price { display: none; }

.accordion-price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-top: 20px;
  font-style: italic;
}

.accordion-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  background: transparent;
  margin-top: 4px;
}
.accordion-icon svg { transition: transform var(--transition); }
.accordion-item.open .accordion-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.accordion-item.open .accordion-icon svg { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.open .accordion-body { max-height: 600px; }

.accordion-content {
  padding: 0 0 36px;
}
.accordion-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted2);
  margin-bottom: 20px;
}
.accordion-includes-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.accordion-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted2);
}
.accordion-list li::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(83,86,248,0.2);
  border: 1px solid var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.5l2.5 2.5 4.5-5' stroke='%235356F8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Tiers inside accordion */
.accordion-tiers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.accordion-tier {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.tier-label {
  font-size: 12px;
  color: var(--text-muted);
}
.tier-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.accordion-result {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(83,86,248,0.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
}
.accordion-result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 4px;
}
.accordion-result-text {
  font-size: 14px;
  color: var(--text-muted2);
  line-height: 1.6;
}

.accordion-footnote {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ─── REELS SECTION ────────────────────────────────── */
.reels {
  background: var(--bg-light);
  padding: 100px 0;
  overflow: hidden;
}
.reels-header { margin-bottom: 48px; }
.reels-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text-dark);
}

/* Horizontal scroll track */
.reels-track-wrap {
  position: relative;
  margin: 0 -24px;
}
.reels-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 24px;
  scrollbar-width: none;
  cursor: grab;
}
.reels-track:active { cursor: grabbing; }
.reels-track::-webkit-scrollbar { display: none; }

.reel-card {
  flex: 0 0 auto;
  width: 220px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  background: #1A1A2E;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform var(--transition);
}
.reel-card:hover { transform: translateY(-4px); }
.reel-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Sound toggle button on each reel */
.reel-sound-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  padding: 0;
}
.reel-sound-btn:hover {
  background: rgba(83,86,248,0.6);
  border-color: var(--primary);
}

/* Scroll arrows */
.reels-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.reels-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-dark);
}
.reels-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.reels-nav-btn:hover svg path { stroke: #fff; }

/* Feed examples */
.feed-section { margin-top: 72px; }
.feed-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.feed-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 16px;
  scrollbar-width: none;
}
.feed-track::-webkit-scrollbar { display: none; }
.feed-img {
  flex: 0 0 auto;
  max-width: 360px;
  width: 90vw;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* ─── CASES ────────────────────────────────────────── */
.cases {
  background: var(--bg-dark2);
  padding: 100px 0;
}
.cases-header { margin-bottom: 56px; }
.cases-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
}

.case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  border-color: rgba(83,86,248,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.case-img-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
}
.case-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  transition: transform 0.5s ease;
}
.case-card:hover .case-img { transform: scale(1.02); }
.case-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(233,255,154,0.1);
  border: 1px solid rgba(233,255,154,0.2);
  border-radius: 100px;
  padding: 4px 10px;
  width: fit-content;
}
.case-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
}
.case-result {
  font-size: 14px;
  color: var(--text-muted2);
  line-height: 1.6;
}
.case-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case-stat-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.case-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 140px;
}

/* Cases swipe hint on mobile */
.cases-swipe-hint {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.cases-swipe-hint svg { opacity: 0.5; }
@media (max-width: 900px) {
  .cases-swipe-hint { display: flex; }
}

/* ─── CONTACT ──────────────────────────────────────── */
.contact {
  background: var(--bg-light);
  padding: 100px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left {}
.contact-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark-muted);
  margin-bottom: 40px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark-muted);
}
.contact-info-item svg { flex-shrink: 0; }

/* Form */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-light);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(83,86,248,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(13,13,15,0.35); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 18px;
  margin-top: 8px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--primary);
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.form-success.visible { display: block; }

/* Formspree hint */
.form-hint {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-dark-muted);
  text-align: center;
  line-height: 1.5;
}
.form-error {
  margin-top: 14px;
  font-size: 13px;
  color: #e53e3e;
  text-align: center;
  line-height: 1.5;
}
.form-error a { color: var(--primary); text-decoration: underline; }


/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--primary); }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted2);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text-muted2); }

/* ─── HIDE SECTION BADGE TAGS (reels + cases) ──────── */
#reels-tag, #cases-tag { display: none !important; }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-stat { padding: 20px 22px; }
  .about-stat-number { font-size: clamp(16px, 4.5vw, 20px); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero tablet/mobile — градиент и базовые правки */
  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(13,12,30,0.70) 0%,
      rgba(13,12,30,0.45) 25%,
      rgba(13,12,30,0.50) 50%,
      rgba(13,12,30,0.88) 72%,
      rgba(13,12,30,0.97) 100%
    );
  }
  .hero-body {
    flex: none;
    justify-content: flex-start;
    margin-top: 50vh;
    padding-top: 0;
    padding-bottom: 16px;
  }
  .hero-eyebrow { text-align: left; justify-content: flex-start; font-size: 12.6px; margin-bottom: 18px; }
  .hero-body > * { max-width: 100%; }
  .hero-name { font-size: clamp(36px, 10vw, 52px); margin-bottom: 18px; }
  .hero-title { margin-top: 0; font-size: 15px; }
  .hero-desc { margin-top: 14px; font-size: 15.5px; line-height: 1.6; }
  .hero-actions {
    flex: none;
    margin-top: 40px;
    position: static;
    padding: 0;
    padding-bottom: 40px;
    gap: 12px;
    max-width: 100%;
    width: 100%;
    display: flex;
  }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-actions .btn-outline { border-width: 1px; border-color: rgba(255,255,255,0.25); }
  .hero-footnote-wrap { display: none; }
  .hero-bg img { object-position: 60% top; }

  /* Cases: horizontal scroll carousel on tablet */
  .cases-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 16px;
    scrollbar-width: none;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    max-width: none;
  }
  .cases-grid::-webkit-scrollbar { display: none; }
  .case-card {
    flex: 0 0 72vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .about, .services, .cases, .contact, .reels { padding: 64px 0; }
  .contact-form { padding: 28px 20px; }
  .accordion-trigger { gap: 12px; }
  .accordion-right { align-items: flex-end; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .reel-card { width: 180px; }

  /* Hero mobile fine-tuning */
  .hero-name { font-size: clamp(34px, 9.5vw, 48px); }
  .hero-actions .btn { padding: 14px 18px; font-size: 15.2px; }

  /* Cases on phone */
  .case-card { flex: 0 0 80vw; }

  /* Accordion on mobile */
  .accordion-trigger { gap: 16px; padding: 20px 0; align-items: center; }
  .accordion-title { font-size: 16px; }
  .accordion-summary { font-size: 13px; }
  .accordion-right { justify-content: center; }
  .accordion-icon { width: 34px; height: 34px; margin-top: 0; }
}

/* ─── NARROW PHONES (≤ 390px) ──────────────────────── */
@media (max-width: 390px) {
  /* Hero — текст ниже, лицо видно сверху */
  .hero-body { margin-top: 52vh; }
  .hero-name { font-size: 32px; margin-bottom: 12px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 12px; }
  .hero-title { font-size: 13px; }
  .hero-desc { font-size: 14px; margin-top: 10px; line-height: 1.5; }
  .hero-actions { margin-top: 18px; padding-bottom: 28px; gap: 10px; }
  .hero-actions .btn { font-size: 13px; padding: 13px 14px; }

  /* Services accordion */
  .accordion-trigger { gap: 12px; padding: 18px 0; }
  .accordion-title { font-size: 15px; }
  .accordion-icon { width: 30px; height: 30px; }
  .accordion-body { }
  .accordion-item.open .accordion-body { max-height: 800px; }
}
