/* ZHOKA Corporate — Premium Multi-page Marketing Site */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --brand: #0a57ff;
  --brand-deep: #0636a8;
  --brand-light: #3b82f6;
  --accent: #f5b800;
  --accent-soft: #fff3c4;
  --ink: #070d1a;
  --ink-soft: #1a2332;
  --muted: #5c6b82;
  --line: rgba(15, 23, 42, 0.08);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.6);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --shadow: 0 24px 64px rgba(7, 13, 26, 0.12);
  --shadow-lg: 0 40px 100px rgba(7, 13, 26, 0.18);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: #f6f8fc;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: var(--brand-deep); text-underline-offset: 3px; transition: color 0.2s; }
a:hover { color: var(--brand); }

.container { width: min(1180px, 100%); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.4s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(7,13,26,0.06);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 800; font-size: 1.2rem; letter-spacing: 0.06em;
}
.logo-light { color: #fff; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light) 50%, var(--accent));
  box-shadow: 0 8px 24px rgba(10,87,255,0.35);
}
.logo-img {
  width: 42px; height: 42px; border-radius: 12px;
  object-fit: cover; box-shadow: 0 6px 20px rgba(10,87,255,0.25);
}
.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a {
  text-decoration: none; color: var(--muted);
  font-size: 0.9rem; font-weight: 600; position: relative;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--brand);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--brand); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex; padding: 11px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #2563eb);
  color: #fff !important; font-weight: 700; font-size: 0.85rem;
  text-decoration: none; box-shadow: 0 8px 24px rgba(10,87,255,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,87,255,0.45); color: #fff !important; }
