/* ============================================
   EVIMIZ INTERNATIONAL — var5 "Editorial Tech"
   Apple / Linear / Notion inspired
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --red: #d53427;
  --orange: #f36629;
  --dark: #0f0f0f;
  --dark-card: #1a1a1a;
  --gray-bg: #f5f5f7;
  --gray-300: #d1d1d6;
  --gray-400: #aeaeb2;
  --gray-500: #8e8e93;
  --white: #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nav-h: 72px;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

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

/* ---------- Typography Helpers ---------- */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.label--red {
  background: rgba(213, 52, 39, 0.1);
  color: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: #bf2d22;
  border-color: #bf2d22;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213, 52, 39, 0.3);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: #e05a1f;
  border-color: #e05a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 102, 41, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-300);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--ghost:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp svg { flex-shrink: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.nav--scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo-img {
  height: 32px;
  width: auto;
  transition: filter var(--transition);
}

/* Logo white on dark hero, dark on scrolled */
.nav:not(.nav--scrolled) .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

/* Links white on transparent nav */
.nav:not(.nav--scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.85);
}
.nav:not(.nav--scrolled) .nav__link:hover {
  color: var(--white);
}
.nav--scrolled .nav__link {
  color: var(--gray-500);
}
.nav--scrolled .nav__link:hover {
  color: var(--dark);
}

/* Language Switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}

.nav__lang-link {
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition);
}

.nav:not(.nav--scrolled) .nav__lang-link {
  color: rgba(255, 255, 255, 0.5);
}
.nav:not(.nav--scrolled) .nav__lang-link--active {
  color: var(--white);
}
.nav--scrolled .nav__lang-link {
  color: var(--gray-400);
}
.nav--scrolled .nav__lang-link--active {
  color: var(--dark);
}

.nav__lang-sep {
  font-size: 12px;
  opacity: 0.3;
}
.nav:not(.nav--scrolled) .nav__lang-sep {
  color: var(--white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.nav:not(.nav--scrolled) .nav__hamburger span {
  background: var(--white);
}
.nav--scrolled .nav__hamburger span {
  background: var(--dark);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay (created via JS) */
.nav__overlay { z-index: 999; }

/* ============================================
   HERO — SPLIT FORK
   ============================================ */
.fork {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.fork__col {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 50px;
  padding-top: calc(var(--nav-h) + 40px);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s ease;
}

.fork__col:hover {
  flex: 1.15;
}

/* Background images */
.fork__col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.fork__col:hover::before {
  transform: scale(1.05);
}

/* Dark gradient overlay */
.fork__col::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

/* Intercom — text aligned right (mirror of cameras) */
.fork__col--intercom {
  align-items: flex-end;
  text-align: right;
}

/* Intercom background */
.fork__col--intercom::before {
  background-image: url('../assets/images/intercom-hero.png');
  background-position: center 40%;
}

/* Cameras background (mirrored) */
.fork__col--cameras::before {
  background-image: url('../assets/images/DSC00856.png');
  background-position: center 30%;
  transform: scaleX(-1);
}

.fork__col--cameras:hover::before {
  transform: scaleX(-1) scale(1.05);
}

/* Divider between columns */
.fork__col + .fork__col {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Content */
.fork__content {
  position: relative;
  z-index: 3;
}

.fork__label {
  display: inline-block;
  background: rgba(213, 52, 39, 0.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.fork__brand-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  display: block;
}

.fork__title {
  color: var(--white);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.fork__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 400px;
}

.fork__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  transition: background 0.3s, transform 0.2s;
}

.fork__btn:hover {
  background: #b82b20;
  transform: translateY(-2px);
}

.fork__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.fork__btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   SPOTLIGHT — INTERCOM
   ============================================ */
.spotlight {
  padding: 120px 0;
  background: var(--white);
}

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

.spotlight__image-frame {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.spotlight__image-frame img {
  max-height: 100%;
  object-fit: contain;
}

.spotlight__content { max-width: 480px; }

.spotlight__brand-img {
  height: 55px;
  display: block;
  margin-bottom: -44px;
}

.spotlight__title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
  color: var(--dark);
}

.spotlight__text {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.spotlight__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.spotlight__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

.spotlight__feat svg { flex-shrink: 0; }

.spotlight__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.spotlight__meta-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--gray-bg);
  color: var(--gray-500);
}

.spotlight__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   CAMERAS — CINEMATIC
   ============================================ */
.cameras {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../assets/images/DSC00856.png') calc(50% - 175px) center / cover no-repeat;
}

.cameras__header {
  text-align: center;
  margin-bottom: 72px;
}

.cameras__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cameras__title {
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.03em;
}

.cameras__mascot {
  height: clamp(80px, 10vw, 140px);
  width: auto;
  object-fit: contain;
  margin-top: -22px;
}

.cameras__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gray-500);
  font-weight: 300;
}

