/* ════════════════════════════════════════════════════════
   GreenByte — Design System v2
   ════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg: #0b1020;
  --bg2: #0d1428;
  --surface: #0f1724;
  --surface2: #141e2e;
  --text: #e6eef6;
  --muted: #8fa5be;
  --accent: #34d399;
  --accent2: #059669;
  --nav-bg: rgba(8,12,18,0.75);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(52,211,153,0.15);
  --card-shadow: rgba(2,6,23,0.55);
  --monitor-screen: linear-gradient(160deg,#0d1a2a 0%,#0b1420 100%);
  --monitor-border: rgba(255,255,255,0.1);
  --monitor-base: linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03));
  --monitor-foot: linear-gradient(90deg,rgba(255,255,255,0.04),rgba(255,255,255,0.09),rgba(255,255,255,0.04));
  --cursor-x: 50vw;
  --cursor-y: 32vh;
  --ambient-dot: rgba(52,211,153,.16);
  --ambient-ring: rgba(52,211,153,.10);
  --ambient-glow: rgba(52,211,153,.18);
}

/* ── Light theme ── */
html.light {
  --bg: #f5f8fc;
  --bg2: #ecf1f7;
  --surface: #ffffff;
  --surface2: #f8fafb;
  --text: #0a0f1a;
  --muted: #445566;
  --accent: #059669;
  --accent2: #047857;
  --nav-bg: rgba(245,248,252,0.92);
  --border: rgba(0,0,0,0.12);
  --border2: rgba(5,150,105,0.24);
  --card-shadow: rgba(0,0,0,0.1);
  /* Monitors look like real monitors in light mode */
  --monitor-screen: linear-gradient(160deg,#1a2940 0%,#0f1e35 100%);
  --monitor-border: rgba(0,0,0,0.25);
  --monitor-base: linear-gradient(180deg,#c8d0da,#b8c0ca);
  --monitor-foot: linear-gradient(90deg,#b0b8c4,#c8d0da,#b0b8c4);
  --ambient-dot: rgba(5,150,105,.10);
  --ambient-ring: rgba(5,150,105,.06);
  --ambient-glow: rgba(5,150,105,.10);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: Montserrat, Inter, 'Segoe UI', system-ui, Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(52,211,153,.08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(6,182,164,.07), transparent 26%),
    radial-gradient(circle at 78% 82%, rgba(52,211,153,.06), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background .35s, color .3s;
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
}
body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background:
    radial-gradient(320px circle at var(--cursor-x) var(--cursor-y), var(--ambient-glow), transparent 62%),
    radial-gradient(circle at 18% 72%, rgba(52,211,153,.09), transparent 24%),
    radial-gradient(circle at 92% 56%, rgba(6,182,164,.08), transparent 22%);
  opacity: .9;
  transition: opacity .3s;
}
body::after {
  background-image:
    radial-gradient(circle, var(--ambient-dot) 0 1.2px, transparent 1.3px),
    radial-gradient(circle, var(--ambient-ring) 0 1px, transparent 1.2px);
  background-size: 44px 44px, 92px 92px;
  background-position: 0 0, 22px 18px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 88%, transparent 100%);
  opacity: .58;
}
body > * {
  position: relative;
  z-index: 1;
}
html.light body {
  background:
    radial-gradient(circle at 10% 16%, rgba(5,150,105,.16), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(6,182,164,.13), transparent 28%),
    radial-gradient(circle at 76% 82%, rgba(5,150,105,.12), transparent 32%),
    var(--bg);
}
html.light body::before { opacity: .45; }
html.light body::after { opacity: .32; }
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── Typography scale ── */
h1 { font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: 34px; font-weight: 800; letter-spacing: -.015em; }
h3 { font-size: 26px; font-weight: 800; letter-spacing: -.01em; }
h4 { font-size: 18px; font-weight: 700; }

.section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.015em;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
}

/* ════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-link { display: flex; align-items: center; gap: 0; }
.logo { width: 38px; height: 38px; border-radius: 9px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }
.brand-text h1 { font-size: 17px; font-weight: 800; margin: 0; letter-spacing: -.01em; }
.brand-text p { font-size: 11px; color: var(--muted); margin: 0; font-weight: 500; }

/* Nav */
.site-nav { margin-left: auto; display: flex; gap: 4px; align-items: center; }
.site-nav a {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  position: relative;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  bottom: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.2,.9,.2,1);
}
.site-nav a:hover { color: var(--text); background: rgba(52,211,153,.06); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--text); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; flex-shrink: 0; }
.lang-toggle {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.lang-btn {
  padding: 7px 11px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  transition: background .18s, color .18s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.lang-btn.active { background: var(--accent); color: #fff; }
.lang-btn:not(.active):hover { background: rgba(52,211,153,.1); color: var(--text); }

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s, border-color .2s, color .2s, box-shadow .2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .theme-toggle:hover {
    transform: rotate(15deg) scale(1.05);
    border-color: var(--accent);
    color: var(--accent);
  }
}
.theme-toggle:active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52,211,153,.22);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 210;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.burger:hover { border-color: var(--accent); }
.burger.open { border-color: var(--accent); background: rgba(52,211,153,.08); }
.burger-line {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .22s, background .2s;
  transform-origin: center;
  margin: 0 auto;
}
.burger.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.burger.open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* Mobile nav drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: scale(.96) translateY(12px);
  transition: opacity .35s cubic-bezier(.4,0,.2,1), visibility .35s, transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
.mobile-nav a {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  padding: 14px 40px;
  border-radius: 14px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: background .2s, color .2s, transform .2s, opacity .2s;
  opacity: 0;
  transform: translateY(10px);
}
.mobile-nav.open a {
  animation: navLinkIn .42s cubic-bezier(.2,.9,.2,1) forwards;
}
.mobile-nav.open a:nth-child(2) { animation-delay: .06s; }
.mobile-nav.open a:nth-child(3) { animation-delay: .1s; }
.mobile-nav.open a:nth-child(4) { animation-delay: .14s; }
.mobile-nav.open a:nth-child(5) { animation-delay: .18s; }
.mobile-nav.open .mobile-nav-email { animation-delay: .24s; }
.mobile-nav.open .mobile-nav-tools { animation-delay: .28s; }
.mobile-nav.open .mobile-nav-email,
.mobile-nav.open .mobile-nav-tools {
  animation: navLinkIn .42s cubic-bezier(.2,.9,.2,1) forwards;
}
@keyframes navLinkIn {
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(52,211,153,.1); color: var(--accent); }
.mobile-nav-email {
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid rgba(52,211,153,.22);
  background: rgba(52,211,153,.06);
  opacity: 0;
  transform: translateY(10px);
}
.mobile-nav-email a {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  padding: 0 !important;
  max-width: none !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.mobile-nav-email a:hover { background: none !important; opacity: .85 !important; }
.mobile-nav-tools {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
  transition: color .2s, transform .32s cubic-bezier(.4,0,.2,1);
  z-index: 210;
}
.mobile-nav-close:hover { color: var(--text); }
@media (hover: hover) and (pointer: fine) {
  .mobile-nav-close:hover { transform: rotate(90deg); }
}
.mobile-nav.closing {
  opacity: 0;
  visibility: hidden;
  transform: scale(.97) translateY(8px);
  transition-duration: .28s;
}

/* ════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .2s, filter .18s, background .2s;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 6px 24px rgba(52,211,153,.22);
}
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(52,211,153,.32); filter: brightness(1.05); }
.btn.ghost {
  border: 1.5px solid var(--border2);
  color: var(--text);
  background: transparent;
}
.btn.ghost:hover { background: rgba(52,211,153,.06); transform: translateY(-2px); border-color: var(--accent); }
.btn.secondary {
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
}
.btn.secondary:hover { background: var(--surface2); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 80px;
  gap: 64px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.hero-inner { max-width: 500px; flex-shrink: 0; }
.hero h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}

.hero h2 .highlight {
  background: linear-gradient(90deg, var(--accent), #06b6a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 12px;
  margin-top: 24px;
  width: fit-content;
  max-width: 100%;
}
.stat {
  background: var(--surface);
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  min-width: 96px;
  box-shadow: 0 3px 14px var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.stat:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--card-shadow); }
.stat-value { font-size: 30px; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 5px; font-weight: 600; }
.ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; align-items: center; }

/* PC monitors */
.mockup { display: flex; align-items: flex-end; justify-content: center; flex-shrink: 0; }
.pc-mockup-wrap { position: relative; display: flex; align-items: flex-end; }
.monitor { display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 16px 48px rgba(0,0,0,.5)); }
.monitor-main { z-index: 2; position: relative; }
.monitor-secondary { position: relative; z-index: 1; transform: translateX(-32px) translateY(16px) scale(0.86); transform-origin: bottom right; opacity: .88; }

.monitor-screen {
  border-radius: 8px 8px 0 0;
  border: 2px solid var(--monitor-border);
  overflow: hidden;
  background: var(--monitor-screen);
  position: relative;
}
.monitor-main .monitor-screen { width: 290px; height: 184px; }
.monitor-secondary .monitor-screen { width: 230px; height: 146px; }

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  padding-top: 24px;
  color: rgba(52,211,153,.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.screen-placeholder.small { gap: 5px; font-size: 10px; }

.monitor-base {
  height: 16px;
  background: var(--monitor-base);
  border-left: 1px solid var(--monitor-border);
  border-right: 1px solid var(--monitor-border);
}
.monitor-main .monitor-base { width: 72px; }
.monitor-secondary .monitor-base { width: 62px; }

.monitor-foot {
  height: 7px;
  border-radius: 0 0 5px 5px;
  background: var(--monitor-foot);
}
.monitor-main .monitor-foot { width: 128px; }
.monitor-secondary .monitor-foot { width: 96px; }

html.light .monitor-main .monitor-screen {
  box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 8px 32px rgba(0,0,0,.2);
}

/* ════════════════════════════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════════════════════════════ */
.features {
  padding: 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.problem, .solution {
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface), var(--surface2));
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.problem::before, .solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.problem:hover, .solution:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px var(--card-shadow);
  border-color: var(--border2);
}
.problem:hover::before, .solution:hover::before { opacity: 1; }
.problem h4, .solution h4 { font-size: 17px; margin-bottom: 10px; }
.problem p, .solution p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--surface);
  padding: 30px 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s, border-color .28s;
  cursor: default;
}
.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at 50% 0%, rgba(52,211,153,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.feature:hover { transform: translateY(-8px); box-shadow: 0 24px 64px var(--card-shadow), 0 0 0 1px rgba(52,211,153,.12); border-color: rgba(52,211,153,.1); }
.feature:hover::after { opacity: 1; }
.feature:hover .icon { transform: scale(1.12) translateY(-3px); filter: drop-shadow(0 0 10px rgba(52,211,153,.45)); }
.feature .icon {
  color: var(--accent);
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, filter .3s;
  position: relative; z-index: 1;
}
.feature .icon svg { width: 40px; height: 40px; }
.feature h4 { position: relative; z-index: 1; }
.feature p { font-size: 14px; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════
   ACHIEVEMENTS
   ════════════════════════════════════════════════════════ */
.achievements {
  padding: 20px 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.ach-item {
  background: var(--surface);
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s, border-color .28s;
  cursor: default;
}
.ach-item::before {
  content: '';
  position: absolute;
  inset: 0; border-radius: 18px; padding: 1px;
  background: linear-gradient(135deg, rgba(52,211,153,0), rgba(52,211,153,.55), rgba(6,182,164,.35), rgba(52,211,153,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.ach-item:hover { transform: translateY(-8px); box-shadow: 0 24px 64px var(--card-shadow), 0 0 0 1px rgba(52,211,153,.12); border-color: rgba(52,211,153,.1); }
.ach-item:hover::before { opacity: 1; }
.ach-item:hover svg { transform: scale(1.12) translateY(-3px); filter: drop-shadow(0 0 10px rgba(52,211,153,.45)); }
.ach-item svg { color: var(--accent); width: 48px; height: 48px; transition: transform .3s, filter .3s; position: relative; z-index: 1; }
.ach-head { display: flex; align-items: center; gap: 10px; justify-content: center; }
.ach-head h4 { font-size: 18px; font-weight: 700; position: relative; z-index: 1; }
.ach-item p { font-size: 14px; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════
   TEAM SECTION
   ════════════════════════════════════════════════════════ */
.team-section {
  padding: 60px 60px 70px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.team-card {
  background: var(--surface);
  padding: 36px 24px 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s, border-color .28s;
  cursor: default;
}
.team-card::before {
  content: '';
  position: absolute;
  inset: 0; border-radius: 18px; padding: 1px;
  background: linear-gradient(135deg, rgba(52,211,153,0), rgba(52,211,153,.55), rgba(6,182,164,.35), rgba(52,211,153,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px var(--card-shadow), 0 0 0 1px rgba(52,211,153,.12); border-color: rgba(52,211,153,.1); }
.team-card:hover::before { opacity: 1; }
.team-card:hover .team-avatar img,
.team-card:hover .team-avatar svg { transform: scale(1.06); box-shadow: 0 0 24px rgba(52,211,153,.3); }
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border2);
  margin-bottom: 8px;
  flex-shrink: 0;
}
.team-avatar img,
.team-avatar svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform .3s, box-shadow .3s;
}
.team-name {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}
.team-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
   CONTACT SECTION (new)
   ════════════════════════════════════════════════════════ */
.contact-section {
  padding: 40px 60px 60px;
  margin: 0;
  width: 100%;
  max-width: none;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.contact-section::before,
.contact-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.contact-section::before {
  width: 320px; height: 320px;
  background: rgba(52,211,153,.12);
  top: -80px; left: -60px;
}
.contact-section::after {
  width: 260px; height: 260px;
  background: rgba(6,182,164,.10);
  bottom: -60px; right: -40px;
}


.contact-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
}
.contact-wave svg {
  display: block;
  width: 100%;
  height: 48px;
}
.contact-wave-top {
  margin-top: 0;
  margin-bottom: -1px;
  background: var(--bg);
}
.contact-wave-bottom {
  background: var(--surface);
  margin-top: -2px;
}
.contact-wave-bottom svg {
  height: 88px;
}

@media (min-width: 769px) {
  .contact-wave {
    display: none;
  }
}

.contact-box {
  background:
    linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  max-width: 500px;
  width: 100%;
  flex: 0 1 500px;
  box-shadow: 0 28px 90px rgba(0,0,0,.16), 0 0 0 1px rgba(52,211,153,.08) inset;
  transition: padding .4s cubic-bezier(.2,.9,.2,1);
}
.contact-box.is-success {
  padding: 24px 28px;
}
.contact-box.is-success .contact-box-header {
  display: none;
}
.contact-wrapper.is-success-locked {
  transition: min-height .45s cubic-bezier(.2,.9,.2,1);
}
.contact-box-header {
  transition: opacity .3s ease, max-height .3s ease, margin .3s ease;
  overflow: hidden;
  max-height: 140px;
}
.contact-box-header.hidden {
  opacity: 0;
  max-height: 0;
  margin: 0;
  pointer-events: none;
}
.contact-box::before {
  display: none;
}
.contact-box h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.contact-box .lead {
  text-align: center;
  margin-bottom: 22px;
  font-size: 13px;
}
.contact-form-wrap {
  transition: opacity .35s ease, transform .35s ease;
}
.contact-form-wrap.hiding {
  opacity: 0;
  transform: scale(.97) translateY(8px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent),
    color-mix(in srgb, var(--bg) 88%, var(--accent) 12%);
  border: 1px solid color-mix(in srgb, var(--border) 72%, var(--accent) 28%);
  border-radius: 14px;
  padding: 13px 15px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
  outline: none;
  resize: vertical;
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(52,211,153,.32);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(52,211,153,.13), 0 14px 30px rgba(5,150,105,.08);
  transform: translateY(-1px);
}
.form-group textarea { min-height: 108px; }

/* Captcha placeholder */
.captcha-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity .2s, filter .2s, transform .2s;
}
.captcha-hint {
  width: 100%;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  transition: color .2s;
}
.captcha-hint.warn { color: #f87171; }
.captcha-row.locked .captcha-box {
  opacity: .55;
  filter: grayscale(.35);
}
.captcha-row.locked .captcha-check { cursor: not-allowed; }
.captcha-row.shake {
  animation: captchaShake .38s ease;
}
.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: color-mix(in srgb, var(--bg) 90%, var(--accent) 10%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  width: min(100%, 420px);
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
  transition: opacity .2s, filter .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.captcha-row:not(.locked) .captcha-box {
  border-color: rgba(52,211,153,.35);
  box-shadow: 0 0 0 3px rgba(52,211,153,.08), 0 16px 34px rgba(5,150,105,.12);
  transform: translateY(-1px);
}
.captcha-check {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.captcha-check.checked { background: var(--accent); border-color: var(--accent); }
.captcha-check.checked::after { content: '✓'; color: #fff; font-size: 13px; font-weight: 800; }
.captcha-label { font-size: 13px; color: var(--muted); }
.captcha-logo { margin-left: auto; font-size: 10px; color: var(--muted); opacity: .6; }

@keyframes captchaShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
}

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

/* Success panel */
.form-success-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 12px 4px;
  gap: 10px;
}
.form-success-panel.show {
  display: flex;
  animation: successPanelIn .45s cubic-bezier(.2,.9,.2,1) forwards;
}
.form-success-panel.hiding {
  animation: successPanelOut .3s ease forwards;
}
@keyframes successPanelIn {
  from { opacity: 0; transform: scale(.94) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes successPanelOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(.97) translateY(-6px); }
}
.success-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 36px rgba(52,211,153,.35);
  animation: successRingPop .5s cubic-bezier(.2,.9,.2,1) .05s both;
}
@keyframes successRingPop {
  from { transform: scale(.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-ring svg {
  animation: successCheckDraw .4s ease .2s both;
}
@keyframes successCheckDraw {
  from { opacity: 0; transform: scale(.5); }
  to { opacity: 1; transform: scale(1); }
}
.form-success-panel h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 6px 0 0;
}
.form-success-panel p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 280px;
  margin: 0;
}

/* Contact wrapper and info */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .contact-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 280px;
}

@media (min-width: 769px) {
  .contact-info {
    flex: 0 0 280px;
    align-self: stretch;
    justify-content: center;
  }
}

.info-card {
  background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(5,150,105,.04));
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .28s ease, box-shadow .28s ease;
  width: 100%;
  min-width: 0;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--card-shadow);
}

.info-card-body {
  flex: 1;
  min-width: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(52,211,153,.15), rgba(5,150,105,.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }

.info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: var(--text);
}

.info-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
}

.info-card p a {
  font-size: 12px;
}

.info-card a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity .2s;
}

.info-card a:hover {
  opacity: .8;
}

html.light .info-card {
  background: linear-gradient(135deg, rgba(5,150,105,.06), rgba(5,150,105,.02));
  border-color: rgba(5,150,105,0.20);
}

/* ════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════ */
.accordion { max-width: 940px; margin: 0 auto; padding: 0 8px 80px; }
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 24px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: linear-gradient(90deg, rgba(52,211,153,.05), rgba(52,211,153,.01));
  cursor: pointer;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--text);
  font-family: inherit;
  text-align: left;
  transition: transform .18s, box-shadow .18s, border-color .2s, background .2s;
}
.accordion-button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--card-shadow); border-color: var(--border2); background: linear-gradient(90deg, rgba(52,211,153,.09), rgba(52,211,153,.03)); }
.accordion-button.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  border-color: var(--accent);
  box-shadow: 0 16px 48px var(--card-shadow);
  background: linear-gradient(90deg, rgba(52,211,153,.08), rgba(52,211,153,.02));
}
.acc-index {
  background: linear-gradient(180deg, #34d399, #059669);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #042017;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.acc-title { font-size: 16px; flex: 1; }
.acc-chevron { margin-left: auto; flex-shrink: 0; transition: transform .22s ease; color: var(--muted); }
.accordion-button.open .acc-chevron { transform: rotate(180deg); }
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease;
  margin-bottom: 16px;
  border: 1px solid var(--border2);
  border-top: none;
  border-radius: 0 0 16px 16px;
}
.accordion-panel p {
  margin: 0;
  color: var(--muted);
  background: var(--surface);
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.75;
}

html.light .accordion-button { 
  border: 1.5px solid rgba(5,150,105,0.22);
  background: linear-gradient(90deg, rgba(5,150,105,.09), rgba(5,150,105,.03));
}
html.light .accordion-button:hover {
  background: linear-gradient(90deg, rgba(5,150,105,.14), rgba(5,150,105,.06));
}
html.light .accordion-button.open {
  background: linear-gradient(90deg, rgba(5,150,105,.12), rgba(5,150,105,.05));
}

/* ════════════════════════════════════════════════════════
   DOWNLOAD PAGE
   ════════════════════════════════════════════════════════ */
.page-hero {
  text-align: center;
  padding: 60px 40px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-icon {
  width: 100px; height: 100px;
  border-radius: 24px;
  object-fit: contain;
  margin: 0 auto 24px;
  box-shadow: 0 12px 40px rgba(52,211,153,.25);
  animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.page-hero h2 { font-size: 42px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; }
.page-hero .lead { max-width: 560px; margin: 0 auto; }

@media (min-width: 769px) {
  .download-hero {
    display: flex;
    justify-content: center;
    max-width: none;
    transform: none;
  }

  .download-hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    text-align: left;
    transform: translateX(28px);
  }

  .download-hero .page-hero-icon {
    margin: 0;
    flex-shrink: 0;
    width: 96px;
    height: 96px;
  }

  .download-hero-copy {
    text-align: left;
  }

  .download-hero h2 {
    margin-bottom: 10px;
  }

  .download-hero .lead {
    margin: 0;
    max-width: 520px;
  }
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
}
.download-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px var(--card-shadow); border-color: var(--border2); }
.download-card:hover::before { transform: scaleX(1); }

.download-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(52,211,153,.15), rgba(5,150,105,.1));
  border-radius: 12px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.download-card h3 { font-size: 20px; margin: 0; }
