/* ============================================================
   SchSuite — Design tokens
   ============================================================ */
:root {
  --brand-900: #0b1a3a;
  --brand-800: #10214d;
  --brand-700: #16306b;
  --brand-600: #1f4491;
  --brand-500: #2e5cc4;
  --brand-400: #4d7ce0;
  --accent-500: #12b886;
  --accent-400: #2fd6a3;
  --accent-orange: #f5a524;

  --ink-900: #0d1321;
  --ink-700: #2a3350;
  --ink-500: #5b6480;
  --ink-300: #9aa2ba;
  --ink-100: #e7eaf3;
  --ink-50:  #f5f7fb;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(13, 19, 33, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 19, 33, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 19, 33, 0.16);

  --container: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.9,.32,1);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Progress bar
   ============================================================ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-500), var(--brand-500));
  z-index: 1000; transition: width .1s linear;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  text-align: center; white-space: nowrap; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--ink-100); color: var(--ink-700); }
.btn-outline:hover { border-color: var(--brand-500); color: var(--brand-600); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--ink-900); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; box-shadow: var(--shadow-sm);
}
.brand-text em { font-style: normal; color: var(--brand-600); }

.main-nav ul { display: flex; gap: 28px; }
.nav-link {
  font-size: .93rem; font-weight: 600; color: var(--ink-500);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--brand-500); transition: right .25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink-900); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--ink-100);
  background: var(--white); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink-700); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 90px;
  background: radial-gradient(120% 100% at 100% 0%, #eef3ff 0%, var(--white) 55%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; }
.blob-1 { width: 480px; height: 480px; background: var(--brand-400); top: -180px; right: -120px; }
.blob-2 { width: 380px; height: 380px; background: var(--accent-400); bottom: -160px; left: -100px; opacity: .25; }
.grid-overlay { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--ink-100); opacity: .5; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-block; padding: 7px 16px; border-radius: var(--radius-pill);
  background: rgba(46,92,196,0.1); color: var(--brand-600); font-weight: 700; font-size: .8rem;
  letter-spacing: .02em; margin-bottom: 18px;
}
.hero-lead { font-size: 1.08rem; color: var(--ink-500); max-width: 54ch; }
.hero-actions { display: flex; gap: 16px; margin: 28px 0 40px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 34px; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.5rem; color: var(--ink-900); }
.trust-item span { font-size: .8rem; color: var(--ink-500); }

.hero-visual { display: flex; justify-content: center; }
.dash-card {
  width: 100%; max-width: 400px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100); overflow: hidden;
  transform: rotate(1.2deg);
}
.dash-card-header {
  display: flex; align-items: center; gap: 7px; padding: 14px 18px;
  background: var(--ink-50); border-bottom: 1px solid var(--ink-100);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #f56565; } .dot.yellow { background: #ecc94b; } .dot.green { background: #48bb78; }
.dash-title { margin-left: 8px; font-size: .8rem; font-weight: 700; color: var(--ink-500); }
.dash-stats { padding: 20px 20px 8px; display: flex; flex-direction: column; gap: 18px; }
.dash-stat { display: flex; flex-direction: column; gap: 6px; }
.dash-label { font-size: .78rem; color: var(--ink-500); font-weight: 600; }
.dash-value { font-size: 1.15rem; font-weight: 800; color: var(--ink-900); }
.dash-bar { display: block; height: 6px; border-radius: 4px; background: var(--ink-100); overflow: hidden; }
.dash-bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--brand-500), var(--accent-500)); }
.dash-notif {
  margin: 18px; padding: 12px 14px; border-radius: var(--radius-md);
  background: rgba(18,184,134,0.08); color: var(--accent-500); font-size: .82rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-500); box-shadow: 0 0 0 0 rgba(18,184,134,.6); animation: pulse 1.8s infinite; flex-shrink: 0; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(18,184,134,.5);} 70% { box-shadow: 0 0 0 8px rgba(18,184,134,0);} 100% { box-shadow: 0 0 0 0 rgba(18,184,134,0);} }

