/* ============================================================
   CamSet.ge — Global Stylesheet
   Shared across all pages
   ============================================================ */

/* ---- Page transitions ---- */
/* Chrome 126+: MPA cross-document View Transition */
@view-transition {
  navigation: auto;
}

/* ── Tilt reveal (Awwwards) ──────────────────────────────── */
/* Content tilts in perspective — nav/ticker excluded below  */
::view-transition-old(root) {
  animation: 360ms cubic-bezier(0.4, 0, 1, 1) both vt-tilt-out;
  transform-origin: 50% 100%;
}
::view-transition-new(root) {
  animation: 520ms cubic-bezier(0.16, 1, 0.3, 1) both vt-tilt-in;
  transform-origin: 50% 0%;
}
@keyframes vt-tilt-out {
  to {
    opacity: 0;
    transform: perspective(900px) rotateX(6deg) scale(0.96);
  }
}
@keyframes vt-tilt-in {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(-5deg) scale(1.02);
  }
}

/* ── Nav — completely static across transitions ─────────── */
#siteNav {
  view-transition-name: site-nav;
}
::view-transition-old(site-nav) {
  animation: 100ms ease both vt-nav-out;
  mix-blend-mode: normal;
}
::view-transition-new(site-nav) {
  animation: 100ms ease both vt-nav-in;
  mix-blend-mode: normal;
}
@keyframes vt-nav-out { to   { opacity: 0; } }
@keyframes vt-nav-in  { from { opacity: 0; } }

/* Ticker also fixed — keep it static */
.ticker {
  view-transition-name: site-ticker;
}
::view-transition-old(site-ticker) {
  animation: 100ms ease both vt-nav-out;
  mix-blend-mode: normal;
}
::view-transition-new(site-ticker) {
  animation: 100ms ease both vt-nav-in;
  mix-blend-mode: normal;
}

