/* ── Poppins Font ── */
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design tokens ── */
:root {
  color-scheme: dark;
  font-family: "Poppins", system-ui, sans-serif;
  --bg:           #080d1a;
  --glass:        rgba(255,255,255,0.055);
  --glass-hover:  rgba(255,255,255,0.085);
  --border:       rgba(255,255,255,0.11);
  --border-strong:rgba(255,255,255,0.22);
  --text:         rgba(255,255,255,0.94);
  --muted:        rgba(255,255,255,0.50);
  --hint:         rgba(255,255,255,0.36);
  --accent:       #df2626;
  --accent-dark:  #ff4444;
  --accent-glow:  rgba(223,38,38,0.38);
  --accent-soft:  rgba(223,38,38,0.14);
  --blur:         blur(20px) saturate(1.5);
  --radius:       18px;
  --shadow:       0 20px 50px rgba(0,0,0,0.45);
  --nav-h:        72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(ellipse at 80% -5%,  rgba(223,38,38,0.26) 0%, transparent 48%),
    radial-gradient(ellipse at -5% 65%,  rgba(90,20,200,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 110%, rgba(20,55,180,0.20) 0%, transparent 55%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Fade-in animation (JS adds .visible) ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }
.fade-in.delay-6 { transition-delay: 0.6s; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(8,13,26,0.72);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(8,13,26,0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.75rem;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  padding: 6px;
  box-shadow: 0 0 20px var(--accent-glow);
  overflow: hidden;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,13,26,0.97);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1.25rem 1.75rem 1.75rem;
  flex-direction: column;
  gap: 0.35rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,0.07); }
.nav-mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.nav-mobile-menu .mobile-actions .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  border-radius: 14px;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff5500 100%);
  color: #fff;
  box-shadow: 0 8px 22px var(--accent-glow);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px var(--accent-glow); }
.btn.primary:active { transform: translateY(0); }
.btn.ghost {
  background: rgba(255,255,255,0.07);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.82);
}
.btn.ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--border-strong); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   SECTIONS — shared
═══════════════════════════════════════ */
section { padding: 5.5rem 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(223,38,38,0.25);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(223,38,38,0.10);
  border: 1px solid rgba(223,38,38,0.28);
  color: #ff8080;
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
  animation: badge-pulse 3s ease-in-out infinite;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-glow 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(223,38,38,0.0); }
  50% { box-shadow: 0 0 14px 2px rgba(223,38,38,0.18); }
}
@keyframes dot-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(223,38,38,0.0); }
  50% { box-shadow: 0 0 8px 2px rgba(223,38,38,0.55); }
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #df2626 40%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease infinite alternate;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-visual {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.hero-mockup {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07), 0 0 80px rgba(223,38,38,0.08);
}

.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.hero-mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.hero-mockup-dot:nth-child(1) { background: #ff5f57; }
.hero-mockup-dot:nth-child(2) { background: #febc2e; }
.hero-mockup-dot:nth-child(3) { background: #28c840; }
.hero-mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  color: var(--hint);
  font-family: "SF Mono", "Fira Code", monospace;
}

.hero-mockup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-mock-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem;
}
.hero-mock-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.hero-mock-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(223,38,38,0.2);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.hero-mock-title { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.hero-mock-sub { font-size: 0.72rem; color: var(--muted); }

.hero-mock-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-mock-msg {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  line-height: 1.4;
  max-width: 85%;
}
.hero-mock-msg.user {
  background: var(--accent-soft);
  border: 1px solid rgba(223,38,38,0.2);
  color: rgba(255,255,255,0.85);
  align-self: flex-end;
}
.hero-mock-msg.expert {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  align-self: flex-start;
}

.hero-mock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #3effa0;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.hero-mock-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3effa0;
  box-shadow: 0 0 8px rgba(62,255,160,0.6);
}
.hero-mock-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 28px;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}
.hero-mock-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--accent), #ff5500);
  border-radius: 8px;
  width: 72%;
  opacity: 0.7;
}
.hero-mock-bar-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text);
}

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stats-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border);
}
.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-number .accent { color: var(--accent); }
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-card:hover {
  background: var(--glass-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07), 0 0 30px rgba(223,38,38,0.07);
}