/* ============================================================
   Sections (generic)
   ============================================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--ink-50); }
.section-dark { background: linear-gradient(160deg, var(--brand-900), var(--brand-700)); color: var(--white); }
.section-brand { background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); color: var(--white); }
.light-heading { color: var(--white); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .section-lead { margin: 0 auto; }
.section-lead { color: var(--ink-500); font-size: 1.02rem; }

.tag {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(46,92,196,0.1); color: var(--brand-600); font-weight: 700; font-size: .78rem;
  letter-spacing: .03em; text-transform: uppercase; margin-bottom: 14px;
}
.tag-light { background: rgba(255,255,255,0.14); color: var(--white); }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; }
.about-card {
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.check-list li { position: relative; padding: 6px 0 6px 28px; color: var(--ink-700); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 6px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(18,184,134,0.14); color: var(--accent-500); font-size: .72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

/* ---- Challenges ---- */
.challenge-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
}
.challenge-card {
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.challenge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.challenge-ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(245,165,36,0.14); color: var(--accent-orange);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.challenge-card p { margin: 0; font-weight: 600; color: var(--ink-700); font-size: .95rem; }

/* ---- Solution pills ---- */
.solution-inner { text-align: center; }
.solution-inner .section-lead { max-width: 680px; margin: 0 auto; }
.solution-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.pill {
  padding: 10px 20px; border-radius: var(--radius-pill); background: var(--ink-50);
  border: 1px solid var(--ink-100); font-weight: 700; font-size: .85rem; color: var(--brand-700);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.pill:hover { background: var(--brand-500); color: #fff; border-color: var(--brand-500); transform: translateY(-2px); }

/* ---- Modules ---- */
.modules-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.module-tabs { display: flex; flex-direction: column; gap: 6px; position: sticky; top: calc(var(--header-h) + 20px); }
.module-tab {
  display: flex; align-items: center; gap: 12px; text-align: left; width: 100%;
  padding: 13px 16px; border-radius: var(--radius-md); border: 1px solid transparent;
  background: transparent; cursor: pointer; font-family: inherit; font-weight: 700; font-size: .88rem;
  color: var(--ink-500); transition: background .2s, color .2s, border-color .2s;
}
.module-tab .tab-ico { font-size: 1.1rem; }
.module-tab:hover { background: var(--white); color: var(--ink-900); }
.module-tab.active { background: var(--white); border-color: var(--ink-100); color: var(--brand-600); box-shadow: var(--shadow-sm); }

.module-panel {
  display: none; background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  animation: fadeIn .35s var(--ease);
}
.module-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.module-panel h3 { font-size: 1.4rem; margin-bottom: 8px; }
.module-panel > p.module-desc { color: var(--ink-500); margin-bottom: 24px; }
.module-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.module-cols h4 {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-300);
  margin-bottom: 12px; font-weight: 800;
}

/* ---- Communication ---- */
.comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.comm-card { position: relative; background: var(--ink-50); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--ink-100); }
.comm-card-featured { border-color: rgba(18,184,134,0.3); background: linear-gradient(180deg, rgba(18,184,134,0.06), var(--ink-50) 40%); }
.comm-badge {
  position: absolute; top: 28px; right: 28px; padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(18,184,134,0.14); color: var(--accent-500); font-size: .72rem; font-weight: 800;
  letter-spacing: .03em; text-transform: uppercase;
}
.comm-icon { font-size: 1.8rem; margin-bottom: 12px; }
.comm-card .check-list { margin-top: 14px; }
.comm-card .check-list li strong { color: var(--ink-900); }

/* ---- Benefits ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.benefit-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 22px; backdrop-filter: blur(6px);
  transition: transform .2s var(--ease), background .2s;
}
.benefit-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.benefit-card .b-ico { font-size: 1.4rem; margin-bottom: 10px; display: block; }
.benefit-card p { margin: 0; font-weight: 700; font-size: .92rem; color: #eef2fb; }

/* ---- Technology / Security ---- */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.feature-list { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.feature-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--ink-100); font-weight: 600; color: var(--ink-700); font-size: .95rem; }
.feature-list li:last-child { border-bottom: none; }
.feat-ico { font-size: 1.1rem; width: 30px; height: 30px; border-radius: 8px; background: var(--ink-50); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mini-head { margin-top: 28px; font-size: .95rem; }
.device-row { display: flex; flex-wrap: wrap; gap: 10px; }
.device { padding: 8px 16px; border-radius: var(--radius-pill); background: var(--ink-50); border: 1px solid var(--ink-100); font-weight: 700; font-size: .82rem; color: var(--ink-700); }

/* ---- Implementation timeline ---- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.timeline-step {
  position: relative; background: var(--white); border: 1px solid var(--ink-100);
  border-radius: var(--radius-md); padding: 24px 20px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.timeline-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline-num {
  width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  color: #fff; font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.timeline-step h4 { font-size: .78rem; text-transform: uppercase; color: var(--ink-300); letter-spacing: .04em; margin-bottom: 6px; font-weight: 800; }
.timeline-step p { margin: 0; font-weight: 700; color: var(--ink-900); font-size: .95rem; }

/* ---- Support ---- */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.support-item {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: var(--radius-md);
  background: var(--ink-50); border: 1px solid var(--ink-100); font-weight: 700; font-size: .92rem; color: var(--ink-700);
}

/* ---- Why choose us ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.why-item {
  padding: 18px 20px; border-radius: var(--radius-md); background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); font-weight: 700; font-size: .92rem;
  position: relative; padding-left: 44px;
}
.why-item::before {
  content: "★"; position: absolute; left: 16px; top: 18px; color: var(--accent-400); font-size: .9rem;
}

/* ---- Roadmap ---- */
.roadmap-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.roadmap-pill {
  padding: 12px 20px; border-radius: var(--radius-pill); font-weight: 700; font-size: .85rem;
  background: linear-gradient(135deg, rgba(46,92,196,.08), rgba(18,184,134,.08));
  border: 1px dashed var(--ink-300); color: var(--brand-700);
}

/* ---- CTA ---- */
.cta-section { background: var(--ink-900); }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: var(--ink-300); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list a { color: var(--brand-600); font-weight: 700; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .82rem; font-weight: 700; color: var(--ink-700); }
.form-row input, .form-row textarea {
  padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--ink-100);
  font-family: inherit; font-size: .95rem; color: var(--ink-900); background: var(--ink-50);
  transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--brand-500); background: var(--white);
}
.form-row input.invalid, .form-row textarea.invalid { border-color: #e53e3e; }
.form-error { font-size: .76rem; color: #e53e3e; min-height: 14px; }
.form-success { margin-top: 14px; color: var(--accent-500); font-weight: 700; font-size: .88rem; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--brand-900); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.1fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .brand-text { color: #fff; font-size: 1.2rem; font-weight: 800; }
.footer-brand p { margin-top: 12px; max-width: 32ch; font-size: .88rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.footer-links a { display: block; padding: 5px 0; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; font-size: .8rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   Back to top
   ============================================================ */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand-600); color: #fff; border: none; font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
  z-index: 800;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--brand-700); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-grid, .tech-grid, .comm-grid, .contact-grid { grid-template-columns: 1fr; }
  .modules-wrap { grid-template-columns: 1fr; }
  .module-tabs { position: static; flex-direction: row; flex-wrap: wrap; }
  .module-cols { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); transform: translateX(100%); transition: transform .3s var(--ease);
    padding: 24px; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav .nav-link { display: block; padding: 14px 10px; border-radius: var(--radius-sm); }
  .main-nav .nav-link:hover { background: var(--ink-50); }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .section { padding: 64px 0; }
  .timeline { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-trust { flex-wrap: wrap; gap: 20px; }
}