/* ── Nav pill slides between active items ───────────────── */
.nav-pill {
  position: absolute;
  border-radius: 100px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
  view-transition-name: nav-pill;
  contain: layout;
  transition: left 0.25s cubic-bezier(0.4,0,0.2,1),
              top  0.25s cubic-bezier(0.4,0,0.2,1),
              width  0.25s cubic-bezier(0.4,0,0.2,1),
              height 0.25s cubic-bezier(0.4,0,0.2,1),
              opacity 0.2s ease;
}
body.hero-white .nav-pill {
  background: rgba(0,20,60,0.06);
  border-color: rgba(0,20,60,0.08);
}
::view-transition-group(nav-pill) {
  animation-duration: 380ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
::view-transition-old(nav-pill) { animation: 120ms ease both vt-pill-out; }
::view-transition-new(nav-pill) { animation: 260ms ease both vt-pill-in; }
@keyframes vt-pill-out { to   { opacity: 0; } }
@keyframes vt-pill-in  { from { opacity: 0; } }

/* ── Camera card → hero image morph ────────────────────── */
::view-transition-group(hero-cam) {
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
::view-transition-old(hero-cam),
::view-transition-new(hero-cam) {
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Fallback: non-VT browsers — opacity only ───────────── */
/* No transform on body to avoid breaking position:fixed nav */
body.pg-out {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
body.pg-in {
  opacity: 0; transition: none;
}
body.pg-in-run {
  opacity: 1;
  transition: opacity 0.32s ease;
}

:root {
  --navy: #1a2f5a;
  --navy-light: #243d73;
  --navy-dark: #0f1e3d;
  --navy-deepest: #0a1428;
  --accent: #2d6be4;
  --accent-light: #4a84f5;
  --accent-soft: #7aa7ff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --green: #22c55e;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,47,90,0.10);
  --shadow-lg: 0 20px 56px rgba(26,47,90,0.16);
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Lenis smooth scroll — prevents conflict with programmatic scrollTo() calls */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  font-family: 'Noto Sans Georgian', 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   PLACEHOLDER SLOTS  (replace these with your own assets)
   ============================================================ */

/* IMAGE placeholder — swap the whole element for <img src="..."> */
.media-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(45deg, rgba(45,107,228,0.04) 0 12px, transparent 12px 24px),
    var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
}
.media-ph svg { opacity: 0.5; }
.media-ph small { font-size: 11px; font-weight: 500; color: var(--gray-400); }

/* ICON slot — keeps a default SVG, swap the inner <svg> anytime.
   Marked in HTML with <!-- SVG-SLOT --> for easy find. */
.icon-slot { display: inline-flex; align-items: center; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9,17,35,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
/* transparent variant only when page has a dark hero at top */
body.hero-dark .site-nav { background: transparent; border-bottom-color: transparent; }
body.hero-dark .site-nav.scrolled {
  background: rgba(9,17,35,0.72);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* 404 — nav always visible (no dark hero behind it) */
body[data-page="404"] .site-nav {
  background: rgba(9,17,35,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* index page: dark navy + blur before scrolling */
body[data-page="home"] .site-nav {
  background: rgba(10,20,60,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: transparent;
}
body[data-page="home"] .site-nav.scrolled {
  background: rgba(9,17,35,0.72);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.nav-inner {
  padding: 0 6%;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; justify-self: start; }
.nav-logo img { height: 40px; filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; justify-self: center; }
.nav-links li { position: relative; z-index: 1; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 100px;
  transition: color .2s;
  position: relative; z-index: 1;
}
.nav-links a:hover  { color: #fff; background: transparent; }
.nav-links a.active { color: #fff; background: transparent; }
.nav-pill { z-index: 0; }

.nav-right { display: flex; align-items: center; gap: 14px; justify-self: end; }

/* language pill */
.lang { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; padding: 8px 12px; border-radius: 100px;
  transition: all .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); }
.lang-toggle svg { opacity: .7; }
.lang-toggle .chev { width: 12px; height: 12px; transition: transform .25s; }
.lang.open .lang-toggle .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: rgba(15,25,48,0.94); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  padding: 6px; min-width: 156px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .22s cubic-bezier(.16,1,.3,1);
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: none; border: none; color: rgba(255,255,255,0.78);
  font-size: 13.5px; font-weight: 500; font-family: inherit;
  cursor: pointer; padding: 10px 12px; border-radius: 9px;
  transition: all .15s; text-align: left;
}
.lang-option:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lang-option.active { background: rgba(45,107,228,0.22); color: #fff; }
.lang-option .flag { font-size: 16px; line-height: 1; }
.lang-option .tick { margin-left: auto; opacity: 0; }
.lang-option.active .tick { opacity: 1; }

.nav-cta {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff; border: none; padding: 11px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 16px rgba(45,107,228,0.35); transition: all .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(45,107,228,0.5); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ============================================================
   NEWS TICKER
   ============================================================ */
.ticker {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: #fff; height: 40px; overflow: hidden;
  display: flex; align-items: center;
  box-shadow: 0 4px 16px rgba(45,107,228,0.25);
}
.ticker-label {
  display: flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.18); height: 100%;
  padding: 0 18px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; flex-shrink: 0;
  white-space: nowrap;
}
.ticker-label .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: tpulse 1.4s infinite;
}
@keyframes tpulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.ticker-track-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: inline-flex; align-items: center; gap: 48px;
  white-space: nowrap; padding-left: 24px;
  animation: tickerScroll 32s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { font-size: 13.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; }
.ticker-track span::before { content: '●'; font-size: 7px; opacity: .7; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff; padding: 15px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 700; text-decoration: none; border: none;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 28px rgba(45,107,228,0.4); transition: all .25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(45,107,228,0.55); }

.btn-outline-dark {
  background: rgba(255,255,255,0.05); color: #fff; padding: 15px 30px;
  border-radius: 100px; font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px; transition: all .25s;
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }

.btn-outline {
  background: transparent; color: var(--navy-dark); padding: 15px 30px;
  border-radius: 100px; font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid var(--gray-200); cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px; transition: all .25s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(45,107,228,0.05); }

/* ============================================================
   HERO  (dark — used on home & subpage banners)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 700px at 78% 8%, rgba(45,107,228,0.28), transparent 60%),
    radial-gradient(900px 600px at 12% 85%, rgba(74,132,245,0.18), transparent 55%),
    linear-gradient(165deg, var(--navy-deepest) 0%, var(--navy-dark) 45%, #15294f 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .55; }
.hero-glow.g1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(74,132,245,0.6), transparent 70%); top: -120px; right: -60px; animation: float1 14s ease-in-out infinite; }
.hero-glow.g2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(45,107,228,0.5), transparent 70%); bottom: -140px; left: -80px; animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,40px) scale(1.1)} }
@keyframes float2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(50px,-30px) scale(1.08)} }

/* home hero (full height, 2 cols) */
.hero-home { min-height: 100vh; display: flex; align-items: center; padding: 150px 0 70px; }
.hero-grid {
  max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 48px;
  position: relative; z-index: 2;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px); color: rgba(255,255,255,0.92);
  padding: 8px 16px 8px 10px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,211,153,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(52,211,153,0.2)} 50%{box-shadow:0 0 0 7px rgba(52,211,153,0)} }
.hero h1 { font-size: clamp(40px, 5.2vw, 72px); font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(110deg, var(--accent-light) 0%, var(--accent-soft) 50%, #a5c4ff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 17px; color: rgba(255,255,255,0.62); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 38px; align-items: center; }
.hero-stat .num { font-size: 30px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.5px; }
.hero-stat .lbl { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.hero-stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.14); }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-img-wrap { position: relative; width: 100%; max-width: 640px; animation: floatImg 7s ease-in-out infinite; }
@keyframes floatImg { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-img-wrap > img,
.hero-img-wrap > .media-ph { filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5)); }
.hero-pill {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px); padding: 11px 16px 11px 12px; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3); animation: floatPill 6s ease-in-out infinite;
}
.hero-pill .pi { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-pill .pt strong { display: block; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.hero-pill .pt small { display: block; font-size: 10.5px; color: rgba(255,255,255,0.6); }
.hp-1 { top: 6%; left: -4%; animation-delay: 0s; }
.hp-2 { top: 42%; right: -6%; animation-delay: 1.5s; }
.hp-3 { bottom: 8%; left: 2%; animation-delay: 3s; }
@keyframes floatPill { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ---- White / light hero variant ---- */
body.hero-white .site-nav {
  background: rgba(255,255,255,0.92);
  border-bottom-color: rgba(0,20,60,0.08);
  backdrop-filter: blur(20px) saturate(160%);
}
body.hero-white .site-nav.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(0,20,60,0.10);
  box-shadow: 0 4px 28px rgba(0,20,80,0.07);
}
body.hero-white .nav-logo img { filter: none; }
body.hero-white .nav-links a { color: rgba(10,20,50,0.68); }
body.hero-white .nav-links a:hover  { color: var(--navy-dark); background: transparent; }
body.hero-white .nav-links a.active { color: var(--accent);     background: transparent; }
body.hero-white .lang-toggle { background: rgba(0,20,60,0.05); border-color: rgba(0,20,60,0.12); color: rgba(10,20,50,0.80); }
body.hero-white .lang-toggle:hover { background: rgba(0,20,60,0.09); }
body.hero-white .hamburger span { background: var(--navy-dark); }

.hero-white { background: #ffffff; }
.hero-white::after { display: none; }
.hero-white .hero-eyebrow {
  background: rgba(45,107,228,0.07); border-color: rgba(45,107,228,0.16); color: var(--navy-dark);
}
.hero-white h1 { color: var(--navy-dark); }
.hero-white .hero-text p { color: #5a6882; }
.hero-white .hero-stat .num { color: var(--navy-dark); }
.hero-white .hero-stat .lbl { color: #7a8aa0; }
.hero-white .hero-stat-divider { background: rgba(0,20,60,0.10); }
.hero-white .btn-outline-dark {
  background: transparent; color: var(--navy-dark); border-color: rgba(0,20,80,0.18);
}
.hero-white .btn-outline-dark:hover {
  background: rgba(45,107,228,0.06); border-color: var(--accent); color: var(--accent);
}

/* Georgia map visual */
.georgia-map-wrap {
  width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: floatImg 7s ease-in-out infinite;
  position: relative;
}
/* Overlay photo — half above the map frame, half inside (top-right corner) */
.map-overlay-photo {
  position: absolute;
  top: 0;
  right: 40px;
  transform: translateY(-90%);
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #fff;
  z-index: 10;
}
.georgia-map-img { width: 100%; max-width: 580px; height: auto; display: block; filter: drop-shadow(0 24px 48px rgba(0,20,80,0.12)); }
.map-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(45,107,228,0.08); border: 1px solid rgba(45,107,228,0.16);
  color: var(--accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}

/* subpage banner (shorter hero with breadcrumb) */
.page-banner { padding: 170px 0 80px; text-align: center; }
.page-banner .container { position: relative; z-index: 2; }
.page-banner .crumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.page-banner .crumb a { color: var(--accent-soft); text-decoration: none; }
.page-banner h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 16px; }
.page-banner p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

/* ============================================================
   SECTIONS / SHARED COMPONENTS
   ============================================================ */
section { padding: 96px 0; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-tag {
  display: inline-block; background: rgba(45,107,228,0.1); color: var(--accent);
  border: 1px solid rgba(45,107,228,0.2); padding: 4px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .5px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy-dark); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--gray-600); max-width: 560px; }

/* card grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all .38s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s cubic-bezier(0.16,1,0.3,1);
}
.card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,107,228,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .38s ease;
  pointer-events: none;
}
.card:hover { border-color: transparent; box-shadow: 0 24px 64px rgba(26,47,90,0.14); transform: translateY(-6px); }
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--navy));
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(45,107,228,0.28);
  transition: transform .35s cubic-bezier(0.34,1.56,0.64,1), box-shadow .35s ease;
}
.card:hover .card-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(45,107,228,0.38);
}
.card-img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 22px;
  border-radius: var(--radius);
  transition: transform .38s cubic-bezier(0.16,1,0.3,1);
}
.card:hover .card-img { transform: scale(1.04) translateY(-2px); }
.card h3 { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.72; }

/* alt bg sections */
.bg-soft { background: var(--gray-50); }
section.bg-dark { padding: 32px 0 64px; }
section.bg-dark .section-head { margin-bottom: 40px; }
.bg-dark {
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%,    rgba(107,163,255,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(15,32,96,0.5)   0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 55% 50%,  rgba(74,132,245,0.1)  0%, transparent 50%),
    linear-gradient(160deg, #0f2060 0%, #1a3480 38%, #1e3d96 68%, #162e7a 100%);
  color: #fff;
}
.bg-dark .section-title { color: #fff; }
.bg-dark .section-sub { color: rgba(255,255,255,0.6); }

/* feature list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--gray-600); }
.check-list li::before {
  content: '✓'; width: 22px; height: 22px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* why-us dark items */
.why-item {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 24px 20px 20px;
  text-align: center;
  cursor: default;
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.4s ease,
    background 0.3s ease;
  isolation: isolate;
}
/* gradient border — pseudo element trick */
.why-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(
    135deg,
    rgba(74,132,245,0.55) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(45,107,228,0.35) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* glow layer under card */
.why-item::after {
  content: '';
  position: absolute;
  inset: 10px 20px -16px;
  border-radius: 20px;
  background: radial-gradient(ellipse at 50% 100%, rgba(45,107,228,0.45) 0%, transparent 70%);
  filter: blur(16px);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why-item:hover {
  transform: translateY(-8px);
  background: rgba(45,107,228,0.1);
  box-shadow: 0 24px 60px rgba(10,20,70,0.55);
}
.why-item:hover::before { opacity: 1; }
.why-item:hover::after  { opacity: 1; }

/* icon */
.why-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.why-item:hover .why-icon {
  background: linear-gradient(135deg, rgba(45,107,228,0.6) 0%, rgba(74,132,245,0.4) 100%);
  border-color: rgba(74,132,245,0.5);
  box-shadow: 0 0 0 6px rgba(45,107,228,0.12), 0 0 28px rgba(74,132,245,0.35);
  transform: scale(1.12) rotate(-4deg);
}
.why-icon svg {
  transition: filter 0.35s ease, transform 0.35s ease;
}
.why-item:hover .why-icon svg {
  filter: drop-shadow(0 0 8px rgba(165,196,255,0.8));
  transform: scale(1.08);
}

.why-item h3 {
  font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px;
  transition: color 0.3s ease;
}
.why-item:hover h3 { color: #a5c4ff; }
.why-item p {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6;
  transition: color 0.3s ease;
}
.why-item:hover p { color: rgba(255,255,255,0.72); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 24px; }
.post-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden; transition: all .38s cubic-bezier(0.16,1,0.3,1); display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.post-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(26,47,90,0.14); border-color: transparent; }
.post-thumb { position: relative; }
.post-thumb .media-ph { aspect-ratio: 16/9; border: none; border-radius: 0; }
.post-thumb img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(45,107,228,0.95); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .4px;
}
.post-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--gray-400); margin-bottom: 12px; }
.post-meta span { display: inline-flex; align-items: center; gap: 5px; }
.post-card h3 { font-size: 19px; font-weight: 700; color: var(--navy-dark); line-height: 1.35; margin-bottom: 10px; }
.post-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.post-readmore { font-size: 14px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.post-card:hover .post-readmore { gap: 10px; }

/* featured post (big) */
.post-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); margin-bottom: 40px; background: #fff; text-decoration: none; color: inherit; transition: all .3s; }
.post-featured:hover { box-shadow: var(--shadow-lg); }
.post-featured .media-ph { aspect-ratio: auto; height: 100%; min-height: 320px; border: none; border-radius: 0; }
.post-featured img { height: 100%; min-height: 320px; object-fit: cover; }
.post-featured .pf-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.post-featured h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; color: var(--navy-dark); line-height: 1.2; margin: 14px 0 16px; }
.post-featured p { font-size: 15.5px; color: var(--gray-600); margin-bottom: 24px; }

/* blog post article */
.article { max-width: 760px; margin: 0 auto; padding: 60px 28px 0; }
.article .media-ph, .article > img { border-radius: var(--radius-lg); margin: 8px 0 36px; }
.article h2 { font-size: 28px; font-weight: 800; color: var(--navy-dark); margin: 40px 0 16px; }
.article h3 { font-size: 21px; font-weight: 700; color: var(--navy-dark); margin: 28px 0 12px; }
.article p { font-size: 17px; color: var(--gray-600); line-height: 1.85; margin-bottom: 20px; }
.article ul { margin: 0 0 22px 22px; color: var(--gray-600); font-size: 17px; line-height: 1.85; }
.article blockquote { border-left: 4px solid var(--accent); background: var(--gray-50); padding: 18px 24px; border-radius: 0 12px 12px 0; font-size: 18px; color: var(--navy-dark); font-style: italic; margin: 28px 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 32px; font-weight: 800; color: var(--navy-dark); margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--gray-600); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon { width: 48px; height: 48px; background: var(--navy-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy-dark); }
.contact-item-text span { font-size: 14px; color: var(--gray-600); }

.contact-form { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: 9px; font-size: 14px; font-family: inherit; color: var(--text); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--navy-dark); color: #fff; border: none; padding: 16px;
  border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all .2s;
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,107,228,0.35); }
.success-msg { display: none; background: #dcfce7; border: 1px solid #86efac; color: #166534; padding: 14px 20px; border-radius: 8px; margin-top: 16px; font-size: 14px; font-weight: 500; }

/* map placeholder */
.map-ph { aspect-ratio: 21/9; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative; overflow: hidden; border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 120% at 90% 10%,  rgba(74,132,245,0.32) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80%  at 10% 90%,  rgba(20,40,102,0.5)   0%, transparent 55%),
    radial-gradient(ellipse 50% 60%  at 50% 50%,  rgba(45,107,228,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0c1c4e 0%, #1a3480 38%, #1e3d96 68%, #142874 100%);
  padding: 72px 56px 64px; text-align: center; color: #fff;
  box-shadow: 0 32px 80px rgba(12,28,78,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(100,160,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.cta-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  display: block;
}
.cta-strip h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }
.cta-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 28px; position: relative;
}
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; position: relative;
}
.cta-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(255,255,255,0.58); font-weight: 500;
}
.cta-trust-item svg { color: #4ade80; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all .2s; }
.footer-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   CAMERA TYPE CARDS
   ============================================================ */
/* ===== SCROLL-DRIVEN COVER FLOW ===== */
.cards-wrapper { position: relative; }

.cards {
  --cover-size: 280px;
  list-style: none;
  white-space: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px calc(50% - var(--cover-size) / 2) 80px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cards::-webkit-scrollbar { display: none; }
.cards {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.cards li {
  display: inline-block;
  width: var(--cover-size);
  scroll-snap-align: center;
  vertical-align: top;
  white-space: normal;
}

.cards .cover { display: block; text-decoration: none; }

/* nav arrows */
.cf-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 30; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy-dark); transition: all .25s;
}
.cf-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 10px 28px rgba(45,107,228,0.4); }
.cf-prev { left: -6px; } .cf-next { right: -6px; }

/* Scroll-driven carousel — scale + fade (Chrome 115+, Edge, Safari TP) */
@supports (animation-timeline: view()) {
  .cards li {
    position: relative;
    view-timeline-name: --li-in-and-out-of-view;
    view-timeline-axis: inline;
  }
  .cards .cover {
    animation: card-focus linear both;
    animation-timeline: --li-in-and-out-of-view;
  }
}

@keyframes card-focus {
  0%   { transform: scale(0.76); opacity: 0.28; }
  35%  { transform: scale(0.84); opacity: 0.5;  }
  50%  { transform: scale(1.0);  opacity: 1.0;  }
  65%  { transform: scale(0.84); opacity: 0.5;  }
  100% { transform: scale(0.76); opacity: 0.28; }
}

.cam-card {
  position: relative;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 24px rgba(15,28,60,0.06);
}
.cam-card .cam-photo .media-ph { aspect-ratio: 4/3; border: none; border-radius: 0; border-bottom: 1px solid var(--gray-200); }
.cam-card .cam-photo img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 24px; border-bottom: 1px solid var(--gray-200); display: block; }
.cam-card-body { padding: 20px 18px 22px; text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; }
.cam-card h3 { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; width: 100%; }
.cam-card p { font-size: 12.5px; color: var(--gray-600); line-height: 1.6; flex: 1; width: 100%; }
.cam-card .go { color: var(--accent); font-weight: 700; font-size: 13px; margin-top: 14px; display: inline-flex; gap: 6px; justify-content: center; align-items: center; align-self: center; transition: gap .2s; }
.cam-card:hover .go { gap: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hero-home { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-text { align-items: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .media-ph, .post-featured img { min-height: 220px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cards { --cover-size: 280px; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }
  .nav-cta { display: none; }
  .ticker-label span:last-child { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 24px; }
  .hero-pill { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-strip { padding: 44px 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 20px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
  }
  .why-item::before { display: none; }
  .why-item::after  { display: none; }
  .why-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 13px;
    background: rgba(45,107,228,0.18);
    border-color: rgba(74,132,245,0.25);
  }
  .why-item h3 { font-size: 15px; margin-bottom: 4px; }
  .why-item p  { font-size: 13px; }
  .cards { --cover-size: 240px; }
  .cf-nav { width: 44px; height: 44px; }
  .cf-prev { left: 6px; } .cf-next { right: 6px; }
}

/* ============================================================
   NEW SECTIONS — Stats, How We Work, Testimonials, Brands,
                  WhatsApp Float, GSAP reveal states
   ============================================================ */

/* ── GSAP reveal: elements start hidden, JS animates them in ── */
.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ============================================================
   PREMIUM TRUST & SALES DESIGN SYSTEM
   ============================================================ */

/* ── STATS — Stat Icon ───────────────────────────────────── */
.stat-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(45,107,228,0.07);
  border: 1px solid rgba(45,107,228,0.14);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--accent);
  transition:
    background .38s cubic-bezier(0.16,1,0.3,1),
    box-shadow .38s ease,
    transform .38s cubic-bezier(0.34,1.56,0.64,1),
    border-color .38s ease;
}
.stat-block:hover .stat-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 28px rgba(45,107,228,0.38);
  transform: translateY(-4px) scale(1.08);
}

/* ── STATS — section border-bottom ──────────────────────── */
.stats-section {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ── Section header — center alignment max-width ─────────── */
.section-head.center .section-sub {
  max-width: 540px;
}

/* ── Section title — subtle accent line (opt-in) ─────────── */
.section-title-line {
  display: block;
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
  border-radius: 100px;
  margin: 14px auto 0;
}

/* ── TESTIMONIALS — quote mark ───────────────────────────── */
.tm-quote-mark {
  font-size: 72px;
  font-weight: 900;
  color: rgba(45,107,228,0.14);
  line-height: 0.7;
  margin-bottom: 2px;
  font-family: Georgia, 'Times New Roman', serif;
  user-select: none;
  letter-spacing: -2px;
}

/* ── TESTIMONIALS — stars ────────────────────────────────── */
.tm-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.tm-stars svg { color: #f59e0b; }

/* ── TESTIMONIALS — text ─────────────────────────────────── */
.tm-text {
  font-size: 15px;
  line-height: 1.78;
  color: var(--gray-600);
  flex: 1;
  font-style: italic;
}
.tm-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.tm-role { font-size: 12.5px; color: var(--gray-400); margin-top: 2px; }

/* ── TESTIMONIALS — swiper pagination ───────────────────── */
.tm-swiper { padding-bottom: 56px !important; margin-top: 0; }

/* ── CAMERA CARDS — hover polish ────────────────────────── */
.cam-card {
  border-radius: 18px;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform .38s cubic-bezier(0.16,1,0.3,1),
              box-shadow .38s cubic-bezier(0.16,1,0.3,1),
              border-color .38s cubic-bezier(0.16,1,0.3,1);
}
.cam-card:hover {
  box-shadow: 0 20px 56px rgba(26,47,90,0.14);
  border-color: transparent;
  transform: translateY(-4px);
}

/* 1 ── Icon spring on hover */
.cam-photo img {
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  mix-blend-mode: multiply;
}
.cam-card:hover .cam-photo img {
  transform: translateY(-6px) scale(1.07);
}

/* 2 ── Shimmer sweep on hover */
.cam-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}
.cam-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.6) 50%, transparent 75%);
  transform: translateX(-120%);
  pointer-events: none;
}
.cam-card:hover .cam-photo::after {
  animation: cam-shimmer 0.65s ease-out forwards;
}
@keyframes cam-shimmer {
  from { transform: translateX(-120%); }
  to   { transform: translateX(120%); }
}

/* 3 ── Active center card in cover flow */
.cam-card.is-active {
  box-shadow: 0 22px 60px rgba(45,107,228,0.22) !important;
}

/* 4 ── Fix 3D hit-testing: only center card is pointer-interactive */
.cards li { pointer-events: none; }
.cam-card.is-active,
.cam-card.is-active * { pointer-events: auto; }

/* ── SERVICES — section spacing ─────────────────────────── */
.grid-4 { gap: 18px; }

/* ── HOW WE WORK — step connector polish ─────────────────── */
.steps-grid { margin-top: 48px; }
.steps-grid::before {
  opacity: 0.25;
  top: 34px;
}
.step-item { padding: 0 16px; }

/* ── FAQ — refinements ───────────────────────────────────── */
.faq-list { max-width: 800px; }
.faq-item {
  border-radius: 18px;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.faq-item.is-open {
  box-shadow: 0 6px 24px rgba(45,107,228,0.1);
}
.faq-q { padding: 20px 22px; }
.faq-q-text { font-size: 15px; color: var(--navy); font-weight: 600; }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.faq-icon svg { stroke: var(--gray-500); }

/* ── BLOG — post body refinement ─────────────────────────── */
.post-body { padding: 22px 22px 26px; }
.post-card h3 { font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.post-thumb img { aspect-ratio: 16/9; object-fit: cover; width: 100%; transition: transform .5s cubic-bezier(0.16,1,0.3,1); }
.post-card:hover .post-thumb img { transform: scale(1.04); }

/* ── WHY US — section refined ────────────────────────────── */
.why-item h3 { font-size: 15.5px; font-weight: 700; }
.why-item p { font-size: 13px; }

/* ── RESPONSIVE additions ────────────────────────────────── */
@media (max-width: 600px) {
  .cta-strip { padding: 52px 24px 44px; border-radius: 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline-dark { width: 100%; justify-content: center; }
  .cta-trust { gap: 12px 16px; }
  .tm-quote-mark { font-size: 56px; }
  .stat-icon { width: 46px; height: 46px; }
}
.gsap-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.gsap-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ── STATS (Apple / Samsung premium style) ──────────────── */
.stats-section {
  background: #fff;
  padding: 2px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  display: none;
}
.stats-section .container {
  position: relative;
  z-index: 1;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-block {
  flex: 1;
  text-align: center;
  padding: 8px 20px;
  cursor: default;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  isolation: isolate;
}

.stat-block::before {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.stat-block:hover {
  transform: translateY(-6px);
}
.stat-block:hover .stat-counter {
  -webkit-text-fill-color: inherit;
}
.stat-figure {
  font-size: 62px;
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  transition: filter 0.35s ease;
}
.stat-counter { display: inline-block; }
.stat-plus {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  background: linear-gradient(135deg, #2d6be4 0%, #6ba3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-figure--accent {
  letter-spacing: -3px;
  background: linear-gradient(135deg, var(--accent, #2d6be4) 0%, var(--accent-light, #6ba3ff) 60%, #a5c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-desc {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(10,15,40,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.35s ease, letter-spacing 0.35s ease;
}
.stat-divider {
  width: 1px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,15,40,0.12) 30%, rgba(10,15,40,0.12) 70%, transparent 100%);
}
@media (max-width: 900px) {
  .stat-figure { font-size: 46px; letter-spacing: -2px; }
  .stat-plus { font-size: 24px; }
  .stat-block { padding: 8px 12px; }
}
@media (max-width: 600px) {
  .stats-row { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; padding: 20px 12px; }
  .stat-divider { display: none; }
  .stat-figure { font-size: 44px; letter-spacing: -2px; }
  .stat-desc { font-size: 10px; }
  .brand-item img { height: 69px; max-width: 170px; }
}

/* ── HOW WE WORK ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
  opacity: 0.35;
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(45,107,228,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(45,107,228,0.06), 0 8px 28px rgba(45,107,228,0.14);
  transition: all .38s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.step-item:hover .step-circle {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-color: transparent;
  box-shadow: 0 0 0 8px rgba(45,107,228,0.1), 0 12px 36px rgba(45,107,228,0.38);
  transform: translateY(-3px);
}
.step-num {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: -webkit-text-fill-color .2s ease;
}
.step-item:hover .step-num {
  -webkit-text-fill-color: #fff;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color .25s;
}
.step-item:hover .step-title { color: var(--accent); }
.step-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.68;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── TESTIMONIALS (Swiper) ──────────────────────────────────── */
.tm-swiper {
  padding-bottom: 52px !important;
  margin-top: 48px;
}
.tm-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 22px;
  padding: 32px 30px 28px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.06);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .38s ease, transform .38s cubic-bezier(0.16,1,0.3,1), border-color .38s ease;
  position: relative;
}
.tm-card:hover {
  box-shadow: 0 20px 56px rgba(45,107,228,0.13);
  transform: translateY(-6px);
  border-color: rgba(45,107,228,0.14);
}
.tm-stars {
  display: flex;
  gap: 3px;
}
.tm-stars svg { color: #f59e0b; }
.tm-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  flex: 1;
}
.tm-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tm-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.tm-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.tm-role {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}
.swiper-pagination-bullet {
  background: var(--accent) !important;
  opacity: 0.3 !important;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

/* ── BRANDS — flow brush gradient bg ───────────────────────── */
.brands-section {
  position: relative;
  overflow: hidden;
  background: #07112e;
  padding: 48px 0;
}
.brands-section::before,
.brands-section::after,
.brands-section .brands-brush-1,
.brands-section .brands-brush-2 {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.brands-section::before {
  width: 520px; height: 420px;
  background: radial-gradient(ellipse, rgba(45,107,228,0.55) 0%, transparent 70%);
  top: -100px; left: -80px;
  animation: brush-drift-1 9s ease-in-out infinite alternate;
}
.brands-section::after {
  width: 440px; height: 360px;
  background: radial-gradient(ellipse, rgba(99,60,220,0.4) 0%, transparent 70%);
  bottom: -80px; right: 5%;
  animation: brush-drift-2 11s ease-in-out infinite alternate;
}
@keyframes brush-drift-1 {
  0%   { transform: translate(0, 0)    scale(1);    opacity: 0.7; }
  50%  { transform: translate(80px, 40px) scale(1.1); opacity: 0.9; }
  100% { transform: translate(20px, -30px) scale(0.95); opacity: 0.75; }
}
@keyframes brush-drift-2 {
  0%   { transform: translate(0, 0)    scale(1);    opacity: 0.6; }
  50%  { transform: translate(-60px, 30px) scale(1.15); opacity: 0.85; }
  100% { transform: translate(-20px, -40px) scale(0.9); opacity: 0.7; }
}

/* third brush — center teal accent */
.brands-section .container {
  position: relative;
}
.brands-section .container::before {
  content: '';
  position: absolute;
  width: 380px; height: 280px;
  background: radial-gradient(ellipse, rgba(20,180,180,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
  animation: brush-drift-3 13s ease-in-out infinite alternate;
}
@keyframes brush-drift-3 {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 0.5; }
  50%  { transform: translate(-40%, -60%) scale(1.2);  opacity: 0.8; }
  100% { transform: translate(-60%, -45%) scale(0.85); opacity: 0.4; }
}

.brands-section .section-title { color: #fff; }
.brands-section .section-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.15);
}

/* ── BRANDS (Swiper auto-scroll) ───────────────────────────── */
.brands-track {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}
.brands-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}
.brands-inner:hover { animation-play-state: paused; }
@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  flex-shrink: 0;
}
.brand-item span {
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.brand-item:hover span { color: var(--accent); }
.brand-item img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: opacity(0.85);
  transition: filter 0.35s ease, transform 0.3s ease;
  display: block;
}
.brand-item:hover img {
  filter: opacity(1);
  transform: scale(1.08);
}
.logo-on-light {
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  height: 40px;
  filter: opacity(0.9);
}
.brand-item:hover .logo-on-light {
  filter: opacity(1);
}

/* ── WHATSAPP / VIBER FLOATING BUTTON ───────────────────────── */
.float-contact {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.float-btn.whatsapp { background: #25d366; }
.float-btn.viber    { background: #7360f2; }
.float-btn.phone    { background: var(--accent); }
.float-btn svg { width: 26px; height: 26px; fill: white; }
.float-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.float-btn:hover .float-tooltip { opacity: 1; }
@media (max-width: 480px) {
  .float-contact { bottom: 20px; right: 16px; }
  .float-btn { width: 48px; height: 48px; }
}


/* ── BACK TO TOP ─────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 36px;
  left: 32px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #1a3ab8 0%, #2d6be4 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(45,107,228,0.4);
  z-index: 8000;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#back-to-top:hover {
  box-shadow: 0 8px 28px rgba(45,107,228,0.55);
  transform: translateY(-3px);
}
#back-to-top svg { display: block; }

/* ── STICKY CTA BAR ──────────────────────────────────────────── */
#sticky-cta {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9500;
  background: linear-gradient(135deg, #0a1640 0%, #0e1e55 100%);
  border-bottom: 1px solid rgba(74,132,245,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
#sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta-text strong { color: #fff; }
.sticky-cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.sticky-cta-phone:hover { opacity: 1; }
.sticky-cta-btn {
  background: linear-gradient(135deg, #2d6be4, #4a84f5);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(45,107,228,0.4);
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.sticky-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }
@media (max-width: 600px) {
  .sticky-cta-phone { display: none; }
  .sticky-cta-text { font-size: 12px; }
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.is-open {
  border-color: rgba(45,107,228,0.4);
  background: #fff;
  box-shadow: 0 4px 20px rgba(45,107,228,0.1);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-q-text {
  font-size: 15.5px;
  font-weight: 600;
  color: #0d1526;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.faq-item.is-open .faq-q-text { color: #2d6be4; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-icon svg { display: block; stroke: #6b7280; transition: stroke 0.3s ease; }
.faq-item.is-open .faq-icon {
  background: #2d6be4;
  border-color: #2d6be4;
  transform: rotate(45deg);
}
.faq-item.is-open .faq-icon svg { stroke: #fff; }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}
.faq-body-inner {
  overflow: hidden;
}
.faq-a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .faq-q-text { font-size: 14px; }
  .faq-q { padding: 18px 16px; }
  .faq-a { padding: 0 16px 18px; }
}

/* ── LEAD POPUP ──────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,8,22,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Card — split left/right */
.popup-box {
  display: flex;
  width: 100%;
  max-width: 780px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
  transform: translateY(32px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.popup-overlay.is-open .popup-box {
  transform: translateY(0) scale(1);
}

/* LEFT — brand panel */
.popup-panel {
  flex: 0 0 290px;
  background: linear-gradient(160deg, #0d1f4a 0%, #142866 50%, #1a3380 100%);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.popup-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(74,132,245,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.popup-panel::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(45,107,228,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.popup-panel-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.popup-panel-h {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.popup-panel-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 32px;
}
.popup-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0; margin: 0;
}
.popup-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.popup-trust li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: #4a84f5;
}

/* RIGHT — form panel */
.popup-form-wrap {
  flex: 1;
  background: #fff;
  padding: 40px 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}
.popup-close:hover { background: #e5e7eb; color: #111827; }
.popup-tag {
  display: inline-block;
  background: #eff6ff;
  color: #2d6be4;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.popup-form-h {
  font-size: 22px;
  font-weight: 800;
  color: #0d1526;
  margin-bottom: 4px;
  line-height: 1.25;
}
.popup-form-sub {
  font-size: 13.5px;
  color: #9ca3af;
  margin-bottom: 24px;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.popup-field { display: flex; flex-direction: column; gap: 5px; }
.popup-field label {
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.popup-field input {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: #111827;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.popup-field input:focus {
  border-color: #2d6be4;
  box-shadow: 0 0 0 3px rgba(45,107,228,0.1);
  background: #fff;
}
.popup-field input::placeholder { color: #c4c9d4; }
.popup-submit {
  margin-top: 6px;
  background: linear-gradient(135deg, #1a3ab8 0%, #2d6be4 50%, #4a84f5 100%);
  background-size: 200% auto;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(45,107,228,0.38);
  transition: background-position 0.4s ease, transform 0.15s, box-shadow 0.15s;
}
.popup-submit:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45,107,228,0.45);
}
.popup-submit:active { transform: translateY(0); }
.popup-never {
  margin-top: 14px;
  font-size: 12px;
  color: #c4c9d4;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  text-align: center;
  width: 100%;
  transition: color 0.18s;
}
.popup-never:hover { color: #6b7280; }

/* Success state */
.popup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 0;
  flex: 1;
}
.popup-success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #2d6be4, #4a84f5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(45,107,228,0.4);
}
.popup-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0d1526;
  margin-bottom: 8px;
}
.popup-success p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .popup-box { flex-direction: column; max-width: 420px; border-radius: 20px; }
  .popup-panel { flex: none; padding: 28px 24px; }
  .popup-panel-h { font-size: 18px; }
  .popup-panel-logo { margin-bottom: 16px; }
  .popup-trust { display: none; }
  .popup-panel-sub { margin-bottom: 0; }
  .popup-form-wrap { padding: 28px 24px 24px; }
  .popup-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE NAV — REDESIGN
   ============================================================ */

/* Hamburger → X */
.hamburger span {
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.22s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Clip nav to rounded bottom corners when menu is open */
.site-nav:has(.mobile-menu.open) {
  clip-path: inset(0 0 0 0 round 0 0 20px 20px);
}

/* Menu container — smooth grid reveal */
.mobile-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.46s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { grid-template-rows: 1fr; }

.mobile-menu-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
  border-radius: 0 0 20px 20px;
}

/* Link cards */
.mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  margin: 3px 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: background 0.22s ease, opacity 0.32s ease,
              transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.mob-link:first-child { margin-top: 10px; }
.mob-link:hover { background: rgba(255,255,255,0.07); }

/* Stagger */
.mobile-menu.open .mob-link              { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mob-link:nth-child(1) { transition-delay: 0.07s; }
.mobile-menu.open .mob-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open .mob-link:nth-child(3) { transition-delay: 0.17s; }
.mobile-menu.open .mob-link:nth-child(4) { transition-delay: 0.22s; }
.mobile-menu.open .mob-link:nth-child(5) { transition-delay: 0.27s; }
.mobile-menu.open .mob-link:nth-child(6) { transition-delay: 0.32s; }

/* Icon box */
.mob-link-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.mob-link:hover .mob-link-icon {
  background: rgba(45,107,228,0.32);
  border-color: rgba(74,132,245,0.4);
  color: #a5c4ff;
}

/* Title + subtitle */
.mob-link-body { flex: 1; min-width: 0; }
.mob-link-body strong {
  display: block;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
}
.mob-link-body small {
  display: block;
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}

/* Arrow */
.mob-link-arr {
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  transition: color 0.22s, transform 0.22s;
}
.mob-link:hover .mob-link-arr {
  color: var(--accent-light);
  transform: translateX(3px);
}

/* Divider */
.mob-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 10px 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.34s;
}
.mobile-menu.open .mob-divider { opacity: 1; }

/* CTA button */
.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 14px 20px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 6px 22px rgba(45,107,228,0.38);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.36s,
              transform 0.38s cubic-bezier(0.16,1,0.3,1) 0.36s,
              box-shadow 0.22s ease;
}
.mobile-menu.open .mob-cta-btn { opacity: 1; transform: translateY(0); }
.mob-cta-btn:hover {
  box-shadow: 0 10px 30px rgba(45,107,228,0.52);
  transform: translateY(-2px);
}

/* Backdrop blur */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(4, 7, 20, 0.45);
  backdrop-filter: blur(7px) saturate(120%);
  -webkit-backdrop-filter: blur(7px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.nav-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   RESPONSIVE AUDIT — Supplemental fixes
   Mobile-first corrections identified in audit
   ============================================================ */

/* ── 1. Blog grid — fix minmax(330px) overflow on narrow phones ── */
@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── 2. Post featured body — reduce padding when stacked ── */
@media (max-width: 980px) {
  .post-featured .pf-body { padding: 32px 28px 36px; }
}
@media (max-width: 480px) {
  .post-featured .pf-body { padding: 24px 20px 28px; }
}

/* ── 3. Contact form — reduce padding on mobile ── */
@media (max-width: 600px) {
  .contact-form { padding: 28px 20px; }
  .contact-info h2 { font-size: 26px; }
}

/* ── 4. Article — reduce wasted top padding on mobile ── */
@media (max-width: 600px) {
  .article { padding: 32px 20px 0; }
  .article h2 { font-size: 22px; margin: 28px 0 12px; }
  .article h3 { font-size: 18px; }
  .article p, .article ul { font-size: 15px; }
  .article blockquote { font-size: 15px; padding: 14px 18px; }
}

/* ── 5. Page banner — tighten bottom on mobile ── */
@media (max-width: 600px) {
  .page-banner { padding: 130px 0 52px; }
  .page-banner p { font-size: 15px; }
}

/* ── 6. Map overlay photo — hide on narrow screens ── */
@media (max-width: 768px) {
  .map-overlay-photo { display: none; }
}

/* ── 7. Grid-3 — force single column on very narrow ── */
@media (max-width: 400px) {
  .grid-3 { grid-template-columns: 1fr; }
  .card { padding: 24px 18px; }
}

/* ── 8. Hero home — reduce top padding on mobile (nav+ticker=116px) ── */
@media (max-width: 600px) {
  .hero-home { padding: 130px 0 52px; }
}

/* ── 9. Section padding — intermediate step at 768px ── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ── 10. Tablet breakpoint 768px–1024px ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .hero h1 { font-size: clamp(32px, 4.5vw, 56px); }
  .contact-grid { gap: 36px; }
  .cta-strip { padding: 56px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { gap: 40px; }
  .cards { --cover-size: 260px; }
}

/* ── 11. Touch targets — minimum 44px height on interactive elements ── */
@media (max-width: 768px) {
  .btn-primary,
  .btn-outline,
  .btn-outline-dark { min-height: 48px; padding: 13px 26px; }
  .form-submit { min-height: 52px; }
  .faq-q { min-height: 56px; }
  .mob-cta-btn { min-height: 52px; }
}

/* ── 12. Typography — cap hero h1 on very small screens ── */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-text p { font-size: 15px; }
  .hero-eyebrow { font-size: 11px; }
}

/* ── 13. Footer — link columns stack cleanly ── */
@media (max-width: 480px) {
  .footer-brand p { max-width: 100%; }
  .site-footer { padding: 48px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ── 14. CTA strip — Georgian text wraps cleanly ── */
@media (max-width: 480px) {
  .cta-strip h2 { font-size: 24px; }
  .cta-strip p { font-size: 14px; }
}

/* ── 15. Prevent any horizontal scroll globally ── */
html, body { max-width: 100%; overflow-x: hidden; }

/* ── 16. Why Us grid — explicit columns, no auto-fit glitch ──
   auto-fit minmax(220px) creates a 3-col layout at 752–990px
   which leaves the 4th card alone on a new row or clipped right.
   Explicit repeat(4,1fr) → repeat(2,1fr) → 1fr solves it. ── */
.bg-dark .grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .bg-dark .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .bg-dark .grid-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── 17. Why Us card mobile — fix icon+h3+p flex overflow ──
   .why-item children (icon, h3, p) are direct siblings with no
   wrapper div. display:flex puts all 3 in one row → p overflows.
   Switch to 2-col grid: [48px icon] [1fr text column].
   h3 and p stack in column 2, icon spans both rows. ── */
@media (max-width: 600px) {
  .why-item {
    display: grid !important;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: start;
  }
  .why-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 44px;
    height: 44px;
  }
  .why-item h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    min-width: 0;
    overflow-wrap: break-word;
  }
  .why-item p {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    min-width: 0;
    overflow-wrap: break-word;
  }
}