.cameras__subtitle em {
  font-style: italic;
  color: var(--gray-400);
}

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

.cam-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.cam-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cam-card__img {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cam-card__img img {
  max-height: 100%;
  object-fit: contain;
}

.cam-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cam-card__use {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 8px;
}

.cam-card__feat {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.cameras__cta {
  text-align: center;
}

/* ============================================
   FEATURES — GRID
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--gray-bg);
}

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

.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.feat-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 102, 41, 0.08);
  border-radius: 16px;
  margin-bottom: 24px;
}

.feat-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.feat-card__text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   PLATFORM — SHANYRAK
   ============================================ */
.platform {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 600px 300px at 10% 20%, rgba(213, 52, 39, 0.15), transparent),
    radial-gradient(ellipse 500px 400px at 90% 80%, rgba(255, 138, 0, 0.15), transparent),
    radial-gradient(ellipse 400px 200px at 50% 50%, rgba(213, 52, 39, 0.08), transparent),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 15a8 8 0 00-8 8c0 1.5.4 2.9 1.1 4.1A6 6 0 0018 32a6 6 0 006 6h12a6 6 0 006-6 6 6 0 00-5.1-5.9c.7-1.2 1.1-2.6 1.1-4.1a8 8 0 00-8-8z' fill='none' stroke='rgba(213,52,39,0.15)' stroke-width='1.2'/%3E%3Ccircle cx='10' cy='50' r='2' fill='none' stroke='rgba(255,138,0,0.12)' stroke-width='0.8'/%3E%3Ccircle cx='50' cy='10' r='1.5' fill='none' stroke='rgba(213,52,39,0.12)' stroke-width='0.8'/%3E%3Cpath d='M5 5h4v4H5zM51 47h4v4h-4z' fill='none' stroke='rgba(0,0,0,0.07)' stroke-width='0.8' rx='1'/%3E%3C/svg%3E") repeat,
    var(--white);
}

.platform__header {
  text-align: center;
  margin-bottom: 64px;
}

.platform__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 16px;
}

.platform__subtitle {
  font-size: 18px;
  color: var(--gray-500);
  font-weight: 400;
}

.platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.plat-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.plat-card:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.plat-card__num {
  display: inline-block;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.plat-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.plat-card__text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Banner */
.platform__banner {
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}

.platform__banner-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.platform__banner-text span {
  opacity: 0.5;
  margin: 0 6px;
}

.platform__banner-text strong {
  font-weight: 800;
  display: inline;
}

/* ============================================
   PARTNERSHIP
   ============================================ */
.partnership {
  padding: 120px 0;
  background: var(--dark);
}

.partnership__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: center;
  margin-bottom: 64px;
}

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

.part-card {
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.part-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.part-card__num {
  display: inline-block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
  line-height: 1;
}

.part-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.part-card__text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 120px 0;
  background: var(--white);
}

.cta__inner { text-align: center; }

.cta__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 40px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 72px 0 32px;
  background: var(--dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer__col p,
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
}

.wa-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.anim--fade-up {
  transform: translateY(40px);
}

.anim--fade-left {
  transform: translateX(40px);
}

.anim--fade-right {
  transform: translateX(-40px);
}

