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

:root {
  --bg: #ffffff;
  --bg2: #f5f5f7;
  --bg3: #ebebed;
  --card: #ffffff;
  --border: #e2e2e2;
  --border2: #d0d0d0;
  --accent: #0057ff;
  --accent-hover: #0040cc;
  --accent-light: rgba(0,87,255,0.07);
  --accent-mid: rgba(0,87,255,0.14);
  --text: #0d0d0d;
  --muted: #737373;
  --muted2: #b0b0b0;
  --green: #00b96b;
  --green-light: rgba(0,185,107,0.1);
  --red: #e53e3e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted2); }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }

.accent-text { color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--accent-mid);
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  box-shadow: 0 2px 8px rgba(0,87,255,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,87,255,0.35);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  padding: 13px 26px;
  border: 1.5px solid var(--border2);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 17px 32px; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.25s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-xs);
  transition: all 0.15s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--bg2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-xs);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--text); }
.close-menu {
  position: absolute;
  top: 16px; right: 20px;
  background: var(--bg2);
  border: none;
  border-radius: var(--radius-xs);
  width: 38px; height: 38px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
}

.hero-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,87,255,0.12), transparent 70%);
  top: -200px; right: -200px;
}

.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(120,80,255,0.08), transparent 70%);
  bottom: -100px; left: -100px;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  background: var(--green);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero h1 { margin-bottom: 22px; }

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.hero-note::before { content: '✓'; color: var(--green); font-weight: 700; }

/* HERO VISUAL */
.hero-visual {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

.app-window {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.02);
  overflow: hidden;
}