.nav-toggle {
  display: none; background: none; border: none; padding: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer ── */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(7,13,26,0.55);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.site-drawer {
  position: fixed; top: 0; right: 0; z-index: 300;
  width: min(360px, 92vw); height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
  box-shadow: -20px 0 60px rgba(7,13,26,0.15);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column;
  padding: 24px;
}
.site-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.drawer-close {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--line); font-size: 1.6rem; cursor: pointer; color: var(--ink);
  display: grid; place-items: center; line-height: 1;
}
.drawer-nav { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border-radius: var(--radius-xs);
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.drawer-nav a:hover { background: rgba(10,87,255,0.08); transform: translateX(4px); }
.drawer-nav a.drawer-ext { color: var(--muted); font-size: 0.92rem; }
.drawer-foot { padding-top: 20px; border-top: 1px solid var(--line); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #2563eb);
  color: #fff; box-shadow: 0 12px 32px rgba(10,87,255,0.35);
}
.btn-primary:hover { color: #fff; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ffd54f);
  color: var(--ink); box-shadow: 0 12px 32px rgba(245,184,0,0.35);
}
.btn-accent:hover { color: var(--ink); }
.btn-secondary {
  background: rgba(255,255,255,0.9); color: var(--brand-deep);
  border-color: rgba(255,255,255,0.5); backdrop-filter: blur(8px);
}
.btn-secondary:hover { color: var(--brand); }
.btn-ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ── Sections ── */
section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.section-title {
  margin: 0 0 16px; font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.12; letter-spacing: -0.03em; font-weight: 800;
}
.section-lead { margin: 0 0 40px; color: var(--muted); font-size: 1.08rem; max-width: 38em; line-height: 1.75; }
.gradient-text {
  background: linear-gradient(135deg, var(--brand), #6366f1 50%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,13,26,0.88) 0%, rgba(10,87,255,0.55) 50%, rgba(7,13,26,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 80px 0 100px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 {
  margin: 0 0 20px; font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05; letter-spacing: -0.04em; font-weight: 800; color: #fff;
}
.hero-lead { margin: 0 0 32px; font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 32em; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px 48px; }
.hero-stats .stat strong {
  display: block; font-size: 2rem; font-weight: 800; color: #fff;
}
.hero-stats .stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 0.82rem; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-phone {
  position: relative; display: flex; justify-content: center;
}
.phone-mockup {
  width: min(300px, 85vw); padding: 12px; border-radius: 36px;
  background: linear-gradient(160deg, #1a2332, #0a1220);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}
.phone-screen {
  border-radius: 28px; overflow: hidden; aspect-ratio: 9/19;
  background: #000;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

/* ── Marquee ── */
.marquee-section {
  padding: 28px 0; background: var(--ink); overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 48px; animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(255,255,255,0.5); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
}
.marquee-track span::before { content: '◆'; margin-right: 48px; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Trust badges ── */
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px;
  padding: 48px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.9rem; font-weight: 600;
}
.trust-item .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(10,87,255,0.08); display: grid; place-items: center;
  font-size: 1.2rem;
}

/* ── Cards ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.img-card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.img-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.img-card-media { position: relative; height: 220px; overflow: hidden; }
.img-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.img-card:hover .img-card-media img { transform: scale(1.08); }
.img-card-body { padding: 24px; }
.img-card-body h3 { margin: 0 0 8px; font-size: 1.15rem; }
.img-card-body p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.img-card-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.92); font-size: 0.72rem; font-weight: 700;
  color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── How it works ── */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step-card {
  text-align: center; padding: 32px 20px; position: relative;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff; font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(10,87,255,0.3);
}
.step-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* ── Split feature ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.split-media img { width: 100%; height: 400px; object-fit: cover; }
.split-media .play-btn {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(7,13,26,0.3); cursor: pointer; border: none;
}
.play-btn span {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  font-size: 1.5rem; box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}
.play-btn:hover span { transform: scale(1.1); }
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; }
.feature-list li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.feature-list li::before {
  content: '✓'; color: var(--brand); font-weight: 800; flex-shrink: 0;
}

/* ── Stats band ── */
.stats-band {
  background: linear-gradient(135deg, var(--ink) 0%, #0f2847 50%, var(--brand-deep) 100%);
  padding: 72px 0; color: #fff; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245,184,0,0.12), transparent 50%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
.stat-box { text-align: center; }
.stat-box strong { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--accent); }
.stat-box span { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ── Gallery ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 16px;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item .overlay {
  position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(7,13,26,0.8));
  display: flex; align-items: flex-end; padding: 20px;
  color: #fff; font-weight: 700; font-size: 0.95rem;
}

/* ── Cities ── */
.cities-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.city-chip {
  padding: 12px 22px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 600; font-size: 0.9rem; color: var(--ink-soft);
  box-shadow: 0 4px 16px rgba(7,13,26,0.04);
  transition: all 0.3s;
}
.city-chip:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.city-chip.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ── Reviews ── */
.review-card {
  padding: 28px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line); height: 100%;
}
.review-stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; }
.review-text { margin: 0 0 20px; font-style: italic; color: var(--ink-soft); line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center; color: #fff; font-weight: 800;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-meta { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ── */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 20px 0;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--brand); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 14px 0 0; color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

/* ── Apps section ── */
.apps-hero {
  background: linear-gradient(160deg, var(--ink) 0%, #152a4a 60%, var(--brand-deep) 100%);
  border-radius: 32px; padding: 72px 48px; color: #fff;
  position: relative; overflow: hidden;
}
.apps-hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(245,184,0,0.15), transparent 60%);
}
.app-card-lg {
  padding: 32px; border-radius: var(--radius);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); transition: transform 0.3s, background 0.3s;
}
.app-card-lg:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
.play-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 12px; background: #fff;
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.88rem;
}
.play-badge:hover { color: var(--ink); transform: scale(1.03); }
.play-badge svg { width: 22px; height: 22px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info-card {
  padding: 32px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.contact-form {
  padding: 40px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.88rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-xs);
  border: 1px solid var(--line); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(10,87,255,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: linear-gradient(180deg, #e8eeff 0%, #f6f8fc 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(10,87,255,0.12), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.page-hero p { margin: 0 auto; color: var(--muted); max-width: 36em; font-size: 1.08rem; }
.breadcrumb { margin-bottom: 16px; font-size: 0.82rem; color: var(--muted); }
.breadcrumb a { text-decoration: none; color: var(--brand); }

/* ── Footer ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); }
.footer-cta-band {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  padding: 56px 0; margin-bottom: 56px;
}
.footer-cta-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 24px;
}
.footer-cta-inner h2 { margin: 0 0 8px; color: #fff; font-size: 1.6rem; }
.footer-cta-inner p { margin: 0; color: rgba(255,255,255,0.8); }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 36px 24px;
  padding-bottom: 48px;
}
.footer-brand p { margin: 12px 0 20px; font-size: 0.88rem; line-height: 1.7; max-width: 28em; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
  text-decoration: none; color: #fff; font-size: 1rem;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--brand); }
.footer-col h4 {
  margin: 0 0 16px; color: #fff; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; }
.footer-col a:hover { color: var(--accent); }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 140px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
  color: #fff; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 32px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }

/* ── Video modal ── */
.video-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(7,13,26,0.9); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: 0.3s;
  padding: 24px;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-inner {
  width: min(900px, 100%); aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.video-modal iframe, .video-modal video { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.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; }

/* ── Parallax ── */
.parallax-bg {
  background-attachment: fixed; background-size: cover; background-position: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .split-section, .contact-grid { grid-template-columns: 1fr; }
  .hero-phone { order: -1; }
  .steps-row, .stats-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-row: auto; grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-desktop, .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .steps-row, .stats-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .apps-hero { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .marquee-track span { font-size: 0.75rem; }
  .lang-switcher { display: none; }
}

/* ── Logo img ── */
.logo-img { border-radius: 10px; object-fit: cover; }

/* ── Language switcher ── */
.lang-switcher { display: flex; gap: 4px; background: rgba(0,0,0,0.05); padding: 4px; border-radius: 999px; }
.lang-btn {
  border: none; background: transparent; padding: 6px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; cursor: pointer; color: var(--muted);
}
.lang-btn.active { background: #fff; color: var(--brand); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.drawer-lang { padding: 0 20px 16px; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--ink); color: #fff; padding: 16px 20px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.88rem; }
.cookie-actions { display: flex; gap: 8px; }

/* ── Back to top ── */
.back-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 89;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--brand); color: #fff; font-size: 1.2rem; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px var(--brand-glow);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ── 404 ── */
.error-page { min-height: 60vh; display: grid; place-items: center; padding: 120px 20px; }
.error-page h1 { font-size: 4rem; margin: 0 0 12px; color: var(--brand); }

.page-hero-dark { background: linear-gradient(135deg, var(--ink), var(--brand-deep)); color: #fff; }
.page-hero-dark .breadcrumb a { color: rgba(255,255,255,0.7); }
.steps-list { color: var(--muted); line-height: 2; padding-left: 1.2em; }
.vm-card-icon { font-size: 2rem; margin-bottom: 12px; }
.text-center { text-align: center; }