.feature-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  border-radius: 14px;
  border: 1px solid rgba(223,38,38,0.2);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-bg {
  background: rgba(255,255,255,0.018);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: calc(16.666% + 1.5rem);
  right: calc(16.666% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  pointer-events: none;
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff5500 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px var(--accent-glow);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 1.6rem;
  margin-bottom: -0.25rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

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

.pricing-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pricing-card:hover {
  background: var(--glass-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: rgba(223,38,38,0.4);
  background: rgba(223,38,38,0.06);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07), 0 0 40px rgba(223,38,38,0.12);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #ff5500 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing-card.featured .pricing-tier { color: var(--accent); }

.pricing-price {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.35rem;
  display: inline-block;
  color: var(--muted);
}
.pricing-price .period {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.2rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.pricing-features li::before {
  content: '✓';
  color: #3effa0;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(62,255,160,0.1);
  border: 1px solid rgba(62,255,160,0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  line-height: 1;
}

.pricing-cta { margin-top: 0.5rem; }
.pricing-cta .btn { width: 100%; }

/* ═══════════════════════════════════════
   COMPANY IT SECTION
═══════════════════════════════════════ */
.company-section {
  background: rgba(223,38,38,0.04);
  border-top: 1px solid rgba(223,38,38,0.15);
  border-bottom: 1px solid rgba(223,38,38,0.15);
}

.company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.company-content { display: flex; flex-direction: column; gap: 1.25rem; }

.company-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.company-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.company-feature-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(223,38,38,0.2);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.company-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-mock-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07);
}

.company-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.company-mock-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.company-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: rgba(62,255,160,0.1);
  border: 1px solid rgba(62,255,160,0.25);
  color: #3effa0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.company-mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
}
.company-mock-row:last-child { border-bottom: none; }
.company-mock-avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #ff5500);
  display: grid; place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.company-mock-name { font-weight: 600; color: var(--text); flex: 1; }
.company-mock-dept { color: var(--muted); font-size: 0.72rem; }
.company-mock-status {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}
.status-online { background: rgba(62,255,160,0.1); border: 1px solid rgba(62,255,160,0.25); color: #3effa0; }
.status-busy { background: rgba(223,38,38,0.1); border: 1px solid rgba(223,38,38,0.25); color: var(--accent-dark); }
.status-away { background: rgba(255,188,2,0.1); border: 1px solid rgba(255,188,2,0.25); color: #febc2e; }

.company-sla-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07);
}

.sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.sla-stat {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
}
.sla-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.sla-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

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

.faq-item {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-strong); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  list-style: none;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  font-size: 0.75rem;
  color: var(--muted);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent-soft);
  border-color: rgba(223,38,38,0.25);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ═══════════════════════════════════════
   DOWNLOAD CTA
═══════════════════════════════════════ */
.download-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(223,38,38,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(90,20,200,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.download-content { position: relative; z-index: 1; }

.download-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1.4rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
  min-width: 180px;
}
.store-badge:hover {
  background: var(--glass-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.store-badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}
.store-badge-sub {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.store-badge-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.download-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--hint);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.75rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  padding: 5px;
  box-shadow: 0 0 16px var(--accent-glow);
  overflow: hidden;
}
.footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.footer-brand-name span { color: var(--accent); }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--hint);
}
.footer-copy span { color: var(--accent); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--hint);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--muted); }

/* ═══════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .company-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .company-visual { max-width: 560px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 4rem 0; }

  .hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3.5rem; }
  .hero-mockup-content { grid-template-columns: 1fr; }

  .stats-bar-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .stat-item::after { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { margin-top: 0; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .download-badges { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .sla-grid { grid-template-columns: 1fr; }
}

/* ── Hero logo ───────────────────────────────── */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero-logo-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 48px 12px rgba(223, 38, 38, 0.38);
}