.download-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.download-card-head h3 {
  line-height: 1.25;
}
.download-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.download-card ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.download-card ol li { font-size: 14px; color: var(--muted); line-height: 1.5; }
.download-card ol li strong { color: var(--text); }
.download-actions { display: flex; gap: 10px; flex-wrap: nowrap; margin-top: 4px; }
.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(52,211,153,.1);
  color: var(--accent);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(52,211,153,.2);
}
.muted-note { color: var(--muted); font-size: 12px; }

/* Download preview mock */
.download-preview {
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--monitor-screen);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  margin-top: 3px;
}
.download-preview-screen {
  display: flex;
  flex-direction: column;
    min-height: 220px;
}
.download-preview-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.download-preview-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.download-preview-bar span:first-child { background: rgba(248,113,113,.7); }
.download-preview-bar span:nth-child(2) { background: rgba(251,191,36,.7); }
.download-preview-bar span:nth-child(3) { background: rgba(52,211,153,.7); }
.download-preview-body {
  padding: 8px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.download-preview-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.download-preview-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.download-preview-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.download-preview-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}
.download-preview-chart span {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--accent), rgba(52,211,153,.35));
  min-height: 8px;
}

.download-actions { 
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin-top: auto; 
}

.download-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.download-preview-tags span {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  background: rgba(52,211,153,.1);
  border: 1px solid rgba(52,211,153,.18);
  border-radius: 999px;
  padding: 3px 8px;
}

