/* ─── Reset & Root ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0C0B09;
  --bg2: #111009;
  --sf: #161310;
  --card: rgba(26, 22, 15, 0.72);
  --card-b: rgba(240, 160, 60, 0.1);
  --primary: #E8530A;
  --pl: rgba(232, 83, 10, 0.14);
  --pg: rgba(232, 83, 10, 0.32);
  --orange: #F5A219;
  --green: #2BA82B;
  --text: #F4F0E8;
  --ts: #A89E90;
  --tm: #5C5248;
  --bdr: #28231C;
  --bdh: #3A332A;
  --r: 14px;
  --rsm: 9px;
  --f: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bdr);
  border-radius: 4px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--rsm);
  border: 1px solid var(--bdr);
  background: var(--card);
  color: var(--ts);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.btn:hover {
  border-color: var(--bdh);
  color: var(--text);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 20px var(--pg);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--pg);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--bdr);
  color: var(--ts);
}

.btn-ghost:hover {
  background: var(--pl);
  border-color: rgba(232, 83, 10, 0.3);
  color: var(--text);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 15px;
  border-radius: var(--r);
}

/* ─── Gradient Text ─────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-accent {
  color: var(--primary);
}

/* ─── Section Helpers ───────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--pl);
  border: 1px solid rgba(232, 83, 10, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 17px;
  color: var(--ts);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

/* ─── NAV ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--bdr);
  background: rgba(12, 11, 9, 0.96);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.nav-links a {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ts);
  text-decoration: none;
  border-radius: var(--rsm);
  transition: all 0.18s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  margin-left: auto;
  padding: 9px 18px;
  font-size: 13px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ts);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--bdr);
}

.nav-mobile a {
  display: block;
  padding: 11px 14px;
  color: var(--ts);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--rsm);
  transition: all 0.18s;
}

.nav-mobile a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-mobile .btn {
  margin-top: 8px;
  justify-content: center;
}

.nav-mobile.open {
  display: flex;
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-left {
  background: rgba(232, 83, 10, 0.12);
  top: -100px;
  left: -150px;
}

.glow-right {
  background: rgba(245, 162, 25, 0.07);
  bottom: -100px;
  right: -150px;
}

.hero>* {
  position: relative;
  z-index: 1;
}

/* Glows must be absolute — override the hero>* rule */
.hero-bg-glow {
  position: absolute !important;
  z-index: 0 !important;
}

/* Pure CSS hero entry animations — no JS dependency */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge    { animation: hero-in 0.55s ease 0.05s both; }
.hero-title    { animation: hero-in 0.65s ease 0.15s both; }
.hero-subtitle { animation: hero-in 0.65s ease 0.25s both; }
.hero-ctas     { animation: hero-in 0.65s ease 0.35s both; }
.hero-stats    { animation: hero-in 0.65s ease 0.48s both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--pl);
  border: 1px solid rgba(232, 83, 10, 0.25);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 840px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ts);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 20px 32px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.stat-lbl {
  font-size: 12px;
  color: var(--tm);
  font-weight: 500;
  margin-top: 2px;
}

.stat-div {
  width: 1px;
  height: 36px;
  background: var(--bdr);
}

.hero-mockup {
  position: absolute;
  right: 5%;
  bottom: -20px;
  z-index: 2;
  opacity: 0.85;
  pointer-events: none;
  display: none;
}

.mockup-popup {
  width: 310px;
  border-radius: 16px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--bdr);
}

/* ─── FEATURES ──────────────────────────────────────────────────────────── */
.features-section {
  background: var(--bg2);
}

.features-section .section-label,
.features-section .section-title,
.features-section .section-sub {
  margin: 0 auto 14px;
  text-align: center;
}

