/* ============================================================
   SV Barber — style.css
   Paleta: Preto #0a0a0a | Grafite #1a1a2e | Dourado #f59e0b
           Creme #F5ECD7 | Branco sujo #e8e0d4
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --black:   #090909;
  --dark:    #111118;
  --dark2:   #18181f;
  --dark3:   #1f1f28;
  --amber:   #f59e0b;
  --amber2:  #fbbf24;
  --amber3:  #fcd34d;
  --cream:   #F5ECD7;
  --cream2:  #d8cfc4;
  --white:   #ffffff;
  --text-dim: rgba(245,236,215,0.50);
  --border:  rgba(245,158,11,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  background: rgba(9,9,9,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,158,11,0.10);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(9,9,9,0.98); }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(245,236,215,0.55); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.btn-nav {
  background: var(--amber); color: #000;
  border: none; border-radius: 8px;
  padding: 0.55rem 1.3rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-nav:hover { background: var(--amber2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,158,11,0.35); }

/* ── HERO ── */
#hero {
  min-height: auto;
  display: flex; align-items: center;
  padding: 80px 0 3rem;
  position: relative; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(130px);
}
.hero-bg-glow-1 { width: 600px; height: 600px; background: rgba(245,158,11,0.10); top: -180px; right: -180px; }
.hero-bg-glow-2 { width: 350px; height: 350px; background: rgba(245,158,11,0.05); bottom: 0; left: -80px; }

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.30);
  color: var(--amber2); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 999px; margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--amber), var(--amber3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 0.88rem; font-weight: 300; color: var(--text-dim);
  line-height: 1.8; max-width: 480px; margin: 1rem 0 1.8rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }

.btn-primary {
  background: var(--amber); color: #000;
  border: none; border-radius: 10px; padding: 0.8rem 1.8rem;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.84rem;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s;
}
.btn-primary:hover { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(245,158,11,0.40); color: #000; }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(245,236,215,0.18); border-radius: 10px; padding: 0.8rem 1.8rem;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.84rem;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s;
}
.btn-ghost:hover { border-color: rgba(245,158,11,0.4); color: var(--amber); }

/* ── HERO MOCKUP ── */
.hero-mockup-wrap { animation: fadeUp 0.8s 0.4s ease both; }

.dashboard-mock {
  background: #111118;
  border: 1px solid rgba(245,158,11,0.12);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,158,11,0.06);
}