/* Step animation */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 16px;
  border-radius: 12px;
  background: rgba(52,211,153,.04);
  border: 1px solid rgba(52,211,153,.08);
  transition: background .2s;
  flex: 1;
}
.step-item:hover { background: rgba(52,211,153,.08); }
.nowrap-inline { white-space: nowrap; }
.step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: #042017;
  flex-shrink: 0;
}
.step-text { font-size: 13px; color: var(--muted); line-height: 1.5; padding-top: 5px; }
.step-text strong { color: var(--text); }

/* ════════════════════════════════════════════════════════
   PRIVACY PAGE
   ════════════════════════════════════════════════════════ */
.privacy-hero {
  text-align: center;
  padding: 60px 40px 40px;
}
.privacy-hero h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}
.privacy-hero .lead { max-width: 600px; margin: 0 auto; }

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
  position: relative;
  overflow: hidden;
}
.privacy-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at 50% 0%, rgba(52,211,153,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.privacy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(52,211,153,0), rgba(52,211,153,.55), rgba(6,182,164,.35), rgba(52,211,153,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
}
.privacy-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px var(--card-shadow), 0 0 0 1px rgba(52,211,153,.12); border-color: rgba(52,211,153,.1); }
.privacy-card:hover::before, .privacy-card:hover::after { opacity: 1; }
.privacy-card:hover .privacy-card-icon { transform: scale(1.12) translateY(-3px); filter: drop-shadow(0 0 10px rgba(52,211,153,.45)); }
.privacy-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(52,211,153,.15), rgba(5,150,105,.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: transform .3s, filter .3s;
  position: relative;
  z-index: 1;
}
.privacy-card h4 { font-size: 16px; font-weight: 700; margin: 0; position: relative; z-index: 1; }
.privacy-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; position: relative; z-index: 1; }