.app-titlebar {
  background: var(--bg2);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.win-btn {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.win-btn.r { background: #ff5f57; }
.win-btn.y { background: #febc2e; }
.win-btn.g { background: #28c840; }

.titlebar-name {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.app-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.app-col-left { display: flex; flex-direction: column; gap: 16px; }

.video-preview {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-preview::after {
  content: '▶';
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.file-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.file-name { font-weight: 600; color: var(--text); }
.file-size { color: var(--muted); }
.file-size .new { color: var(--green); font-weight: 700; }

.progress-wrap { }
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.progress-track {
  height: 6px;
  background: var(--bg3);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #7c5cff);
  border-radius: 100px;
  width: 73%;
  animation: prog 2.5s ease-in-out infinite alternate;
}
@keyframes prog { from { width: 40%; } to { width: 85%; } }

.app-col-right { display: flex; flex-direction: column; gap: 14px; }

.stat-card {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card-label { font-size: 0.73rem; color: var(--muted); font-weight: 500; }
.stat-card-val { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.stat-card-val.green { color: var(--green); }
.stat-card-val.blue { color: var(--accent); }

.codec-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.codec-tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--accent-mid);
}

/* ===== LOGOS STRIP ===== */
.logos-strip {
  padding: 40px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.fmt-pill {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.fmt-pill:hover { color: var(--accent); border-color: var(--accent-mid); }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section { background: var(--bg2); }

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

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s ease;
  position: relative;
}

.feature-card:hover {
  border-color: var(--accent-mid);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feat-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  border: 1px solid var(--accent-mid);
}

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 28px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #7c5cff);
  opacity: 0.2;
  border-radius: 2px;
}

.step-card {
  text-align: center;
  padding: 8px;
}

.step-circle {
  width: 52px; height: 52px;
  background: #fff;
  border: 2px solid var(--accent-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--accent-light);
}

.step-card h3 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.6; }

/* ===== COMPARISON ===== */
.compare-section { background: var(--bg2); }

.compare-table {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  padding: 18px 24px;
  background: #fff;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.compare-table th.hl-col {
  background: var(--accent);
  color: rgba(255,255,255,0.9);
  text-align: center;
  position: relative;
}

.best-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.compare-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table td.hl-col {
  background: var(--accent-light);
  color: var(--text);
  font-weight: 600;
  text-align: center;
}

.check { color: var(--green); font-weight: 700; }
.cross { color: var(--muted2); }

/* ===== TESTIMONIALS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--border2);
}

.review-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.review-name { font-size: 0.88rem; font-weight: 700; }
.review-role { font-size: 0.77rem; color: var(--muted); margin-top: 2px; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--text);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stats-grid .item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stats-grid .item:last-child { border-right: none; }

.stats-grid .num {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stats-grid .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }

.cta-box {
  background: var(--accent);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-box h2 { color: #fff; margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-white {
  background: #fff;
  color: var(--accent);
  padding: 15px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-white-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  line-height: 1.65;
  margin: 16px 0 22px;
  max-width: 240px;
}

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}

.footer-logo-icon {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 900; color: #fff;
}

.social-row { display: flex; gap: 8px; }

.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.15s;
  font-weight: 700;
}
.social-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 130px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,87,255,0.06), transparent 70%);
  top: 0; right: -200px;
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 18px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 560px; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s;
}

.pricing-card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,87,255,0.3);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0,185,107,0.35);
}

.plan-name {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-card.featured .plan-name { color: rgba(255,255,255,0.7); }

.plan-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-amount .sup { font-size: 1.3rem; vertical-align: super; font-weight: 700; }

.pricing-card.featured .plan-amount { color: #fff; }

.plan-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-card.featured .plan-period { color: rgba(255,255,255,0.7); }

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-card.featured .plan-divider { background: rgba(255,255,255,0.2); }

.plan-desc { font-size: 0.87rem; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.8); }

.plan-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.plan-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem; line-height: 1.4;
}

.plan-feat .check-icon { color: var(--green); font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .plan-feat { color: rgba(255,255,255,0.9); }
.pricing-card.featured .plan-feat .check-icon { color: rgba(255,255,255,0.7); }
.plan-feat.off { color: var(--muted2); }
.plan-feat.off .check-icon { color: var(--muted2); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.15s;
}

.faq-item.open {
  border-color: var(--accent-mid);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.faq-q {
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  transition: color 0.15s;
  user-select: none;
}

.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }

.faq-icon {
  width: 26px; height: 26px;
  background: var(--bg2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: all 0.25s;
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== DOWNLOAD ===== */
.dl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dl-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.dl-option:last-child { border-bottom: none; }
.dl-option:hover { background: var(--bg2); }
.dl-option.active { background: var(--accent-light); }

.dl-option-left { display: flex; align-items: center; gap: 16px; }
.dl-option-icon { font-size: 1.6rem; }
.dl-option-title { font-weight: 700; font-size: 0.98rem; }
.dl-option-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.dl-option-right { font-size: 0.8rem; color: var(--muted); text-align: right; }
.dl-option.active .dl-option-right { color: var(--accent); font-weight: 700; }

.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.trust-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
}

.trust-pill::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.8rem; }

.req-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.req-card h3 { margin-bottom: 18px; color: var(--text); font-size: 1rem; }
.req-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.req-row:last-child { border-bottom: none; }
.req-row span:first-child { color: var(--muted); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }

.about-stat-card {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
}

.about-stat-card .n {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-card .l { font-size: 0.77rem; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.team-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.team-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff;
}

.team-card h4 { font-size: 0.92rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.77rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.contact-icon-wrap {
  width: 42px; height: 42px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  border: 1px solid var(--accent-mid);
}

.contact-item h4 { font-size: 0.9rem; margin-bottom: 3px; }
.contact-item p { font-size: 0.85rem; color: var(--muted); }

.contact-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 { margin-bottom: 28px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font);
  transition: all 0.15s;
  outline: none;
  line-height: 1.5;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-textarea { resize: vertical; min-height: 110px; }
.form-select option { background: #fff; }

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.83rem; color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.form-check input { accent-color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* ===== LEGAL ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 130px 32px 80px; }
.legal-content h1 { margin-bottom: 12px; }
.legal-date { font-size: 0.87rem; color: var(--muted); margin-bottom: 40px; display: block; }
.legal-content h2 { font-size: 1.2rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-connector { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .dl-hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 0 60px; }
  .app-body { grid-template-columns: 1fr; }
  .app-col-right { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 120px; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-box { padding: 48px 28px; }
  .form-2col { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== COOKIE BANNER ===== */
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px);
  max-width: 740px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0;
}
#cookieBanner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
#cookieBanner p {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  min-width: 200px;
}
#cookieBanner a { color: #fff; text-decoration: underline; }
#cookieBanner .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
#cookieBanner .cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
#cookieBanner .cookie-accept:hover { background: var(--accent-hover); }
#cookieBanner .cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
#cookieBanner .cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
@media (max-width: 560px) {
  #cookieBanner { bottom: 16px; padding: 16px; gap: 14px; }
  #cookieBanner .cookie-accept { width: 100%; text-align: center; }
  #cookieBanner .cookie-decline { width: 100%; text-align: center; }
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success .success-icon {
  width: 64px; height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 0.9rem; }