.features-section {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.feature-card {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 28px;
  text-align: left;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(240, 160, 60, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.feature-card--large {
  grid-column: span 2;
}

.feature-card--accent {
  border-color: rgba(43, 168, 43, 0.22);
  background: rgba(43, 168, 43, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--pl);
  border: 1px solid rgba(232, 83, 10, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.feature-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(232, 83, 10, 0.1);
  border: 1px solid rgba(232, 83, 10, 0.2);
  color: var(--primary);
  letter-spacing: 0.3px;
}

/* ─── SHOWCASE ──────────────────────────────────────────────────────────── */
.showcase-section {
  text-align: center;
}

.showcase-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0 32px;
}

.stab {
  padding: 9px 18px;
  border-radius: 20px;
  border: 1px solid var(--bdr);
  background: transparent;
  color: var(--ts);
  font-family: var(--f);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stab:hover {
  border-color: var(--bdh);
  color: var(--text);
}

.stab.active {
  background: var(--pl);
  border-color: rgba(232, 83, 10, 0.35);
  color: var(--primary);
}

.showcase-display {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-b);
  background: rgba(10, 8, 5, 0.6);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.showcase-glow {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pg), transparent);
  z-index: 2;
}

.showcase-img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  display: block;
  background: rgba(10, 8, 5, 0.4);
  transition: opacity 0.3s ease;
}

/* Portrait mode for narrow images like the popup */
.showcase-display.portrait-mode {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.showcase-display.portrait-mode .showcase-img {
  max-height: 680px;
}

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(10, 8, 5, 0.95));
  font-size: 13px;
  font-weight: 600;
  color: var(--ts);
  text-align: center;
  letter-spacing: 0.5px;
}

/* ─── STEPS ─────────────────────────────────────────────────────────────── */
.steps-section {
  background: var(--bg2);
  text-align: center;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: all 0.2s ease;
  position: relative;
}

.step-card:hover {
  border-color: rgba(240, 160, 60, 0.22);
  transform: translateY(-3px);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 14px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pl);
  border: 1px solid rgba(232, 83, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 18px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.6;
}

.step-connector {
  padding: 0 8px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── SECURITY ──────────────────────────────────────────────────────────── */
.security-section {
  background: var(--bg);
}

.security-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  backdrop-filter: blur(20px);
}

.security-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.sec-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sec-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(43, 168, 43, 0.12);
  border: 1px solid rgba(43, 168, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.sec-point strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.sec-point span {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.5;
}

.security-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-visual {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 83, 10, 0.15);
  animation: pulse-ring 3s ease infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.ring-2 {
  width: 74%;
  height: 74%;
  border-color: rgba(232, 83, 10, 0.22);
  animation-delay: 0.5s;
}

.ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(232, 83, 10, 0.3);
  animation-delay: 1s;
}

@keyframes pulse-ring {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

.shield-center {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--pl);
  border: 1px solid rgba(232, 83, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 1;
}

.shield-label {
  position: absolute;
  bottom: -20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tm);
}

/* ─── COMPAT ─────────────────────────────────────────────────────────────── */
.compat-section {
  background: var(--bg2);
  text-align: center;
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.compat-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.22s ease;
}

.compat-card:hover {
  border-color: rgba(240, 160, 60, 0.22);
  transform: translateY(-2px);
}

.compat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(232, 83, 10, 0.08);
  border: 1px solid rgba(232, 83, 10, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 4px;
}

.compat-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.compat-card span {
  font-size: 12px;
  color: var(--tm);
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section {
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(240, 160, 60, 0.18);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--tm);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.2s;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-a code {
  background: rgba(232, 83, 10, 0.1);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ─── CTA ────────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg2);
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 20px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow-left {
  background: rgba(232, 83, 10, 0.12);
  top: -200px;
  left: -100px;
}

.cta-glow-right {
  background: rgba(245, 162, 25, 0.08);
  bottom: -200px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 24px;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 17px;
  color: var(--ts);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--bdr);
  padding: 60px 0 28px;
}

.footer-top {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.footer-brand {
  flex: 1;
  min-width: 240px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--tm);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ts);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--tm);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--bdr);
  padding-top: 22px;
  font-size: 13px;
  color: var(--tm);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--tm);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-bottom-links a:hover {
  color: var(--ts);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card--large {
    grid-column: span 2;
  }

  .security-card {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .security-right {
    display: none;
  }

  .compat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .section {
    padding: 70px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
  }

  .hero-stats {
    padding: 16px 20px;
    gap: 0;
  }

  .stat {
    padding: 0 16px;
  }

  .stat-num {
    font-size: 18px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .compat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links-group {
    gap: 32px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .security-card {
    padding: 28px 20px;
  }
}

@media (min-width: 1200px) {
  .hero-mockup {
    display: block;
  }
}