/*
 * Kukan AI — Main Stylesheet
 * All CSS extracted from HTML design source (kukan-ai-website.html)
 * plus additions for hero video, lightboxes, app demo, work pages, and inner pages.
 *
 * CSS custom properties (:root variables) are injected by the Customizer
 * via wp_head() in functions.php. The :root block below serves as a
 * fallback in case the Customizer hasn't been configured yet.
 */

/* ---- FALLBACK VARIABLES (overridden by Customizer wp_head output) ---- */
:root {
  --bg: var(--bg);
  --surface: #f9f9f7;
  --surface2: #f0f0ee;
  --border: #e8e8e8;
  --border-strong: #d0d0d0;
  --text: #111111;
  --text-muted: #777777;
  --text-mid: #999999;
  --yellow: var(--yellow);
  --yellow-dim: rgba(245,196,0,0.10);
  --purple: rgba(130,80,255,0.08);
  --purple-bright: #8250FF;
  --font-head: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }
body { background: #ffffff; color: #111111; font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; width: 100%; }
.site-content { flex: 1; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  display: flex; align-items: center; justify-content: center;
}
.header-logo { justify-self: start; }
.header-nav { justify-self: center; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 40px; }
.nav-logo { font-family: var(--font-head); font-weight: 500; font-size: 18px; color: #111111; letter-spacing: -0.02em; text-decoration: none; }
.nav-logo img { width: auto; display: block; }
.kukan-logo {
  height: 34px;
  width: auto;
  display: block;
}
.kukan-logo--footer { height: 63px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: #777777; text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: #111111; }
.nav-links a.nav-active { color: #111111; }
.nav-cta { background: #111111; color: #ffffff; border: none; border-radius: 999px; padding: 10px 22px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.2s; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; letter-spacing: 0.02em; }
.nav-cta:hover { opacity: 0.75; background: #111111; color: #ffffff; }
.nav-customer-login { color: #777777; text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.nav-customer-login:hover { color: #111111; }

/* ---- HAMBURGER BUTTON ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 101;
  touch-action: manipulation;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU DRAWER ---- */
#mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 8px 24px 28px;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}
#mobile-menu.is-open { transform: translateY(0); }
.mobile-menu-links { list-style: none; margin: 0; padding: 0; }
.mobile-menu-links a {
  display: block;
  padding: 15px 0;
  color: #111111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
  transition: color 0.2s;
}
.mobile-menu-links a:hover { color: #555555; }
.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.mobile-menu-login {
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.mobile-menu-login:hover { opacity: 0.6; }

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---- LANGUAGE SWITCHER (WeGlot) ---- */
.lang-switcher { display: flex; align-items: center; }
.lang-switcher a,
.lang-switcher .wg-li a { color: #777777 !important; font-size: 13px !important; font-weight: 500 !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; text-decoration: none !important; padding: 2px 4px !important; transition: color 0.2s ease !important; vertical-align: middle !important; line-height: 1 !important; }
.lang-switcher .wg-li-current a { color: #aaaaaa !important; font-weight: 500 !important; font-size: 13px !important; vertical-align: middle !important; }
.lang-switcher .wg-li:first-child::after { color: #cccccc !important; vertical-align: middle !important; line-height: 1 !important; }
.lang-switcher .wg-li { vertical-align: middle !important; line-height: 1 !important; }
#mobile-menu .mobile-lang-switcher .wg-li-current a { color: #111111 !important; }
#mobile-menu .mobile-lang-switcher .wg-li a { color: #777777 !important; }

/* ---- SCROLL CHEVRON ---- */
#scroll-chevron {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.2s ease;
}
#scroll-chevron:hover {
  background: rgba(0,0,0,0.10);
  border-color: #cccccc;
  color: #111111;
  transform: translateY(2px);
}
#scroll-chevron.hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  #scroll-chevron {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .header-actions .lang-switcher,
  .header-actions .nav-customer-login { display: none; }
  #mobile-menu { display: block; }
  .mobile-menu-overlay { display: block; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: 36px !important; }
  .trust-logos { gap: 12px 0; }
  .trust-logo { flex: 0 0 50%; display: flex; justify-content: center; align-items: center; }
  .flow-diagram { display: flex !important; flex-direction: column; align-items: stretch !important; width: 100%; gap: 32px; }
  .flow-arrow { display: none; }
  .flow-node { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 16px; width: 100%; max-width: 100% !important; margin: 0 !important; text-align: left; border-right: none !important; }
  .flow-icon { margin: 0 !important; text-align: left; font-size: 32px !important; width: 48px !important; flex-shrink: 0; }
}
/* Landscape iPhones (769px–926px) — hamburger only, no layout changes */
@media (min-width: 769px) and (max-width: 926px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .header-actions .lang-switcher,
  .header-actions .nav-customer-login { display: none; }
  #mobile-menu { display: block; }
  .mobile-menu-overlay { display: block; }
}

/* ---- SECTIONS ---- */
section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.full-bleed { max-width: none; }

/* ---- HERO ---- */
.hero { padding-top: 160px; padding-bottom: 80px; text-align: left; position: relative; overflow: hidden; }

/* Hero background video */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* No dark overlay — white background design */
.hero-overlay {
  display: none;
}
.hero:has(.hero-video)::before {
  display: none;
}

/* Hero content sits above video */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: #aaaaaa; margin-bottom: 14px; }
.hero h1 {
  font-family: var(--font-head); font-weight: 400; font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.06; letter-spacing: -0.025em; color: #111111; margin-bottom: 24px;
  max-width: 900px;
}
.hero h1 em { font-style: italic; color: #555555; }
.hero-sub { font-size: 18px; color: #666666; max-width: 720px; margin: 0 0 40px; line-height: 1.65; font-weight: 300; }
.hero-sub strong { color: #333333; font-weight: 500; }
.hero-ctas { display: flex; gap: 12px; justify-content: flex-start; margin-bottom: 52px; flex-wrap: wrap; }
.btn-primary { background: #111111; color: #ffffff; border: none; border-radius: 999px; padding: 12px 28px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.2s; text-decoration: none; display: inline-flex; align-items: center; letter-spacing: 0.02em; min-width: 160px; text-align: center; justify-content: center; }
.btn-primary:hover { opacity: 0.75; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #111111; border: 1px solid #cccccc; border-radius: 999px; padding: 12px 28px; font-family: var(--font-body); font-size: 13px; font-weight: 400; cursor: pointer; transition: all 0.2s ease; text-decoration: none; text-transform: none; letter-spacing: 0; min-width: 160px; text-align: center; justify-content: center; }
.btn-outline:hover { border-color: #999999; color: #111111; }
.hubspot-btn { background: #111111; color: #ffffff; border: none; border-radius: 999px; padding: 12px 28px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.2s; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; letter-spacing: 0.02em; min-width: 160px; text-align: center; }
.hubspot-btn:hover { opacity: 0.75; transform: none; }
.btn-demo { background: #111111; color: #ffffff; border: none; border-radius: 999px; padding: 12px 28px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; letter-spacing: 0.02em; min-width: 160px; text-align: center; transition: opacity 0.2s; }
.btn-demo:hover { opacity: 0.75; transform: none; box-shadow: none; }

/* Trust strip */
.trust-strip { display: flex; align-items: center; gap: 28px; padding: 28px 0; border-top: 1px solid #e8e8e8; position: relative; z-index: 2; }
.trust-strip > span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #bbbbbb; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: flex-start; margin-top: 12px; margin-bottom: 16px; }
.trust-logo { font-size: 11px; font-weight: 500; color: #999999; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; background: none; border: none; padding: 0; transition: color 0.2s; }
.trust-logo:hover { color: #111111; }

/* Hero filmstrip */
.filmstrip-wrap { overflow: hidden; position: relative; }
.filmstrip-wrap::before, .filmstrip-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 200px; z-index: 2; pointer-events: none;
}
.filmstrip-wrap::before { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.filmstrip-wrap::after { right: 0; background: linear-gradient(to left, #ffffff, transparent); }
.filmstrip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 48px; cursor: grab; }
.filmstrip::-webkit-scrollbar { display: none; }
.film-card {
  scroll-snap-align: start; flex: 0 0 320px; height: 200px; border-radius: 10px; overflow: hidden;
  position: relative; background: #f0f0ee;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  cursor: pointer;
}
.filmstrip-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; position: static; top: auto; right: auto; }
.filmstrip-prev, .filmstrip-next { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.06); border: 1px solid #e0e0e0; color: #111111; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.filmstrip-prev:hover, .filmstrip-next:hover { background: rgba(0,0,0,0.10); }
.film-card-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; background: #f0f0ee; background-size: cover; background-position: center; }
.film-label { position: absolute; bottom: 10px; left: 12px; font-size: 11px; color: #111111; font-weight: 600; letter-spacing: 0.04em; opacity: 1; z-index: 3; }
.film-cat { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.85); border: 1px solid #e8e8e8; border-radius: 100px; padding: 3px 10px; font-size: 10px; color: #666666; opacity: 1; z-index: 3; }

/* Film card — video thumbnail + play button */
.film-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.film-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  line-height: 0;
  transition: transform 0.2s;
}
.film-card:hover .film-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.film-card:focus { outline: 2px solid #111111; outline-offset: 2px; }

/* Faux 3D room thumbnails */
.room-thumb { width: 100%; height: 100%; position: relative; overflow: hidden; }
.room-r1 { background: linear-gradient(135deg, #e8e4dc 0%, #d8d0c0 50%, #ccc4b0 100%); }
.room-r2 { background: linear-gradient(135deg, #dce4ec 0%, #c8d4e0 50%, #b8c8d8 100%); }
.room-r3 { background: linear-gradient(135deg, #ece0e0 0%, #dcc8c8 50%, #ccb8b8 100%); }
.room-r4 { background: linear-gradient(135deg, #e0ece0 0%, #c8dcc8 50%, #b8ccb8 100%); }
.room-r5 { background: linear-gradient(135deg, #ece8e0 0%, #dcd4c0 50%, #ccc0a8 100%); }
.room-r6 { background: linear-gradient(135deg, #e0e0ec 0%, #c8c8dc 50%, #b8b8cc 100%); }
.room-floor { position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: rgba(0,0,0,0.03); border-top: 1px solid rgba(0,0,0,0.06); }
.room-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.10); }
.room-wall-left { position: absolute; left: 0; top: 0; bottom: 0; width: 28%; background: rgba(0,0,0,0.03); border-right: 1px solid rgba(0,0,0,0.06); }
.room-wall-back { position: absolute; left: 0; right: 0; top: 0; height: 52%; background: rgba(0,0,0,0.02); border-bottom: 1px solid rgba(0,0,0,0.05); }
.room-corner { position: absolute; left: 28%; top: 52%; width: 1px; bottom: 0; background: rgba(0,0,0,0.07); }
.room-chat { position: absolute; bottom: 28px; right: 14px; background: rgba(245,196,0,0.12); border: 1px solid rgba(245,196,0,0.3); border-radius: 8px; padding: 5px 8px; font-size: 9px; color: #8a6f00; max-width: 100px; line-height: 1.3; }

/* ---- LOGOS BADGE ---- */
.logo-badges { margin-top: 48px; }
.logos-label { text-align: center; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #aaaaaa; margin-bottom: 20px; }

/* ---- SECTION LABELS ---- */
.section-eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: #aaaaaa; margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-head); font-weight: 400; font-size: clamp(44px, 5.5vw, 72px); line-height: 1.08; letter-spacing: -0.025em; color: #111111; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: #666666; max-width: 520px; line-height: 1.65; font-weight: 300; }

/* ---- HOW IT WORKS ---- */
.how-wrap { text-align: left; }
#how-it-works { padding-top: 160px; padding-bottom: 120px; }
.flow-diagram { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 48px 0 0; width: 100%; }
.flow-node { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 0 48px; border-right: 1px solid #e8e8e8; }
.flow-node:last-child { border-right: none; }
.flow-icon { font-family: var(--font-head); font-style: italic; font-size: 52px; font-weight: 400; color: #e0e0e0; line-height: 1; margin-bottom: 8px; width: auto; height: auto; border-radius: 0; background: none; border: none; display: block; }
.flow-title { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: #111111; }
.flow-desc { font-size: 13px; color: #666666; line-height: 1.5; text-align: left; max-width: 160px; }
.flow-duration { display: block; font-size: 13px; color: #999999; text-align: left; margin-top: -4px; }
.how-wrap .section-sub { color: #666666; max-width: 760px; text-align: left; margin-left: 0; }
.use-cases-wrap .section-sub { color: #666666; max-width: 760px; text-align: left; margin-left: 0; }
.flow-arrow { display: none; }
.flow-arrow span { width: 1px; height: 6px; background: #cccccc; display: block; }
.flow-arrow svg { color: #cccccc; }

/* ---- FEATURES ---- */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill { background: #f0f0ee; border: 1px solid #e0e0e0; border-radius: 100px; padding: 5px 14px; font-size: 12px; color: #666666; }
.feature-block .section-sub { color: #666666; }
.feature-block p { color: #666666; }
.feature-block strong { color: #111111; font-weight: 600; }
.feature-visual { background: #f9f9f7; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; min-height: 300px; position: relative; }

/* Analytics mockup */
.analytics-mock { padding: 20px; }
.mock-topbar { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-title { font-size: 11px; color: #777777; margin-left: 4px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.mock-stat-row { display: flex; gap: 10px; margin-bottom: 16px; }
.mock-stat { flex: 1; background: #ffffff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 10px 12px; }
.mock-stat-label { font-size: 10px; color: #999999; margin-bottom: 4px; }
.mock-stat-val { font-family: var(--font-head); font-weight: 500; font-size: 20px; color: #111111; }
.mock-stat-delta { font-size: 10px; color: #4CAF50; margin-top: 2px; }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 12px; }
.mock-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(245,196,0,0.25); min-width: 0; }
.mock-bar.hi { background: var(--yellow); }
.mock-rooms { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.mock-room-row { display: flex; align-items: center; gap: 10px; font-size: 11px; }
.mock-room-name { color: #999999; width: 100px; flex-shrink: 0; }
.mock-room-bar-wrap { flex: 1; background: #f0f0ee; border-radius: 100px; height: 5px; }
.mock-room-bar { height: 100%; border-radius: 100px; background: var(--yellow); }
.mock-room-pct { color: #777777; width: 30px; text-align: right; }

/* AI Conversations feature card (Delta Campus) */
.ai-conv-card {
  background: #f9f9f7;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.ai-conv-photo-wrap {
  position: relative;
  overflow: hidden;
}
.ai-conv-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 40%);
  pointer-events: none;
}
.ai-conv-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.ai-conv-label {
  position: absolute;
  bottom: 6px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.ai-conv-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 4px;
  width: 100%;
  box-sizing: border-box;
}
.ai-conv-bubble {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  padding: 10px 14px;
}
.ai-conv-bubble--user {
  background: #111111;
  color: #ffffff;
  border-radius: 18px 18px 4px 18px;
  font-weight: 500;
  max-width: 88%;
  align-self: flex-end;
}
.ai-conv-bubble--bot {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e8e8e8;
  border-radius: 18px 18px 18px 4px;
  font-weight: 400;
  max-width: 92%;
  align-self: flex-start;
}
.ai-conv-bubble--bot strong { color: #111111; font-weight: 500; }
.ai-conv-input {
  background: #f0f0ee;
  border-top: 1px solid #e8e8e8;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
.ai-conv-placeholder {
  flex: 1;
  font-size: 13px;
  color: #aaaaaa;
  font-family: var(--font-body);
}
.ai-conv-send {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #111111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Chat mockup */
.chat-mock { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.chat-avatar.user { background: #f0f0ee; color: #777777; }
.chat-avatar.ai { background: rgba(245,196,0,0.12); color: #8a6f00; }
.chat-bubble { border-radius: 12px; padding: 10px 14px; font-size: 13px; line-height: 1.5; max-width: 240px; }
.chat-bubble.user { background: #f0f0ee; color: #666666; }
.chat-bubble.ai { background: rgba(245,196,0,0.08); border: 1px solid rgba(245,196,0,0.25); color: #333333; }
.chat-input-row { margin-top: 8px; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 100px; padding: 8px 16px; display: flex; align-items: center; gap: 8px; }
.chat-input-text { flex: 1; font-size: 12px; color: #999999; }
.chat-send { width: 24px; height: 24px; border-radius: 50%; background: #111111; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ---- Distribute Everywhere — Embed UI card ---- */
.kk-wrap { font-family: var(--font-body); background: #f9f9f7; border-radius: 14px; overflow: hidden; max-width: 560px; max-height: 360px; border: 1px solid #e8e8e8; }
.kk-topbar { background: #f0f0ee; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e8e8e8; }
.kk-topbar-left { display: flex; align-items: center; gap: 10px; }
.kk-avatar { width: 32px; height: 32px; border-radius: 6px; background: #ffffff; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; border: 1px solid #e8e8e8; }
.kk-avatar img { width: 26px; height: 26px; object-fit: contain; }
.kk-org { font-size: 13px; font-weight: 500; color: #111111; }
.kk-role { font-size: 11px; color: #999999; }
.kk-steps { display: flex; align-items: center; gap: 6px; font-size: 11px; }
.kk-step-done { color: #111111; display: flex; align-items: center; gap: 4px; }
.kk-step-line-done { width: 32px; height: 1px; background: #cccccc; }
.kk-step-active { width: 18px; height: 18px; border-radius: 50%; background: #111111; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #ffffff; }
.kk-step-review { color: #111111; font-size: 11px; font-weight: 500; }
.kk-body { padding: 16px; }
.kk-field-label { font-size: 11px; color: #999999; margin: 0 0 5px; letter-spacing: 0.04em; text-transform: uppercase; }
.kk-url-row { display: flex; gap: 8px; margin-bottom: 12px; align-items: center; }
.kk-url-box { flex: 1; background: #ffffff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 8px 12px; font-size: 12px; color: #333333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kk-btn { padding: 7px 12px; border-radius: 7px; font-size: 12px; font-weight: 500; border: 1px solid #e0e0e0; background: #ffffff; color: #666666; cursor: pointer; white-space: nowrap; font-family: var(--font-body); }
.kk-btn-yellow { background: #111111; color: #ffffff; border-color: #111111; font-weight: 600; }
.kk-embed-box { background: #ffffff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 10px 12px; font-size: 11px; color: #333333; font-family: monospace; word-break: break-all; line-height: 1.5; margin-bottom: 14px; }
.kk-attr { color: #8a6f00; }
.kk-divider { border: none; border-top: 1px solid #e8e8e8; margin: 14px 0; }
.kk-section-title { font-size: 13px; font-weight: 600; color: #111111; margin: 0 0 10px; font-family: var(--font-head); }
.kk-summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; }
.kk-summary-item { display: flex; flex-direction: column; gap: 3px; }
.kk-meta-label { font-size: 11px; color: #999999; margin: 0; }
.kk-meta-val { font-size: 13px; color: #333333; font-weight: 500; margin: 0; }
.kk-published { color: #4CAF50 !important; }
.kk-scenes { display: flex; flex-direction: column; gap: 6px; }
.kk-scene-row { display: flex; align-items: center; gap: 10px; background: #ffffff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 9px 12px; }
.kk-scene-num { font-size: 11px; color: #aaaaaa; width: 14px; }
.kk-scene-name { font-size: 13px; color: #555555; flex: 1; }
.kk-badge { font-size: 10px; font-weight: 600; background: #fffbe0; color: #8a6f00; border: 1px solid #e8d800; border-radius: 5px; padding: 2px 8px; }

/* Embed mockup */
.embed-mock { padding: 16px; }
.embed-browser { background: #f0f0ee; border: 1px solid #e8e8e8; border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.embed-browser-bar { background: #ffffff; padding: 8px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #e8e8e8; }
.embed-browser-dot { width: 8px; height: 8px; border-radius: 50%; background: #e0e0e0; }
.embed-browser-url { flex: 1; background: #f9f9f7; border-radius: 4px; padding: 3px 8px; font-size: 10px; color: #999999; }
.embed-browser-screen { height: 100px; background: var(--room-bg, linear-gradient(135deg, #e8e4dc, #d8d0c0)); display: flex; align-items: center; justify-content: center; }
.embed-phone-row { display: flex; gap: 10px; align-items: center; justify-content: center; margin-top: 4px; }
.embed-phone { background: #f0f0ee; border: 2px solid #e0e0e0; border-radius: 16px; width: 70px; height: 120px; overflow: hidden; display: flex; flex-direction: column; }
.embed-phone-notch { height: 12px; background: #e8e8e8; display: flex; justify-content: center; }
.embed-phone-screen { flex: 1; background: linear-gradient(135deg, #dce4ec, #c8d4e0); }
.embed-social { background: #ffffff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 10px; flex: 1; }
.embed-social-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.embed-social-avatar { width: 24px; height: 24px; border-radius: 50%; background: #f0f0ee; }
.embed-social-name { font-size: 11px; color: #777777; font-weight: 500; }
.embed-social-thumb { height: 60px; border-radius: 8px; background: linear-gradient(135deg, #e8e4dc, #d8d0c0); }

/* ---- USE CASES ---- */
.use-cases-wrap { text-align: left; padding-top: 40px; }
.use-cases-wrap .section-title { text-align: left; }
.use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 56px; }
.use-case-item { background: #f9f9f7; padding: 20px 24px; text-align: left; transition: all 0.25s ease; cursor: pointer; border-radius: 16px; border: 1px solid #e8e8e8; }
.use-case-item:hover { background: #f0f0ee; transform: translateY(-4px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.use-case-item.vertical-card--inactive { cursor: default; }
.use-case-item.vertical-card--inactive:hover { transform: none; box-shadow: none; background: #f9f9f7; }
.vertical-card-link { text-decoration: none; color: inherit; display: block; }
.use-case-icon { margin-bottom: 12px; display: block; line-height: 0; }
.use-case-title { font-family: var(--font-head); font-weight: 500; font-size: 14px; color: #111111; margin-bottom: 6px; }
.use-case-desc { font-size: 12px; color: #666666; line-height: 1.5; }

/* ---- WORK GRID (homepage — card style) ---- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.work-card { background: #ffffff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; display: block; }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.work-card-thumb { height: 160px; position: relative; overflow: hidden; transition: transform 0.3s ease; background-color: #f0f0ee; background-size: cover; background-position: center; }
.work-card:hover .work-card-thumb { transform: scale(1.04); }
.work-card-body { padding: 16px; }
.work-card-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #aaaaaa; margin-bottom: 6px; }
.work-card-name { font-family: var(--font-head); font-weight: 500; font-size: 16px; color: #111111; margin-bottom: 6px; }
.work-card-result { font-size: 12px; color: #777777; line-height: 1.5; }
.work-cta-row { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; margin-top: 12px; }
.work-cta-link { font-size: 13px; color: #777777; text-decoration: none; }
.work-cta-link--muted { color: #aaaaaa; }
.work-cta-link--yellow { color: #111111; }
.work-cta-link:hover { color: #111111; text-decoration: underline; }

/* ---- WORK GRID (page-work.php — full-bleed style) ---- */
.work-page-section { padding: 140px 48px 80px; max-width: 1200px; margin: 0 auto; }
.work-page-header { margin-bottom: 56px; }
.work-grid-fullbleed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-card-fullbleed {
  position: relative;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease;
}
.work-card-fullbleed:hover { transform: scale(1.02); border-color: #999999; }
.work-card-fullbleed:focus { outline: 2px solid #111111; outline-offset: 2px; }
.work-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.work-card-fullbleed:hover .work-card-bg { transform: scale(1.04); }
.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}
.work-card-title-overlay {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(10px, 1.25vw, 16px);
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
  max-width: 80%;
}
.work-card-cat-overlay {
  position: absolute; bottom: 20px; left: 24px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}

.work-empty { color: #999999; font-size: 15px; }

/* ---- TESTIMONIALS ---- */
.testi-wrap { text-align: left; }
.testi-wrap .section-title { text-align: left; }
.testi-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; margin-top: 48px; }
.testi-grid::-webkit-scrollbar { display: none; }
.testi-card { scroll-snap-align: start; flex: 0 0 400px; min-width: 0; background: #f9f9f7; border: 1px solid #e8e8e8; border-radius: 14px; padding: 28px 24px 20px; text-align: left; }
.testi-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; }
.testi-prev, .testi-next { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.06); border: 1px solid #e0e0e0; color: #111111; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.testi-prev:hover, .testi-next:hover { background: rgba(0,0,0,0.10); }
.testi-quote { font-family: var(--font-head); font-style: italic; font-size: 15px; color: #222222; line-height: 1.65; margin-bottom: 20px; font-weight: 400; }
.testi-quote em { font-style: normal; color: #111111; font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-name { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: #111111; letter-spacing: 0.06em; text-transform: uppercase; }
.testi-role { font-size: 11px; color: #999999; }

/* ---- PRICING ---- */
.pricing-wrap { text-align: left; }
.pricing-toggle { display: inline-flex; background: #f9f9f7; border: 1px solid #e8e8e8; border-radius: 100px; padding: 4px; gap: 4px; margin: 0; width: fit-content; }
.toggle-opt { padding: 7px 18px; border-radius: 100px; font-size: 13px; cursor: pointer; color: #999999; transition: all 0.2s; user-select: none; }
.toggle-opt.active { background: #e8e8e8; color: #111111; border: 1px solid #d0d0d0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; text-align: left; }
.pricing-card { background: #ffffff; border: 1px solid #e8e8e8; border-radius: 16px; padding: 28px 24px; position: relative; }
.pricing-card.featured { background: #111111; border-color: #111111; }
.pricing-featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #ffffff; color: #111111; font-size: 11px; font-weight: 700; font-family: var(--font-body); padding: 4px 14px; border-radius: 100px; white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #e0e0e0; }
.pricing-tier { font-family: var(--font-body); font-weight: 500; font-size: 11px; color: #aaaaaa; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-price { font-family: var(--font-head); font-weight: 400; font-size: 40px; color: #111111; line-height: 1; margin-bottom: 4px; }
.pricing-price .price-period { font-size: 16px; font-weight: 400; color: #999999; }
.pricing-card.featured .pricing-price { color: #ffffff; }
.pricing-card.featured .pricing-price .price-period { color: rgba(255,255,255,0.5); }
.pricing-size { font-size: 12px; color: #999999; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #e8e8e8; }
.pricing-card.featured .pricing-size { color: rgba(255,255,255,0.45); border-bottom-color: #333333; }
.annual-saving-note { color: #999999; font-size: 11px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; }
.pricing-features li { font-size: 13px; color: #666666; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.pricing-features li::before { content: '—'; color: #cccccc; flex-shrink: 0; font-weight: 400; }
.pricing-features li:first-child { color: #666666; font-weight: 400; }
.pricing-card.featured .pricing-features li { color: #ffffff; }
.pricing-card.featured .pricing-features li::before { color: #ffffff; }
.pricing-btn { width: 100%; padding: 11px; border-radius: 999px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; text-align: center; text-decoration: none; display: block; }
.pricing-btn.primary { background: #111111; color: #ffffff; border: none; }
.pricing-btn.outline { background: transparent; color: #666666; border: 1px solid #e0e0e0; }
.pricing-btn:hover { opacity: 0.75; }
.pricing-note { margin-top: 28px; font-size: 12px; color: #aaaaaa; }

/* Capture services callout */
.capture-callout { background: #f9f9f7; border: 1px solid #e8e8e8; border-radius: 14px; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; text-align: left; }
.capture-callout-text h4 { font-family: var(--font-head); font-weight: 500; font-size: 16px; color: #111111; margin-bottom: 6px; }
.capture-callout-text p { font-size: 13px; color: #777777; }
.capture-callout a { color: #111111; font-size: 13px; text-decoration: underline; white-space: nowrap; }
.capture-callout a:hover { opacity: 0.6; }
.capture-pricing-trigger { color: #111111; font-size: 13px; text-decoration: underline; white-space: nowrap; cursor: pointer; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 100%; margin: 0; }
.faq-title-wrap { text-align: left; margin-bottom: 56px; }

/* Level 1 — category rows */
.faq-category { border-bottom: 1px solid #e8e8e8; }
.faq-cat-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; cursor: pointer; user-select: none; }
.faq-cat-title { font-family: var(--font-head); font-weight: 400; font-size: 18px; color: #111111; }
.faq-cat-chevron { display: flex; align-items: center; flex-shrink: 0; color: #999999; transition: transform 0.3s ease, color 0.3s ease; }
.faq-category.open .faq-cat-chevron { transform: rotate(180deg); color: #111111; }
.faq-cat-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1); }
.faq-category.open .faq-cat-body { max-height: 4000px; }

/* Level 2 — question rows (inside category body) */
.faq-cat-body .faq-item { border-bottom: none; border-top: 1px solid #e8e8e8; padding: 20px 0; cursor: pointer; }
.faq-q { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: #111111; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-cat-body .faq-q { font-size: 14px; font-weight: 400; padding-left: 1.5rem; }
.faq-q .toggle { width: 24px; height: 24px; border-radius: 50%; background: #f0f0ee; border: 1px solid #e8e8e8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: #999999; transition: transform 0.3s; user-select: none; }
.faq-a { font-size: 14px; color: #666666; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s; padding-left: 1.5rem; }
.faq-a p { margin-bottom: 1em; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { max-height: 800px; margin-top: 14px; }
.faq-item.open .toggle { transform: rotate(45deg); color: #111111; }

/* ---- CTA BANNER ---- */
.cta-banner { text-align: center; position: relative; overflow: hidden; background: #ffffff; border-radius: 14px; max-width: 1104px; }
.cta-banner::before { display: none; }
.cta-banner-title { font-family: var(--font-head); font-weight: 400; font-size: clamp(40px, 5vw, 66px); line-height: 1.06; letter-spacing: -0.025em; color: #ffffff; margin-bottom: 12px; }
.cta-banner-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.cta-banner .btn-primary { background: #ffffff; color: #111111; border: none; }
.cta-banner .btn-demo { background: #ffffff; color: #111111; border: none; }
.cta-banner .btn-outline { border-color: #ffffff; color: #ffffff; }
.cta-banner .btn-outline:hover { background: #ffffff; color: #111111; }

/* ---- FOOTER ---- */
footer { padding: 0 0 40px; width: 100%; }
.footer-top { width: 100%; max-width: 1200px; margin: 0 auto 64px; padding: 0 48px; }
.footer-logo { font-family: var(--font-head); font-weight: 500; font-size: 20px; color: #111111; margin-bottom: 12px; }
.footer-logo img { height: 28px; width: auto; }
.footer-tagline { font-size: 13px; color: #777777; line-height: 1.6; max-width: 220px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 32px; height: 32px; border-radius: 8px; background: #f9f9f7; border: 1px solid #e8e8e8; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #666666; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.footer-social svg { fill: currentColor; }
.footer-social:hover { border-color: #cccccc; color: #111111; }
.footer-col-title { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #aaaaaa; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: #666666; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #111111; }
.footer-links li { font-size: 13px; color: #999999; }
.footer-supporter-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.supporter-chip { background: none; border: none; border-radius: 0; padding: 0; font-size: 11px; color: #aaaaaa; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-bottom { padding: 0 48px; max-width: 1200px; margin: 0 auto; }
.footer-bottom-text { font-size: 12px; color: #aaaaaa; }

/* ---- MOBILE FOOTER ---- */
#mobile-footer {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  padding: 32px 24px 24px;
  text-align: center;
  flex-direction: column;
  gap: 16px;
}
#mobile-footer .mf-section-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaaaaa;
  margin: 0 0 10px;
}
#mobile-footer .mf-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
#mobile-footer .mf-links a { font-size: 13px; color: #666666; text-decoration: none; }
#mobile-footer .mf-links a:hover { color: #111111; }
#mobile-footer .mf-social-row { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
#mobile-footer .mf-divider { border: none; border-top: 1px solid #e8e8e8; margin: 0; }
#mobile-footer .mf-logo-tagline { display: flex; align-items: center; text-align: left; }
#mobile-footer .mf-logo-col { width: 40%; display: flex; justify-content: flex-end; align-items: center; }
#mobile-footer .mf-logo-img { height: 32px; width: auto; display: block; }
#mobile-footer .mf-tagline-col { width: 60%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: 16px; }
#mobile-footer .mf-tagline { font-size: 12px; color: #aaaaaa; line-height: 1.6; margin: 0; }
#mobile-footer .mf-contact { font-size: 13px; color: #666666; line-height: 1.6; margin: 0; }
#mobile-footer .mf-contact a { color: #111111; text-decoration: underline; }
#mobile-footer .mf-supporter-logos { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: nowrap; }
#mobile-footer .mf-supporter-logos img { max-height: 36px; width: auto; opacity: 0.5; }
#mobile-footer .mf-copyright { font-size: 12px; color: #aaaaaa; margin: 0; padding-top: 24px; }

/* ---- DIVIDER ---- */
.section-divider { height: 1px; background: #e8e8e8; max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 48px; box-sizing: border-box; }

/* ---- CONTACT PAGE ---- */
.contact-page-section { padding: 140px 48px 80px; max-width: 1200px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-header .section-title { font-size: clamp(36px, 4vw, 52px); margin-bottom: 16px; }
.link-yellow { color: #111111; text-decoration: underline; }
.label-muted { color: #999999; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- APP DEMO SECTION ---- */
.app-demo {
  background: transparent;
  padding: 80px 48px;
  padding-bottom: 0;
  text-align: left;
  max-width: none;
}
.app-demo .section-title,
.app-demo .section-sub { margin-left: 0; margin-right: 0; }
.app-demo .section-eyebrow { color: #aaaaaa; }
.app-demo-wrapper {
  max-width: 1104px;
  margin: 48px auto 0;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  line-height: 0;
}
.app-demo-wrapper iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

/* ---- VIDEO LIGHTBOX ---- */
.lightbox,
.kukan-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active,
.kukan-lightbox.active { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  width: 100%;
  max-height: 85vh;
}
.lightbox-inner video {
  width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* Lightbox prev / next arrows */
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 1001;
  transition: background 0.2s;
  user-select: none;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

/* Lightbox image fallback */
.lightbox-image-fallback {
  display: none;
  width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/9;
}

/* Lightbox title */
.lightbox-title {
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* ---- CAPTURE PRICING LIGHTBOX ---- */
.capture-lightbox .capture-lightbox-inner {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 48px;
  max-width: 600px;
  width: 90vw;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.capture-lightbox .lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background: rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
  color: #666666;
}
.capture-pricing-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 28px;
  color: #111111;
  margin: 12px 0 12px;
  letter-spacing: -0.02em;
}
.capture-pricing-sub {
  font-size: 14px;
  color: #777777;
  margin-bottom: 28px;
  line-height: 1.65;
}
.capture-pricing-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.capture-pricing-table th, .capture-pricing-table td { padding: 5px 8px; text-align: left; border-bottom: 1px solid #e8e8e8; font-size: 14px; }
.capture-pricing-table th { color: #111111; font-weight: 600; }
.capture-pricing-table td { color: #333333; }
.capture-note { font-size: 12px; color: #aaaaaa; margin-top: 12px; }
.capture-pricing-note {
  font-size: 12px;
  color: #999999;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ---- ABOUT PAGE ---- */
.about-section { padding: 140px 48px 80px; max-width: 1200px; margin: 0 auto; }
.about-intro { margin-bottom: 64px; }
.about-body { font-size: 17px; color: #333333; line-height: 1.75; max-width: 720px; margin-top: 24px; font-weight: 300; }
.about-mission { margin-bottom: 0; }
.about-mission .section-eyebrow { font-size: clamp(28px,3vw,42px); color: #111111; text-transform: none; letter-spacing: -0.01em; font-weight: 400; font-family: var(--font-head); }
.about-mission-quote {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: #666666;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 800px;
  padding-left: 0;
  margin-top: 24px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.team-card {
  background: #f9f9f7;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}
.team-card:hover .team-card-image img { transform: scale(1.04); }
.team-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-card-role {
  color: #aaaaaa;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-card-name {
  color: #111111;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-head);
  margin: 0;
}
.team-card-linkedin {
  color: #777777;
  font-size: 13px;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s ease;
}
.team-card-linkedin:hover { color: #111111; }

.work-viewer { margin: 48px 0; border-radius: 4px; overflow: hidden; border: 1px solid #e8e8e8; }
.work-viewer iframe { display: block; width: 100%; }

/* ---- SINGLE WORK PAGE ---- */
.single-work-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.single-work-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.55) 100%);
}
.single-work-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.single-work-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-top: 12px;
}
@media(min-width:769px){.single-work-body { padding: 64px 48px; max-width: 1200px; margin: 0 auto; }}
.single-work-video-wrap { margin-bottom: 48px; border-radius: 4px; overflow: hidden; background: #f9f9f7; }
.single-work-video-wrap video { width: 100%; display: block; max-height: 600px; }
.single-work-desc { margin-bottom: 40px; }
.single-work-desc p { font-size: 17px; color: #666666; line-height: 1.7; }
.single-work-result { margin-bottom: 48px; }
.single-work-result p { font-size: 17px; color: #666666; line-height: 1.7; max-width: 640px; margin-top: 16px; }
.single-work-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.work-single-header { padding-top: 80px; padding-bottom: 32px; }
.work-single-header .section-eyebrow { display: block; margin-bottom: 12px; }
.work-single-title { font-family: var(--font-head); font-weight: 400; font-size: clamp(32px, 4vw, 56px); line-height: 1.1; letter-spacing: -0.02em; color: #111111; }
.work-single-embed { width: 100%; margin: 32px 0; }
@media(min-width:769px){.work-single-video { width: 100%; margin: 64px 0 32px; }}
.work-single-video video { width: 100%; border-radius: 4px; display: block; }
.work-single-nav { display: flex; justify-content: space-between; align-items: center; padding: 32px 0 64px; }
.btn-work-nav { display: inline-block; padding: 12px 28px; border: 1px solid #cccccc; color: #111111; border-radius: 999px; text-decoration: none; font-size: 13px; font-family: var(--font-body); font-weight: 400; transition: border-color 0.2s ease; }
.btn-work-nav:hover { border-color: #111111; }

/* ---- LEGAL PAGE ---- */
.legal-section { padding: 180px 48px 80px; max-width: 760px; margin: 0 auto; }
.legal-section:has(.imprint-layout) { max-width: 1200px; padding-left: 0; padding-right: 0; }
.legal-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.legal-content { font-size: 15px; color: #666666; line-height: 1.8; }
.legal-content h2, .legal-content h3, .legal-content h4 { font-family: var(--font-head); font-weight: 500; color: #111111; margin: 32px 0 12px; }
.legal-content ol > li::marker,
.legal-content ol > li > strong,
.legal-content ul > li > strong { color: #111111; }
.legal-content strong, .legal-content b { color: #111111; }
.legal-content p { margin-bottom: 16px; }
.legal-content a { color: #111111; text-decoration: underline; }
.legal-content a:hover { opacity: 0.6; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }

/* ---- IMPRINT TWO-COLUMN LAYOUT ---- */
.imprint-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.imprint-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.imprint-made-in-berlin {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.6;
  filter: brightness(0);
}
@media (max-width: 768px) {
  .imprint-layout { grid-template-columns: 1fr; padding: 0 24px; }
  .imprint-right { display: none; }
  footer#about { display: none; }
  #mobile-footer { display: flex; }
  /* Footer third column — supporters + get in touch side by side */
  .footer-top > div:nth-child(3) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .footer-top > div:nth-child(3) > .footer-col-title {
    grid-column: 1 / -1;
  }
  .footer-top > div:nth-child(3) > .footer-supporter-logos {
    grid-column: 1;
  }
  .footer-top > div:nth-child(3) > div:last-child {
    grid-column: 2;
    margin-top: 0 !important;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  section { padding: 80px 24px; }
  .hero { padding-top: 80px; padding-bottom: 60px; padding-left: 24px; padding-right: 24px; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .feature-block.reverse { direction: ltr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid-fullbleed { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { flex: 0 0 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-three-col { flex-direction: column !important; align-items: center !important; gap: 40px !important; }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .work-page-section { padding: 120px 24px 60px; }
  .about-section { padding: 120px 24px 60px; }
  .legal-section { padding: 120px 24px 60px; }
  .contact-page-section { padding: 120px 24px 60px; }
  .single-work-body { padding: 48px 24px; }
  .app-demo { padding: 60px 24px; }
  .capture-callout { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid-fullbleed { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .app-demo-wrapper iframe { height: 85vh; }
  .capture-lightbox .capture-lightbox-inner { padding: 28px 20px; }
  .trust-logos { gap: 6px 0 !important; }
  .trust-logo { flex: 0 0 50%; display: flex; justify-content: center; align-items: center; }
}

/* ===================== SUPPORTER LOGOS ===================== */
/* On white background — logos render naturally, no inversion */
.trust-logo img,
.supporter-chip img,
.footer-supporter-logos img {
  filter: none;
  opacity: 0.6;
  width: auto;
  vertical-align: middle;
}
/* Hero "Backed by" logos */
.trust-logo img {
  height: 42px;
  opacity: 0.55;
}
.trust-logos .trust-logo:nth-child(2) img,
.trust-logos .trust-logo:nth-child(4) img {
  height: 28px;
}
/* Footer supporter logos */
.supporter-chip img,
.footer-supporter-logos img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
}
.footer-supporter-logos .supporter-chip:nth-child(4) img {
  height: 36px;
}


/* ===================== VERTICAL LANDING PAGE ===================== */

/* ---- SHARED OUTLINE BUTTON ---- */
.vl-btn-outline {
  display: inline-block;
  background: transparent;
  color: #111111;
  border: 1px solid #cccccc;
  border-radius: 2px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
  min-height: 48px;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vl-btn-outline:hover {
  border-color: #111111;
  color: #111111;
}

/* ---- HERO ---- */
.vl-hero {
  padding: 120px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.vl-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 28px;
  white-space: nowrap;
}
.vl-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vertical-hero-desc {
  font-size: 25.5px;
  color: #666666;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 24px;
}
.vl-hero-headline {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(51px, 5.7vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #111111;
}
.vl-hero-sub {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0.85em;
}
.vl-hero-sub:last-child {
  margin-bottom: 0;
}
.vl-hero-cta-row {
  margin-top: 32px;
  text-align: center;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.vl-chevron {
  display: none;
  text-align: center;
  margin-top: 18px;
  color: #cccccc;
  animation: vl-bounce 2.2s ease-in-out infinite;
}
@keyframes vl-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ---- VIDEO (padded to match hero) ---- */
.vl-video-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  line-height: 0;
  background: transparent;
}
.vl-video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0;
}

/* ---- SECTION TITLE (centered, heading only) ---- */
.vl-section-title-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 24px;
  text-align: left;
}
.vl-section-heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(23px, 2.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111111;
  text-align: center;
  white-space: nowrap;
}

/* ---- VALUE PROPS ---- */
.vl-vp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 16px;
}
.vl-vp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vp-card {
  perspective: 1000px;
  cursor: pointer;
  height: 190px;
}
.vp-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}
.vp-card:hover .vp-card-inner {
  transform: rotateY(180deg);
}
.vp-card-front,
.vp-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.vp-card-front {
  background: #f9f9f7;
  border: 1px solid #e8e8e8;
}
.vp-card-back {
  background: #f0f0ee;
  border: 1px solid #e0e0e0;
  transform: rotateY(180deg);
  align-items: flex-start;
}
.vp-card-front::before,
.vp-card-back::before {
  display: none;
}
.vp-card-icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-card-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 20px;
  color: #111111;
  line-height: 1.25;
  text-align: center;
  margin: 0;
}
.vp-card-body {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* ---- SEE IT IN ACTION ---- */
.vl-mid-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3px 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.vl-mid-cta-text {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
}

/* ---- HOW IT WORKS ---- */
.vl-hiw-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 20px;
  text-align: center;
}

.vl-hiw-heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(23px, 2.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111111;
  margin-bottom: 28px;
}
.vl-hiw-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.vl-hiw-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: #e0e0e0;
  pointer-events: none;
}
.vl-hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.vl-hiw-step-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.vl-hiw-step-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 20px;
  color: #111111;
  margin-bottom: 8px;
}
.vl-hiw-step-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.65;
  padding: 0 10px;
}

/* Testimonial section */
.vl-testi-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.vl-testi-card {
  max-width: 740px;
  width: 100%;
  flex: unset !important;
  min-width: unset !important;
  text-align: center;
}
.vl-testi-card .testi-author { justify-content: center; }
.vl-testi-section .section-eyebrow {
  font-family: var(--font-head);
  font-size: clamp(23px, 2.5vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #111111;
  line-height: 1.1;
}
.vl-testi-card .testi-quote { font-size: 17px; color: #333333; line-height: 1.6; }
.vl-testi-card .testi-name { font-size: 17px; }
.vl-testi-card .testi-role { font-size: 14px; }

/* ---- PRICING TEASER ---- */
.vl-pricing-teaser {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 48px 80px;
  text-align: center;
}
.vl-pricing-line {
  font-size: 16px;
  color: #555555;
  font-weight: 400;
}
.vl-pricing-link {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vl-pricing-link:hover { opacity: 0.6; }

/* ---- CLOSING CTA ---- */
.vl-closing { background: #ffffff; padding-top: 120px; }
.vl-closing-inner { background: #111111; border-radius: 20px; padding: 80px 48px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.vl-closing .vl-closing-inner { background: #111111; border-radius: 20px; padding: 80px 0; }
.vl-closing .vl-closing-headline { color: #ffffff; }
.vl-closing .vl-closing-line1 { color: #ffffff; }
.vl-closing .vl-closing-line2 { color: #ffffff; }
.vl-closing .btn-demo { background: #ffffff; color: #111111; border: none; }
.vl-closing .btn-outline { border-color: #ffffff; color: #ffffff; }
.vl-closing .btn-outline:hover { background: #ffffff; color: #111111; }
.vl-closing-headline {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(23px, 2.5vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #111111;
  display: flex;
  flex-direction: column;
}
.vl-closing-line1 { display: block; margin-bottom: 10px; }
.vl-closing-line2 { display: block; }
.vl-btn-primary {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  text-align: center;
  min-width: 240px;
  min-height: 48px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.vl-btn-primary:hover {
  opacity: 0.75;
}

/* ---- RESPONSIVE: value props breakpoints ---- */
@media (max-width: 1023px) {
  .vl-vp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:767px){.vp-card{height:190px;perspective:1000px;cursor:pointer}.vp-card-inner{transform-style:preserve-3d;transition:transform 0.5s}.vp-card.is-flipped .vp-card-inner{transform:rotateY(180deg)}.vp-card-front,.vp-card-back{position:absolute;width:100%;height:100%;backface-visibility:hidden;-webkit-backface-visibility:hidden}.vp-card-back{transform:rotateY(180deg)}.vl-vp-grid{grid-template-columns:1fr}.vl-vp-wrap{padding:0 24px}}

/* ---- RESPONSIVE: tablet ---- */
@media (max-width: 900px) {
  .vl-hero { padding: 100px 24px 0; }
  .vl-video-wrap { padding: 0 24px; }
  .vl-section-title-wrap { padding: 40px 24px 20px; white-space: normal; }
  .vl-section-heading { white-space: normal; }
  .vl-vp-wrap { padding: 0 24px 16px; }
  .vl-mid-cta { padding: 2px 24px 32px; }
  .vl-hiw-section { padding: 56px 24px; }
  .vl-testi-section { padding: 0 24px 56px; }
  .vl-hiw-flow { grid-template-columns: 1fr; gap: 32px; }
  .vl-hiw-flow::before { top: 24px; left: 24px; right: auto; width: 1px; height: calc(100% - 24px); }
  .vl-hiw-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; padding: 0 0 24px; }
  .vl-hiw-step-icon { width: 48px; height: 48px; min-width: 48px; margin-bottom: 0; flex-shrink: 0; }
  .vl-hiw-step:last-child { padding-bottom: 0; }
  .vl-pricing-teaser { padding: 0 24px 56px; }
  .vl-closing-inner { padding: 56px 24px; }
  .vl-closing-headline { white-space: normal; }
  .vl-chevron { margin-top: 16px; }
}

/* ---- RESPONSIVE: mobile ---- */
@media (max-width: 600px) {
  .vl-hero { padding: 88px 16px 0; }
  .vl-hero-cta-row .vl-btn-outline { display: inline-flex; width: 100%; white-space: normal; }
  .vl-video-wrap { padding: 0 16px; }
  .vl-section-title-wrap { padding: 32px 16px 14px; }
  .vl-vp-wrap { padding: 0 16px 14px; }
  .vl-mid-cta { padding: 2px 16px 24px; }
  .vl-hiw-section { padding: 48px 16px; }
  .vl-testi-section { padding: 0 16px 48px; }
  .vl-pricing-teaser { padding: 0 16px 48px; }
  .vl-btn-primary { width: 100%; min-width: unset; }
  .vl-closing-inner { padding: 48px 16px; }
}

/* ============================================================
   SEO CONTENT BLOCKS — vertical landing pages
   ============================================================ */
.vl-seo-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 48px 96px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}
.vl-seo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.vl-seo-block-heading {
    font-size: clamp(23px, 2.5vw, 38px);
    font-weight: 400;
    font-family: var(--font-head);
    color: #111111;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
.vl-seo-card {
    background: #f9f9f7;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 28px 24px;
    width: 100%;
    max-width: 100%;
}
.vl-seo-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 16px;
}
.vl-seo-card p:last-child {
    margin-bottom: 0;
}
.vl-seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vl-seo-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    padding-left: 20px;
    position: relative;
}
.vl-seo-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #aaaaaa;
}
.vl-seo-list li strong {
    color: #111111;
}
.vl-seo-card .faq-q {
    font-weight: 500;
    font-size: 15px;
    padding-left: 0;
}
.vl-seo-card a {
    color: #111111;
    text-decoration: underline;
}
.vl-seo-card a:hover {
    opacity: 0.6;
}
.vl-seo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.vl-seo-table th {
    text-align: left;
    padding: 10px 12px;
    color: #111111;
    border-bottom: 1px solid #d0d0d0;
    font-weight: 600;
}
.vl-seo-table td {
    padding: 10px 12px;
    color: #666666;
    border-bottom: 1px solid #e8e8e8;
}
.vl-seo-table td:first-child {
    color: #333333;
}
@media (max-width: 768px) {
    .vl-seo-wrap {
        padding: 60px 24px;
        gap: 32px;
    }
}
#mobile-footer .mf-logo-tagline{margin-bottom:20px}
#mobile-footer .mf-contact{margin-bottom:20px}
#mobile-footer .mf-links{margin-bottom:20px}
.nav-inner{display:grid;grid-template-columns:1fr auto 1fr;width:100%;max-width:1200px;margin:0 auto;padding:0 48px}
@media(max-width:768px){nav{padding:0!important}.nav-inner{display:flex!important;grid-template-columns:unset!important;padding:0 24px!important;justify-content:space-between!important;align-items:center!important;width:100%!important;box-sizing:border-box!important}.header-nav{display:none!important}.nav-links{display:none!important}.header-actions{display:flex!important;gap:0!important;align-items:center!important}.nav-hamburger{display:flex!important;visibility:visible!important;opacity:1!important}.nav-logo img{height:28px!important;width:auto!important}}
@media(max-width:768px){.testi-wrap{overflow:hidden;max-width:100vw}}
.flow-mobile{display:none}
.hero-inner{max-width:1200px;margin:0 auto;padding:0 48px}
@media(max-width:768px){.hero-inner{padding:0!important}}
@media(max-width:768px){.site-content{overflow-x:hidden}}
@media(max-width:768px){.section-title{font-size:36px!important}}
@media(max-width:768px){.flow-diagram{display:none!important}.flow-mobile{display:block;margin-top:32px}.flow-mobile-step{display:flex;flex-direction:row;align-items:flex-start;gap:16px;margin-bottom:32px}.flow-mobile-num{font-family:'Playfair Display',serif;font-size:48px;font-style:italic;color:#e0e0e0;flex-shrink:0;width:52px;line-height:1}.flow-mobile-text{flex:1}.flow-mobile-text strong{display:block;font-size:15px;font-weight:600;margin-bottom:4px;font-family:'Playfair Display',serif;color:#111111}.flow-mobile-text p{font-size:15px;margin:0 0 4px 0;color:#777777;font-family:'DM Sans',sans-serif}.flow-mobile-text span{font-size:13px;color:#777777}}
@media(max-width:768px){.hero-embed-section{padding:0 24px!important;box-sizing:border-box}.hero-embed-nav{gap:12px!important}.hero-embed-btn{font-size:10px!important}}
@media(max-width:768px){.hero-embed-section{padding:0!important}}
@media(max-width:768px){.hero-embed-btn{font-size:10px!important;letter-spacing:0.06em!important;text-transform:uppercase!important;background:transparent!important;border:1px solid #111111!important;border-radius:999px!important;padding:6px 8px!important;cursor:pointer!important;color:#111111!important;font-family:var(--font-body)!important;text-align:center!important;width:100%!important}.hero-embed-btn.active{background:#111111!important;color:#ffffff!important;border-color:#111111!important}}
@media(max-width:768px){.testi-grid{gap:32px!important}.testi-card{min-width:calc(100% - 0px)!important;width:100%!important;scroll-snap-align:start!important}.testi-grid{scroll-snap-type:x mandatory!important}.testi-quote{font-style:italic!important;color:#111111!important}.testi-section-title,.testi-wrap .section-title{margin-bottom:8px!important}}
@media(max-width:768px){.pricing-toggle{padding:2px!important}.toggle-opt{font-size:11px!important;padding:4px 10px!important}}
@media(max-width:768px){.faq-title-wrap{margin-bottom:10px!important}}
@media(max-width:768px){.cta-banner{margin-left:24px!important;margin-right:24px!important;width:auto!important}}
@media(max-width:768px){.cta-banner .btn-demo,.cta-banner .btn-outline{padding:12px 12px!important;font-size:13px!important;min-width:0!important}}
@media(max-width:768px){.hero{padding-top:144px!important}}
@media(max-width:768px){.hero{padding-bottom:60px!important}.how-wrap{padding-top:60px!important;padding-bottom:60px!important}.use-cases-wrap{padding-top:60px!important;padding-bottom:60px!important}.testi-wrap{padding-top:60px!important;padding-bottom:60px!important}.pricing-wrap{padding-top:60px!important;padding-bottom:60px!important}.faq-wrap{padding-top:60px!important;padding-bottom:60px!important}}
@media(max-width:768px){.use-cases-grid{margin-top:28px!important}}
@media(max-width:768px){.app-demo-wrapper{margin-top:24px!important}}
@media(max-width:768px){.testi-grid{margin-top:24px!important}}
@media(max-width:768px){.faq-wrap{padding-top:0!important}}
@media(max-width:768px){.faq-cat-header{padding-top:11px!important}}
@media(max-width:768px){.vl-hero-headline{font-size:36px!important}.vertical-hero-desc{font-size:18px!important}.vl-hero .section-eyebrow,.vertical-hero .section-eyebrow{font-size:11px!important}}
@media(max-width:768px){.vl-hero{padding-top:144px!important}}
@media(max-width:768px){.single-work-body{padding:24px!important}.work-single-video{margin-top:16px!important;width:100%}}
@media(max-width:768px){.vl-section-title-wrap{padding-bottom:28px!important}}
@media(max-width:768px){.vp-card:hover .vp-card-inner{transform:none}.vp-card.is-flipped .vp-card-inner{transform:rotateY(180deg)!important}}
@media(max-width:768px){.vl-closing-inner{margin-left:24px!important;margin-right:24px!important;width:auto!important;box-sizing:border-box!important;padding:40px 24px!important}.vl-closing-inner .btn-demo,.vl-closing-inner .btn-outline{min-width:0!important;padding:12px 16px!important}}
@media(max-width:768px){.vl-section-title-wrap{padding-top:60px!important}.vl-vp-wrap{padding-top:20px!important}.vl-hiw-section{padding-top:60px!important;padding-bottom:60px!important}.vl-testi-section{padding-top:60px!important;padding-bottom:60px!important}.vl-closing{padding-top:60px!important}}
.about-intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:0}
@media(max-width:768px){.about-intro-grid{grid-template-columns:1fr!important;gap:40px!important}}
@media(max-width:768px){.about-intro-col-left{padding-right:0!important}.about-intro-col-right{padding-left:0!important;padding-top:0!important}}
@media(max-width:768px){.about-body-grid{grid-template-columns:1fr!important;gap:40px!important}}
@media(max-width:768px){.about-body-left{padding-right:0!important;border-right:none!important}.about-body-right{padding-left:0!important}}
@media(max-width:768px){.about-team{padding-top:30px!important}}
@media(max-width:768px){.about-body-right blockquote{font-style:normal!important}}
@media(max-width:768px){.btn-work-nav{font-size:11px!important;padding:10px 16px!important;white-space:nowrap!important}}
.hero-embed-btn{font-size:11px;letter-spacing:0.08em;text-transform:uppercase;background:transparent;border:none;border-bottom:none;padding:4px 0;cursor:pointer;color:#999999;font-family:var(--font-body)}.hero-embed-btn.active{border-bottom:none;color:#111111}
.mobile-br{display:none}
@media(max-width:768px){.mobile-br{display:block}}
.single-work-desc{padding-top:24px}
.single-work-desc h3{margin-top:18px;font-size:17px;font-weight:600;font-family:var(--font-body)}
.single-work-desc ul{padding-left:24px;margin-bottom:18px;margin-top:12px}
.single-work-desc ul li{margin-bottom:6px;font-size:17px;color:rgb(102,102,102)}
.single-work-desc p{margin-bottom:16px}
.single-work-desc a{color:#111111!important;text-decoration:underline!important}