.privacy-contact {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px 60px;
  text-align: center;
}
.privacy-contact-box {
  background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(5,150,105,.04));
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 32px 28px;
}
.privacy-contact-box h4 { font-size: 18px; margin-bottom: 10px; }
.privacy-contact-box p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.privacy-contact-box a { color: var(--accent); font-weight: 700; }
.privacy-contact-box a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════
   GENERAL PAGE LAYOUT
   ════════════════════════════════════════════════════════ */
.container { padding: 0 40px; }
main { flex: 1; } /* pushes footer to bottom */

/* ════════════════════════════════════════════════════════
   FOOTER — always at bottom
   ════════════════════════════════════════════════════════ */
.site-footer {
  margin-top: auto;
  padding: 24px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--muted);
}
.footer-brand img { width: 24px; height: 24px; border-radius: 5px; opacity: .7; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  transition: color .18s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--muted); opacity: .6; }

/* ════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ════════════════════════════════════════════════════════ */
@media (max-width: 1150px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 44px 32px 36px;
    gap: 32px;
  }
  .hero-inner {
    max-width: 620px;
    width: 100%;
  }
  .hero h2 { font-size: 34px; line-height: 1.12; }
  .hero .lead { max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .ctas { justify-content: center; margin-left: auto; margin-right: auto; }
  .mockup { transform: scale(.92); transform-origin: top center; }
  .monitor-secondary {
    transform: translateX(-28px) translateY(14px) scale(0.92);
    opacity: .9;
  }
  .monitor-secondary .monitor-screen { width: 250px; height: 158px; }
  .monitor-secondary .monitor-base { width: 68px; }
  .monitor-secondary .monitor-foot { width: 104px; }
  .features, .achievements { padding: 40px; }
  .team-section { padding: 40px; }
  .contact-section { padding: 36px 40px 60px; }
  .contact-wrapper { gap: 20px; max-width: 100%; }
  .step-item { padding: 16px 14px; }
  .step-item { padding: 12px 10px; }
  .step-num { width: 28px; height: 28px; font-size: 13px; }
  .step-text { font-size: 12px; padding-top: 3px; }
  .download-card h3 { font-size: 18px; }
  .download-card p { font-size: 13px; }
  .download-actions .btn { font-size: 12px; padding: 10px 14px; }
  .brand-text .tagline { display: none; }
  .site-nav { display: none; }
  .burger { display: flex; }
  .header-actions { margin-left: auto; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .site-header { padding: 12px 16px; }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 28px 18px 24px;
    gap: 28px;
    text-align: center;
  }
  .hero-inner { max-width: 100%; width: 100%; }
  .hero h2 {
    font-size: 1.625rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    max-width: 18em;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .lead {
    font-size: 14px;
    line-height: 1.62;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 0 4px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 340px;
    margin: 16px auto 0;
    gap: 10px;
  }
  .stat {
    min-width: 0;
    width: auto;
    padding: 12px 8px;
  }
  .stat-value { font-size: 24px; }
  .stat-label { font-size: 11px; margin-top: 4px; }
  .ctas {
    justify-content: center;
    margin: 16px auto 0;
    gap: 10px;
  }
  .mockup { transform: scale(.78); transform-origin: top center; width: 100%; }
  .monitor-secondary { display: none; }
  .monitor-main .monitor-screen { width: 300px; height: 190px; }

  /* Sections */
  .features, .achievements { padding: 28px 16px; }
  .achievements { padding-bottom: 12px; }
  .team-section { padding: 28px 16px; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 20px; }
  .team-avatar { width: 130px; height: 130px; }
  .team-name { font-size: 17px; }
  .team-role { font-size: 12px; }
  .team-bio { font-size: 13px; }
  .contact-section { padding: 20px 16px 40px; }
  .contact-wave { display: none; }
  .contact-wrapper { flex-direction: column; gap: 20px; max-width: 100%; }
  .contact-box { padding: 24px 16px; flex: none; max-width: 100%; width: 100%; }
  .contact-info { max-width: 100%; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .form-group { grid-column: 1; }
  .form-group.full { grid-column: 1; }
  .form-submit-row { grid-column: 1; }
  .captcha-row { grid-column: 1; }
  .info-card { flex: none; max-width: 100%; width: 100%; flex-direction: row; align-items: center; text-align: left; }
  .info-card-body { text-align: left; }

  .section-heading { font-size: 24px; }
  .section-sub { font-size: 13px; margin-bottom: 28px; }
  .lead { font-size: 13px; }
  .feature p { font-size: 12.5px; }
  .feature h4 { font-size: 15px; }
  .ach-item p { font-size: 12.5px; }
  .ach-head h4 { font-size: 16px; }
  .problem-solution p { font-size: 13px; }
  .problem-solution h4 { font-size: 16px; }
  .contact-box-header .lead { font-size: 13px; }
  .info-card h4 { font-size: 15px; }
  .info-card p { font-size: 12.5px; }
  .privacy-card p { font-size: 12.5px; }
  .privacy-card h4 { font-size: 15px; }

  /* Download */
  .downloads-grid { padding: 0 16px 40px; grid-template-columns: 1fr; }
  .download-card { min-height: auto; padding: 24px 18px; }
  .download-card h3 { font-size: 17px; }
  .download-card p { font-size: 13px; }
  .download-actions { flex-wrap: wrap; }
  .download-actions .btn { flex: 1; min-width: 0; justify-content: center; font-size: 13px; padding: 12px 16px; }
  .step-item { padding: 14px 12px; }
  .step-num { width: 30px; height: 30px; font-size: 14px; }
  .step-text { font-size: 13px; padding-top: 4px; }
  .page-hero { padding: 36px 16px 24px; }
  .page-hero h2 { font-size: 28px; }
  .download-hero { text-align: center; }
  .download-hero { transform: none; }
  .download-hero-content { display: block; }
  .download-hero .page-hero-icon { margin: 0 auto 24px; }
  .download-hero .lead { margin: 0 auto; }

  /* Privacy */
  .privacy-grid { padding: 0 16px 40px; }
  .privacy-hero { padding: 36px 16px 24px; }
  .privacy-hero h2 { font-size: 28px; }
  .privacy-contact { padding: 0 16px 40px; }

  /* Problem/solution */
  .problem-solution { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer { padding: 18px 16px; justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Container */
  .container { padding: 0 16px; }

  /* Accordion */
  .accordion { padding: 0 4px; }
  .acc-title { font-size: 13px; }
}

@media (max-width: 400px) {
  .stat-value { font-size: 22px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
  }
  .hero-stats .stat:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 5px);
  }
}