.anim--scale {
  transform: scale(0.92);
}

.anim.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ============================================
   RESPONSIVE — 1200px
   ============================================ */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
}

/* ============================================
   RESPONSIVE — 960px
   ============================================ */
@media (max-width: 960px) {
  .spotlight__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .spotlight__image { order: -1; }
  .spotlight__image-frame { aspect-ratio: 3 / 4; max-width: 400px; margin: 0 auto; }
  .spotlight__content { max-width: 100%; }

  .cameras__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__grid .feat-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .platform__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform__grid .plat-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

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

  .footer__grid .footer__col:first-child {
    grid-column: 1 / -1;
  }
}

/* ============================================
   RESPONSIVE — 768px (tablet)
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Mobile Nav */
  .nav__hamburger { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 80px 32px 40px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.active {
    transform: translateX(0);
  }

  .nav__menu .nav__link {
    color: var(--dark) !important;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav__menu .nav__link:hover {
    color: var(--red) !important;
  }

  .nav__lang {
    margin-left: 0;
    margin-top: 24px;
    padding-top: 16px;
  }

  .nav__menu .nav__lang-link {
    color: var(--gray-400) !important;
    font-size: 15px;
  }
  .nav__menu .nav__lang-link--active {
    color: var(--dark) !important;
  }

  /* Hamburger always dark when menu is open */
  .nav__hamburger.active span {
    background: var(--dark) !important;
  }

  /* Fork (hero) */
  .fork {
    flex-direction: column;
    min-height: auto;
  }

  .fork__col {
    min-height: 400px;
    padding: 40px 30px;
    padding-top: calc(var(--nav-h) + 30px);
  }

  .fork__col:hover { flex: 1; }

  .fork__col + .fork__col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Intercom: show the device on the left, text on the right */
  .fork__col--intercom::before {
    background-position: left center;
  }
  .fork__col--intercom {
    align-items: flex-end;
  }
  .fork__col--intercom .fork__content {
    text-align: right;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
  }

  .fork__title { font-size: 30px; }
  .fork__desc { font-size: 14px; }

  /* Sections padding */
  .spotlight,
  .cameras,
  .platform,
  .partnership,
  .cta { padding: 80px 0; }

  /* Cameras */
  .cameras__grid { gap: 16px; }
  .cameras__header { margin-bottom: 48px; }

  /* Partnership 2x2 → 1 col */
  .partnership__grid {
    grid-template-columns: 1fr;
  }

  .partnership__title { margin-bottom: 48px; }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
  }

  .features__grid .feat-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Platform */
  .platform__grid {
    grid-template-columns: 1fr;
  }

  .platform__grid .plat-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .platform__banner { padding: 36px 24px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__grid .footer__col:first-child {
    grid-column: auto;
  }
}

/* ============================================
   RESPONSIVE — 480px (mobile)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .fork__col {
    min-height: 350px;
    padding: 32px 20px;
    padding-top: calc(var(--nav-h) + 20px);
  }
  .fork__title { font-size: 26px; }
  .fork__desc { font-size: 13px; margin-bottom: 20px; }
  .fork__btn { padding: 12px 24px; font-size: 14px; }

  .spotlight { padding: 64px 0; }
  .spotlight__image-frame {
    padding: 32px;
    max-width: 100%;
  }
  .spotlight__buttons {
    flex-direction: column;
  }
  .spotlight__buttons .btn { width: 100%; justify-content: center; }

  .cameras { padding: 64px 0; }
  .cameras__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cam-card { padding: 20px; }
  .cam-card__img { padding: 16px; }

  .features { padding: 64px 0; }
  .feat-card { padding: 28px 24px; }

  .platform { padding: 64px 0; }
  .platform__banner { padding: 28px 20px; }

  .partnership { padding: 64px 0; }
  .part-card { padding: 28px 24px; }

  .cta { padding: 80px 0; }
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta__buttons .btn { width: 100%; justify-content: center; }

  .footer { padding: 48px 0 24px; }

  .wa-widget {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .wa-widget svg { width: 24px; height: 24px; }
}