/* Topbar */
.mock-topbar {
  background: #0d0d14;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.6rem 0.9rem;
  display: flex; align-items: center; justify-content: space-between;
}
.mock-topbar-left { display: flex; align-items: center; gap: 0.5rem; }
.mock-logo-sm { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.7rem; color: var(--amber); }
.mock-page-title { font-size: 0.65rem; color: rgba(255,255,255,0.35); }
.mock-topbar-right { display: flex; align-items: center; gap: 0.6rem; }
.mock-topbar-btn {
  padding: 0.2rem 0.5rem; border-radius: 5px; font-size: 0.52rem; font-weight: 600; cursor: pointer;
}
.mock-topbar-btn.queue { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.mock-topbar-btn.admin { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.mock-topbar-btn.sair  { background: #ef4444; color: #fff; }
.mock-avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 0.5rem; font-weight: 700; color: #000; }

/* Body */
.mock-body { display: flex; }
.mock-sidebar {
  width: 120px; min-width: 120px;
  background: #0d0d18;
  border-right: 1px solid rgba(255,255,255,0.04);
  padding: 0.6rem 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mock-nav-item {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.38rem 0.7rem; font-size: 0.58rem; color: rgba(255,255,255,0.4); cursor: pointer;
}
.mock-nav-item.active { background: rgba(245,158,11,0.15); color: var(--amber); border-left: 2px solid var(--amber); }
.mock-nav-footer { font-size: 0.46rem; color: rgba(255,255,255,0.2); padding: 0.5rem 0.7rem; }

/* Content */
.mock-content { flex: 1; padding: 0.85rem; background: #14141c; }
.mock-content-title { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.mock-content-sub { font-size: 0.5rem; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }

/* KPI cards */
.mock-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.mock-kpi {
  background: #1a1a26; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.6rem 0.7rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.mock-kpi-icon { width: 24px; height: 24px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }
.mock-kpi-icon.amber  { background: rgba(245,158,11,0.2); }
.mock-kpi-icon.blue   { background: rgba(33,150,243,0.2); }
.mock-kpi-icon.green  { background: rgba(34,197,94,0.2); }
.mock-kpi-label { font-size: 0.45rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.mock-kpi-value { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700; color: #fff; }

/* Chart */
.mock-chart-box {
  background: #1a1a26; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.65rem; margin-bottom: 0.5rem;
}
.mock-chart-title { font-size: 0.52rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.mock-bars { display: flex; align-items: flex-end; gap: 4px; height: 44px; padding: 0 0.2rem; }
.mock-bar { flex: 1; border-radius: 3px 3px 0 0; transition: opacity 0.2s; }

/* Table */
.mock-bottom { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0.5rem; }
.mock-table-box {
  background: #1a1a26; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.65rem;
}
.mock-table-title { font-size: 0.52rem; font-weight: 600; color: #fff; margin-bottom: 0.45rem; display: flex; justify-content: space-between; }
.mock-table-title span { color: rgba(245,158,11,0.7); font-weight: 400; }
.mock-tr {
  display: grid; grid-template-columns: 0.4fr 1fr 1fr 1fr 0.9fr;
  gap: 0.2rem; padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.46rem; color: rgba(255,255,255,0.6); align-items: center;
}
.mock-tr.head { color: rgba(255,255,255,0.3); font-size: 0.42rem; text-transform: uppercase; }
.mock-pos { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.45rem; font-weight: 700; color: #fff; }
.mock-status { background: rgba(245,158,11,0.2); color: var(--amber); border-radius: 4px; padding: 0.1rem 0.35rem; font-size: 0.42rem; font-weight: 600; }

.mock-actions-box {
  background: #1a1a26; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.65rem;
}
.mock-actions-title { font-size: 0.52rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.mock-action-btn {
  display: block; width: 100%; padding: 0.4rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12); background: transparent;
  color: rgba(255,255,255,0.7); font-size: 0.48rem; text-align: center;
  margin-bottom: 0.3rem; cursor: pointer;
}

/* ── STATS ── */
#stats { padding: 1.8rem 0; border-top: 1px solid rgba(245,158,11,0.08); border-bottom: 1px solid rgba(245,158,11,0.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  text-align: center; padding: 1.4rem 1rem;
  border-right: 1px solid rgba(245,158,11,0.08);
  display: flex; flex-direction: column; align-items: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--amber), var(--amber3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; height: 2rem; display: flex; align-items: center;
}
.stat-sublabel {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--amber), var(--amber3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-top: 0.15rem;
}
.stat-label { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.4rem; }

/* ── SECTIONS ── */
section { padding: 3.5rem 0; position: relative; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.22);
  color: var(--amber2); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.85rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 0.9rem;
}
.section-sub { font-size: 0.88rem; color: var(--text-dim); line-height: 1.75; max-width: 540px; }

/* ── FEATURES ── */
#features { background: var(--dark); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.feat-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(245,236,215,0.06);
  border-radius: 14px; padding: 1.6rem; transition: all 0.3s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent, var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.feat-card:hover { background: rgba(245,158,11,0.04); border-color: rgba(245,158,11,0.15); transform: translateY(-4px); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 1.1rem; background: var(--icon-bg, rgba(245,158,11,0.12)); }
.feat-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.55rem; }
.feat-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.7; }

/* ── MODULES ── */
#modules { background: var(--black); }
.modules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.modules-list { display: flex; flex-direction: column; gap: 0.85rem; }
.module-row {
  display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(245,236,215,0.06);
  border-radius: 12px; padding: 1.1rem 1.3rem; transition: all 0.25s;
}
.module-row:hover { background: rgba(245,158,11,0.05); border-color: rgba(245,158,11,0.18); }
.module-num { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: rgba(245,158,11,0.22); }
.module-info-title { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.module-info-desc { font-size: 0.76rem; color: var(--text-dim); }
.module-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.module-tag { font-size: 0.6rem; font-weight: 600; padding: 0.18rem 0.55rem; border-radius: 6px; background: rgba(245,158,11,0.10); color: var(--amber2); border: 1px solid rgba(245,158,11,0.18); }

/* ── FILA ── */
#fila { background: var(--dark); }
.fila-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.fila-visual {
  background: #111118; border: 1px solid rgba(245,158,11,0.12);
  border-radius: 16px; padding: 1.6rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.fv-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.fv-title { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; }
.fv-badge { background: rgba(245,158,11,0.15); color: var(--amber); border-radius: 999px; padding: 0.2rem 0.7rem; font-size: 0.65rem; font-weight: 600; }
.fila-list { display: flex; flex-direction: column; gap: 0.5rem; }
.fila-item {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 0.7rem 0.9rem;
}
.fila-pos { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.fila-pos.first { background: var(--amber); color: #000; }
.fila-info { flex: 1; }
.fila-name { font-size: 0.72rem; font-weight: 600; }
.fila-tel { font-size: 0.6rem; color: var(--text-dim); }
.fila-tempo { font-size: 0.6rem; color: var(--text-dim); text-align: right; }
.fila-status { background: rgba(245,158,11,0.18); color: var(--amber); border-radius: 6px; padding: 0.15rem 0.5rem; font-size: 0.55rem; font-weight: 700; }
.fila-profis-label { font-size: 0.62rem; color: var(--text-dim); margin: 1rem 0 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; }
.fila-profis { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fila-pro { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 0.45rem 0.8rem; font-size: 0.62rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.4rem; }
.fila-pro-dot { width: 6px; height: 6px; border-radius: 50%; }

/* ── RELATORIOS ── */
#relatorios { background: var(--black); }
.reports-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.1rem; margin-top: 2.5rem; }
.report-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(245,236,215,0.06);
  border-radius: 14px; padding: 1.5rem; transition: all 0.25s;
}
.report-card:hover { background: rgba(245,158,11,0.04); border-color: rgba(245,158,11,0.18); transform: translateY(-3px); }
.report-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.report-title { font-family: 'Syne', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 0.45rem; }
.report-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.65; }
.report-items { margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.28rem; }
.report-item { font-size: 0.73rem; color: rgba(245,236,215,0.45); display: flex; align-items: center; gap: 0.4rem; }
.report-item::before { content: '→'; color: var(--amber); font-size: 0.62rem; }

/* ── SEGURANÇA ── */
#seguranca { background: var(--dark); }
.security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; margin-top: 2.5rem; }
.sec-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(245,236,215,0.06);
  border-radius: 14px; padding: 1.5rem; text-align: center; transition: all 0.25s;
}
.sec-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.18); }
.sec-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.sec-title { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.45rem; }
.sec-desc { font-size: 0.76rem; color: var(--text-dim); line-height: 1.65; }

/* ── CTA ── */
#cta {
  background: linear-gradient(135deg, #0d0d14 0%, #1a1200 50%, #0d0d14 100%);
  text-align: center; padding: 4rem 0; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245,158,11,0.12), transparent);
  pointer-events: none;
}
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 0.9rem; position: relative; }
.cta-sub { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 2.2rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer { background: #060608; padding: 3rem 0 2rem; border-top: 1px solid rgba(245,158,11,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo img { height: 34px; margin-bottom: 0.8rem; }
.footer-tagline { font-size: 0.76rem; color: var(--text-dim); line-height: 1.7; max-width: 230px; }
.footer-col-title { font-family: 'Syne', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; color: rgba(245,236,215,0.4); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.76rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(245,158,11,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; }
.footer-copy { font-size: 0.7rem; color: rgba(245,236,215,0.25); }

/* ── 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: 992px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid, .fila-grid { grid-template-columns: 1fr; }
  .reports-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
}
