@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');
/* Mobile-first form/modal layer — shared with app.css so register/login
 * get the same pill inputs + bottom-sheet treatment as in-app modules. */
@import url('/mobile-first.css');

/* ==========================================================================
   NZURA — PUBLIC SITE STYLESHEET  v5
   SimilarWeb-style · Full-width mega · Pill buttons · EN/SW toggle
   ========================================================================== */

:root {
  --cream:     #f9fbff;
  --cream-dk:  #eef3ff;
  --white:     #ffffff;
  --dark:      #092540;
  --dark2:     #0f2847;
  --dark3:     #142f54;
  --text:      #092540;
  --text2:     #3a4a5e;
  --muted:     #6a7a8a;
  --accent:    #195AFE;
  --accent-dk: #1048d4;
  --accent-lt: #eef2ff;
  --orange:    #ff7a1a;
  --orange-dk: #e56a10;
  --line:      #d8dce8;
  --line-dk:   rgba(255,255,255,.1);
  --green:     #22b378;
  --font:      'Open Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --max:       1248px;
  --r:         8px;
  --r-lg:      12px;
  --r-pill:    2.625rem;
  --t:         .2s ease;
  --gradient:  linear-gradient(90deg, #195AFE 0.39%, #3A56E8 28.56%, #C44C93 65.51%, #FF6D03 87.47%, #FF9603 99.69%);
  --shadow-card: 0 3px 5px rgba(42,62,82,.12);
  --shadow-nav:  0 6px 11px rgba(25,90,254,.13);
  --shadow-mega: 0 32px 32px rgba(64,68,77,.16);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body  { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; font-size: 15px; }
img   { max-width: 100%; display: block; }
a     { color: inherit; }
button{ cursor: pointer; font-family: var(--font); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); }

/* ── Language toggle ────────────────────────────────────────────────────── */
.sw-show  { display: none; }
.en-show  { display: inline; }
.sw-block { display: none; }
.en-block { display: block; }
.lang-sw .sw-show  { display: inline; }
.lang-sw .en-show  { display: none; }
.lang-sw .sw-block { display: block; }
.lang-sw .en-block { display: none; }

/* ── Announcement bar ───────────────────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #1a2980 0%, #2744a8 50%, #26408b 100%);
  color: #fff;
  text-align: center;
  padding: .55rem 1.25rem;
  font-size: .82rem;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  position: relative;
  z-index: 501;
}
.announce-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .15rem .65rem;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 20px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.announce-text { opacity: .9; }
.announce-link {
  color: #fff; font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.announce-link:hover { opacity: .85; }
.announce-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.1rem; cursor: pointer; padding: .2rem;
  transition: color .15s;
}
.announce-close:hover { color: #fff; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: none;
  transition: box-shadow .2s ease;
}
/* Gradient line under entire header */
.topnav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: .7;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: .5rem; height: 64px;
}

/* Brand */
.nav-brand {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none; flex-shrink: 0; margin-right: 1.5rem;
}
.nav-logo     { height: 32px; width: auto; }
.nav-wordmark { height: 24px; width: auto; }

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: .05rem; flex: 1; min-width: 0; }
.nav-link {
  padding: .4rem .72rem; color: var(--text);
  text-decoration: none; font-size: .875rem; font-weight: 500;
  font-family: var(--font);
  border-radius: var(--r); transition: color var(--t);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

/* Modules mega-dropdown trigger */
.nav-drop { position: static; }
.nav-drop-btn {
  display: flex; align-items: center; gap: .3rem;
  padding: .4rem .72rem; border: none; background: none;
  font-size: .875rem; font-weight: 500;
  font-family: var(--font);
  color: var(--text); border-radius: var(--r);
  transition: color var(--t);
  white-space: nowrap;
}
.nav-drop-btn:hover { color: var(--accent); }
.nav-chev { width: 14px; height: 14px; opacity: .45; transition: transform .2s; flex-shrink: 0; }
.nav-drop.open .nav-chev { transform: rotate(180deg); }

/* Mega dropdown panel — full-width SimilarWeb style */
.nav-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-mega);
  padding: 2rem 0;
  z-index: 600;
}
.nav-drop.open .nav-mega { display: block; }

.mega-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 2rem;
}
.mega-category {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mega-cat-label {
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  padding: 0 .75rem .55rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: .35rem;
}

.mega-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .75rem; border-radius: var(--r);
  text-decoration: none; color: var(--text); font-size: .84rem;
  transition: background var(--t);
}
.mega-item:hover { background: rgba(25,90,254,.04); }
.mega-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.mega-title { font-size: .84rem; font-weight: 600; font-family: var(--font); display: block; line-height: 1.25; }
.mega-sub   { font-size: .74rem; color: var(--muted); display: block; line-height: 1.4; margin-top: .1rem; }

body {
  font-family: var(--font-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-link,
.section-title,
.mega-title {
  font-family: var(--font) !important;
  letter-spacing: -0.02em;
}

.eyebrow,
.mega-cat-label,
.announce-badge,
.footer-title {
  letter-spacing: .14em !important;
}

.site-nav a,
.inline-link,
.card-links a,
.site-footer a,
.nav-link:hover,
.nav-link.active,
.nav-drop-btn:hover {
  color: var(--orange-dk);
}

/* Mega menu promotional sidebar */
.mega-promo {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border: 1px solid var(--line);
}
.mega-promo-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent);
  background: rgba(25,90,254,.08); padding: .2rem .6rem;
  border-radius: 20px; width: fit-content;
}
.mega-promo-title {
  font-size: 1rem; font-weight: 700; font-family: var(--font);
  color: var(--text); line-height: 1.3;
}
.mega-promo-desc {
  font-size: .82rem; color: var(--muted); line-height: 1.55;
}
.mega-promo-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem 1.2rem; background: var(--orange); color: #fff;
  border-radius: var(--r-pill); font-size: .82rem; font-weight: 700;
  font-family: var(--font); text-decoration: none;
  transition: background var(--t);
  width: fit-content;
}
.mega-promo-cta:hover { background: var(--orange-dk); }

/* Nav right-side actions */
.nav-actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; flex-shrink: 0; }

/* Language toggle — always visible */
.btn-lang {
  display: flex; align-items: center; gap: .28rem;
  padding: .3rem .62rem; border: 1.5px solid var(--line);
  border-radius: 20px; font-size: .77rem; font-weight: 700;
  color: var(--muted); background: none; transition: all var(--t);
  white-space: nowrap; flex-shrink: 0;
}
.btn-lang:hover { border-color: var(--accent); color: var(--accent); }

/* "Get started" — gradient pill like SimilarWeb */
.btn-signup {
  padding: .52rem 1.4rem;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 700; text-decoration: none;
  font-family: var(--font);
  transition: opacity var(--t), box-shadow var(--t);
  white-space: nowrap;
  background-size: 110% 110%;
}
.btn-signup:hover { opacity: .9; box-shadow: 0 4px 14px rgba(25,90,254,.25); }

/* Divider before Login */
.nav-divider {
  width: 1px; height: 24px;
  background: var(--line);
  flex-shrink: 0;
}

/* "Login" — plain text like SimilarWeb */
.btn-login {
  padding: .3rem .1rem; border: none;
  font-size: .84rem; font-weight: 500;
  font-family: var(--font);
  color: var(--text); text-decoration: none; transition: color var(--t);
  white-space: nowrap;
  background: none;
}
.btn-login:hover { color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: 1.5px solid var(--line);
  border-radius: var(--r); padding: .4rem .62rem; color: var(--text);
  font-size: 1.05rem; transition: border-color var(--t);
  align-items: center; flex-shrink: 0;
}
.hamburger:hover { border-color: var(--accent); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 490;
  overflow-y: auto; padding: 1rem 1rem 2rem;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: block; }
.mn-section-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted);
  padding: .4rem .6rem; margin-top: .25rem;
}
.mn-link {
  display: flex; align-items: center; padding: .65rem .6rem;
  color: var(--text); text-decoration: none;
  font-size: .9rem; font-weight: 500;
  border-radius: var(--r); transition: background var(--t);
}
.mn-link:hover { background: rgba(25,90,254,.05); }
.mn-modules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem; margin: .2rem 0; }
.mn-mod {
  display: flex; align-items: center; gap: .42rem;
  padding: .5rem .6rem; border-radius: 8px;
  text-decoration: none; color: var(--text); font-size: .82rem; font-weight: 500;
  transition: background var(--t);
}
.mn-mod:hover { background: rgba(25,90,254,.05); }
.mn-mod-icon { font-size: .88rem; }
.mn-divider { height: 1px; background: var(--line); margin: .85rem 0; }
.mn-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.mn-actions .btn-login  { text-align: center; border-radius: var(--r-pill); display: block; padding: .55rem; border: 1.5px solid var(--line); color: var(--text); font-weight: 600; }
.mn-actions .btn-signup { text-align: center; border-radius: var(--r-pill); display: block; padding: .55rem; background: var(--gradient); border: none; color: #fff; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, #092540 0%, #0f2847 60%, #142f54 100%);
  color: #fff;
  padding: 5.5rem 1.25rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle glow behind hero */
.hero::after {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(25,90,254,.18) 0%, rgba(180,82,140,.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; margin: 0 auto; }

/* Homepage hero — 3-column layout with perspective side visuals */
.hero-center { overflow: clip; }
.hero-center .hero-inner{
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero dashboards section (below trust bar) */
.hero-dashboards{
  padding: 2.5rem 1rem 3rem;
  overflow: clip;
}
.hero-dashboards-grid{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
/* Single-image variant — one column, centered, full width */
.hero-dashboards-grid--single{
  grid-template-columns: 1fr;
  max-width: 1200px;
}
.hero-persp--single{
  perspective: none;
}
.hero-dashboards .hero-persp--single{ animation: none; }
.hero-shot-single{
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 8px 32px rgba(0,0,0,.25),
    0 32px 80px rgba(0,0,0,.2);
  background: rgba(255,255,255,.05);
  transform: none;
  transition: transform .5s cubic-bezier(.25,.1,.25,1), box-shadow .5s ease;
}
@media (hover:hover) {
  .hero-shot-single:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10,22,40,.18), 0 40px 100px rgba(25,90,254,.12);
  }
}
.hero-persp{
  perspective: 1000px;
  perspective-origin: center;
  width: 100%;
}

/* Floating animation */
@keyframes hero-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
.hero-dashboards .hero-persp{ animation: hero-float 5s ease-in-out infinite; }
.hero-dashboards .hero-persp:last-child{ animation-delay: -2.5s; }

.hero-shot{
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 8px 32px rgba(0,0,0,.25),
    0 32px 80px rgba(0,0,0,.2);
  background: rgba(255,255,255,.05);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .5s cubic-bezier(.25,.1,.25,1), box-shadow .5s ease;
}
.hero-shot-left{
  transform: rotateY(18deg) rotateX(2deg) scale(.98);
}
.hero-shot-right{
  transform: rotateY(-18deg) rotateX(2deg) scale(.98);
}

/* Glow effect behind images */
.hero-persp{ position: relative; }
.hero-persp::before{
  content: '';
  position: absolute;
  inset: 10% 5%;
  border-radius: 24px;
  z-index: -1;
  filter: blur(50px);
  opacity: .3;
  pointer-events: none;
}
.hero-side-left .hero-persp::before{
  background: radial-gradient(ellipse at center, #408dfb, transparent 70%);
}
.hero-side-right .hero-persp::before{
  background: radial-gradient(ellipse at center, #e8874a, transparent 70%);
}

@media (hover:hover) {
  .hero-shot-left:hover{
    transform: rotateY(12deg) rotateX(1deg) scale(1) translateY(-4px);
    box-shadow: 0 12px 40px rgba(10,22,40,.12), 0 40px 100px rgba(25,90,254,.1);
  }
  .hero-shot-right:hover{
    transform: rotateY(-12deg) rotateX(1deg) scale(1) translateY(-4px);
    box-shadow: 0 12px 40px rgba(10,22,40,.12), 0 40px 100px rgba(255,109,3,.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dashboards .hero-persp{ animation: none; }
  .hero-shot, .hero-shot-left:hover, .hero-shot-right:hover { transform: none !important; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(25,90,254,.15); border: 1px solid rgba(25,90,254,.3);
  color: #93b8ff; padding: .35rem 1rem; border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 700; font-family: var(--font);
  letter-spacing: .04em; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15;
  color: #fff; margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: .05em .1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-sub {
  font-size: .95rem; color: rgba(255,255,255,.6);
  max-width: 540px; margin: 0 auto 1.75rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.btn-hp {
  padding: .75rem 1.75rem; border-radius: var(--r-pill);
  font-size: .87rem; font-weight: 700; font-family: var(--font);
  text-decoration: none;
  transition: all var(--t); border: 2px solid transparent;
  display: inline-block;
}
.btn-hp-primary { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 4px 14px rgba(255,122,26,.35); }
.btn-hp-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); box-shadow: 0 6px 20px rgba(255,122,26,.4); transform: translateY(-1px); }
.btn-hp-ghost   { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.25); }
.btn-hp-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
/* Light-bg variant for ghost button (pricing, modules sections) */
.btn-hp-ghost-light { background: transparent; color: var(--text); border-color: var(--line); }
.btn-hp-ghost-light:hover { border-color: var(--accent); color: var(--accent); }

.hero-proof { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.proof-chip { font-size: .8rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: .35rem; }
.proof-chip::before { content: '✓'; color: #5eead4; font-weight: 700; }

.hero-chips { display: flex; gap: .45rem; justify-content: center; flex-wrap: wrap; max-width: 700px; margin: .5rem auto 0; }
.hero-chip {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: .32rem .72rem; font-size: .77rem; color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: .35rem;
  transition: background var(--t);
}
.hero-chip:hover { background: rgba(255,255,255,.1); }
.hero-connected {
  margin: .75rem auto 1.25rem;
  font-size: .85rem; font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .03em; text-transform: lowercase;
}

/* ── Trust bar / Integrations ───────────────────────────────────────────── */
.trust-bar {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(25,90,254,.04), transparent 70%),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.75rem 1.25rem 3rem;
  text-align: center;
}
.trust-label {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .7rem; font-weight: 700; font-family: var(--font);
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--accent);
  margin: 0 auto 1.75rem;
  padding: .4rem 1rem;
  background: rgba(25,90,254,.06);
  border: 1px solid rgba(25,90,254,.12);
  border-radius: var(--r-pill);
}
.trust-label::before, .trust-label::after {
  content: ''; display: inline-block; width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.trust-label::after { background: linear-gradient(90deg, var(--accent), transparent); }
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  font-size: .82rem; font-weight: 600; font-family: var(--font);
  color: var(--muted); opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}
.trust-item:hover { opacity: 1; color: var(--text); }

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px; margin: 0 auto;
  align-items: stretch; text-align: left;
}
.integration-cat {
  display: flex; flex-direction: column; gap: .85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1.2rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.integration-cat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: .9;
}
.integration-cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(9,37,64,.06);
  border-color: rgba(25,90,254,.18);
}
.integration-cat-head {
  display: flex; align-items: center; gap: .6rem;
}
.integration-cat-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-lt); color: var(--accent);
  font-size: 1rem; flex-shrink: 0;
}
.integration-cat-label {
  font-size: .7rem; font-weight: 800; font-family: var(--font);
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text);
  line-height: 1.2;
}
.integration-items { display: flex; flex-wrap: wrap; gap: .4rem; }
.integration-items .trust-item {
  font-size: .76rem; font-weight: 600;
  color: var(--text2);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: .3rem .6rem; border-radius: 6px;
  opacity: 1; line-height: 1.3;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.integration-items .trust-item:hover {
  background: var(--accent-lt);
  border-color: rgba(25,90,254,.25);
  color: var(--accent);
}
@media (max-width: 980px) {
  .integration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
}
@media (max-width: 520px) {
  .trust-bar { padding: 2rem 1rem 2.25rem; }
  .integration-grid { grid-template-columns: 1fr; }
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section       { padding: 5rem 1.25rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-hd    { margin-bottom: 2.5rem; text-align: center; }
.section-hd .section-sub { margin: 0 auto; }

.eyebrow {
  display: inline-block; background: rgba(25,90,254,.06); color: var(--accent);
  padding: .35rem 1.1rem; border-radius: var(--r-pill); font-size: .72rem;
  font-weight: 700; font-family: var(--font);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .85rem;
  border: 1px solid rgba(25,90,254,.1);
}
.eyebrow-dark { background: rgba(25,90,254,.15); color: #8CC0FF; border-color: rgba(25,90,254,.2); }

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 700; line-height: 1.2; margin-bottom: .6rem;
}
.section-title em  { font-style: normal; color: var(--accent); }
.section-title-light     { color: #fff; }
.section-title-light em  { color: #93b8ff; }
.section-sub { font-size: .92rem; color: var(--muted); max-width: 580px; line-height: 1.7; }
.section-sub-light { color: rgba(255,255,255,.6); max-width: 100%; }

/* ── App grid ──────────────────────────────────────────────────────────── */
.modules-section { background: var(--cream); }
.app-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.app-tile {
  position: relative; background: var(--white); border: 1px solid transparent;
  border-radius: var(--r); padding: 1.35rem 1rem 1rem;
  text-align: center; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.app-tile:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-card);
  border-color: var(--line); z-index: 10;
}
.app-tile-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--ac, var(--cream));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: .55rem;
}
.app-tile-name { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.app-tile-sub { font-size: .65rem; color: var(--muted); line-height: 1.3; margin-top: .15rem; }
.app-ai-chip {
  position: absolute; top: .45rem; right: .45rem;
  background: rgba(124,58,237,.1); color: #7c3aed;
  font-size: .56rem; font-weight: 800; padding: 2px 6px;
  border-radius: 6px; letter-spacing: .05em;
}

/* Hover popup */
.app-popup {
  display: none; position: absolute;
  top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  width: 260px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: 0 16px 48px rgba(10,22,40,.14), 0 4px 12px rgba(10,22,40,.06);
  padding: .85rem; z-index: 100; text-align: left;
}
.app-popup::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--white);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.app-tile:hover .app-popup { display: block; }
/* Prevent popup clipping on left/right edge tiles */
.app-tile:first-child .app-popup,
.app-tile:nth-child(4n+1) .app-popup { left: 0; transform: none; }
.app-tile:first-child .app-popup::before,
.app-tile:nth-child(4n+1) .app-popup::before { left: 28px; transform: rotate(45deg); }
.app-tile:nth-child(4n) .app-popup { left: auto; right: 0; transform: none; }
.app-tile:nth-child(4n) .app-popup::before { left: auto; right: 28px; transform: rotate(45deg); }

/* Mini dashboard preview in popup */
.app-popup-preview {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 8px; padding: .55rem; margin-bottom: .6rem; overflow: hidden;
}
.ap-head {
  font-size: .6rem; font-weight: 700; color: #fff;
  background: var(--ac, var(--accent)); padding: .2rem .4rem;
  border-radius: 4px; margin-bottom: .35rem; display: inline-block;
}
.ap-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .6rem; color: var(--muted); padding: .12rem 0;
  border-bottom: 1px solid rgba(226,217,207,.6);
}
.ap-row:last-of-type { border-bottom: none; }
.ap-row b { color: var(--text); font-weight: 700; font-size: .6rem; }
.ap-hl {
  background: rgba(34,179,120,.06); border-radius: 4px;
  padding: .15rem .2rem; margin: .08rem -.2rem; border-bottom: none;
}
.ap-bars {
  display: flex; align-items: flex-end; gap: 2px; height: 22px; margin-top: .35rem;
}
.ap-bars i {
  flex: 1; background: var(--ac, var(--accent));
  border-radius: 2px 2px 0 0; opacity: .3; font-style: normal;
}
.app-popup-desc { font-size: .74rem; color: var(--muted); line-height: 1.55; margin: 0; }
.app-grid-note {
  text-align: center; font-size: .82rem; color: var(--muted);
  margin-top: 1.75rem; font-weight: 500;
}
/* No hover popup on touch devices */
@media (hover: none) { .app-popup { display: none !important; } }

/* ── Features ───────────────────────────────────────────────────────────── */
.features-section { background: var(--cream); }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; padding: 3rem 0; border-top: 1px solid var(--line);
}
.feature-row:first-of-type { border-top: none; padding-top: 0; }
.feature-row.rev { direction: rtl; }
.feature-row.rev > * { direction: ltr; }
.feature-copy h2 { font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-weight: 800; line-height: 1.22; margin-bottom: .75rem; }
.feature-copy h2 em { font-style: normal; color: var(--accent); }
.feature-copy p { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.feat-list li { display: flex; align-items: flex-start; gap: .4rem; font-size: .8rem; color: var(--text2); }
.feat-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.feature-visual {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem;
  min-height: 260px; display: flex; align-items: center; justify-content: center;
}
/* Mockup card inside feature visual */
.mockup {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: .9rem; width: 100%;
  box-shadow: 0 2px 10px rgba(26,23,20,.06);
}
.mockup-bar {
  display: flex; gap: .4rem; align-items: center;
  padding-bottom: .6rem; border-bottom: 1px solid var(--line); margin-bottom: .6rem;
}
.m-dot   { width: 9px; height: 9px; border-radius: 50%; }
.m-title { font-size: .7rem; font-weight: 600; color: var(--muted); margin-left: .2rem; }
.m-row {
  display: flex; gap: .45rem; align-items: center;
  padding: .36rem 0; border-bottom: 1px solid #f0ebe5; font-size: .74rem; color: var(--muted);
}
.m-row:last-child { border-bottom: none; }
.m-lbl { flex: 1; }
.m-val { font-weight: 600; color: var(--text); }
.m-badge { padding: 1px 7px; border-radius: 8px; font-size: .64rem; font-weight: 700; white-space: nowrap; }
.bg-g { background: rgba(34,179,120,.1); color: #22b378; }
.bg-b { background: rgba(64,141,251,.1); color: #408dfb; }
.bg-o { background: rgba(220,157,40,.1); color: #dc9d28; }
.bg-r { background: rgba(247,82,90,.1); color: #f7525a; }
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 36px; margin-top: .65rem; }
.mini-bar  { flex: 1; border-radius: 3px 3px 0 0; min-width: 0; }

/* ── Compliance (dark section) ──────────────────────────────────────────── */
.compliance-section { background: var(--dark); position: relative; overflow: hidden; }
.compliance-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
}
.comp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; margin-top: 2.5rem; }
.comp-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 1.35rem;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  backdrop-filter: blur(4px);
}
.comp-card:hover { background: rgba(25,90,254,.1); border-color: rgba(25,90,254,.3); transform: translateY(-4px); }
.comp-icon  { font-size: 1.4rem; margin-bottom: .6rem; }
.comp-card h3 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.comp-card p  { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.comp-footer  { display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; margin-top: 2.25rem; }
.comp-ft-item { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: rgba(255,255,255,.55); }
.comp-ft-item::before { content: '✓'; color: #93b8ff; font-weight: 700; }

/* ── Pricing (homepage inline snippet) ─────────────────────────────────── */
.pricing-section { background: #f1f6ff; border-bottom: none; }

/* ── Category switch (Companies / Microfinance + Hotel) ── */
.plan-cat-switch {
  display: inline-flex; gap: .25rem; padding: .2rem; margin: 0 auto 1.5rem;
  border: 1px solid var(--line); border-radius: 999px; background: var(--cream-dk);
}
.plan-cat-btn {
  border: none; background: transparent; color: var(--muted); font-family: var(--font);
  font-weight: 700; font-size: .84rem; min-height: 36px; padding: 0 1.15rem;
  border-radius: 999px; cursor: pointer; transition: background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.plan-cat-btn:hover { color: var(--text); }
.plan-cat-btn.active { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(25,90,254,.22); }
.plan-cat-desc { font-size: .72rem; font-weight: 400; opacity: .85; margin-left: .3rem; display: none; }
@media (min-width: 640px) { .plan-cat-desc { display: inline; } }
.plan-cat-btn-highlight { position: relative; }
.plan-cat-badge {
  display: inline-block; font-size: .55rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; background: #ff7a1a; color: #fff; padding: 1px 6px;
  border-radius: 8px; margin-left: .3rem; vertical-align: middle; line-height: 1.5;
}
.plan-cat-btn.active .plan-cat-badge { background: rgba(255,255,255,.25); color: #fff; }

/* ── Billing toggle ── */
.pricing-toggle {
  display: flex; align-items: center; gap: 0; justify-content: center;
  margin: 0 auto 2rem; background: var(--cream-dk); border-radius: 12px;
  padding: 4px; max-width: 420px;
}
.p-tab {
  flex: 1; padding: .55rem .75rem; font-size: .82rem; font-weight: 600;
  color: var(--muted); background: transparent; border: none; border-radius: 10px;
  cursor: pointer; transition: all var(--t); text-align: center; white-space: nowrap;
}
.p-tab:hover { color: var(--text); }
.p-tab.active { background: var(--white); color: var(--text); box-shadow: 0 1px 4px rgba(26,23,20,.08); }
.p-tab .save-pill { margin-left: .35rem; }
.save-pill { background: rgba(34,179,120,.1); color: #22b378; padding: 2px 9px; border-radius: 10px; font-size: .68rem; font-weight: 700; }

/* ── Plan grid — always 3 columns on desktop, stack on mobile ── */
.plan-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 1080px; margin: 0 auto; align-items: start;
}
.plan-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); max-width: 720px; }

/* ── Plan card — SimilarWeb-inspired tall vertical card ── */
.plan-card {
  background: var(--white); border: 2px solid var(--line); border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem; position: relative; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(9,37,64,.1); }
.plan-card.featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 8px 32px rgba(25,90,254,.12);
  background: linear-gradient(180deg, #f6f9ff 0%, #fff 100%);
  transform: scale(1.03);
  z-index: 1;
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 16px 48px rgba(25,90,254,.16); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap; letter-spacing: .02em;
}
.plan-name {
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: .6rem;
}
.plan-price { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
.plan-price sub { font-size: .8rem; font-weight: 500; color: var(--muted); }
.plan-period { font-size: .78rem; color: var(--muted); margin: .3rem 0 .85rem; }
.plan-summary { font-size: .82rem; color: var(--text2); line-height: 1.6; margin: 0 0 1.25rem; }

/* ── CTA button ── */
.plan-cta {
  display: block; text-align: center; padding: .7rem;
  border-radius: var(--r-pill); font-size: .87rem; font-weight: 700;
  font-family: var(--font); text-decoration: none; transition: all var(--t);
  border: 2px solid transparent; margin-bottom: 1.25rem;
}
.plan-cta-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.plan-cta-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); box-shadow: 0 4px 14px rgba(255,122,26,.3); }
.plan-cta-outline { border-color: var(--line); color: var(--text); }
.plan-cta-outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-cta-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.plan-cta-dark:hover { background: var(--dark2); border-color: var(--dark2); }

/* ── Feature list (replaces old app panel) ── */
.plan-feat-divider { height: 1px; background: var(--line); margin-bottom: 1rem; }
.plan-feats { list-style: none; flex: 1; display: flex; flex-direction: column; gap: .5rem; margin: 0; padding: 0; }
.plan-feats li {
  font-size: .82rem; display: flex; gap: .55rem; align-items: flex-start;
  color: var(--text2); line-height: 1.45;
}
.plan-feats li::before { display: none; }
.plan-feats li.no { color: var(--muted); }
.plan-feats li.no::before { content: '—'; color: #a8998d; }
.plan-feat-label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: .6rem;
}

.pricing-note { text-align: center; font-size: .79rem; color: var(--muted); margin-top: 1.5rem; }

/* Hide inactive category group */
.plan-cat-group { display: none; }
.plan-cat-group.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1080px; margin: 0 auto; align-items: start; }
.plan-cat-group[data-cols="2"].active { grid-template-columns: repeat(2, 1fr); max-width: 720px; }

@media (max-width: 860px) {
  .plan-grid, .plan-cat-group.active { gap: .6rem; }
  .plan-cat-group[data-cols="2"].active { gap: .6rem; }
  .plan-card { padding: 1.1rem .8rem .9rem; border-radius: 12px; }
  .plan-card.featured { transform: scale(1.02); }
  .plan-card.featured:hover { transform: scale(1.02) translateY(-2px); }
  .plan-badge { font-size: .6rem; padding: 3px 10px; top: -10px; }
  .plan-name { font-size: .65rem; letter-spacing: .08em; margin-bottom: .35rem; }
  .plan-price { font-size: 1.3rem; }
  .plan-price sub { font-size: .65rem; }
  .plan-period { font-size: .62rem; margin: .2rem 0 .5rem; }
  .plan-summary { font-size: .68rem; line-height: 1.45; margin: 0 0 .75rem; }
  .plan-cta { padding: .45rem; font-size: .72rem; margin-bottom: .75rem; border-radius: 20px; }
  .plan-feat-divider { margin-bottom: .6rem; }
  .plan-feat-label { font-size: .55rem; margin-bottom: .35rem; }
  .plan-feats { gap: .25rem; }
  .plan-feats li { font-size: .62rem; gap: .3rem; }
  .plan-feats li::before { font-size: .65rem; }
}
@media (max-width: 520px) {
  .plan-card { padding: .85rem .6rem .7rem; border-radius: 10px; }
  .plan-card.featured { transform: scale(1.01); }
  .plan-name { font-size: .58rem; margin-bottom: .25rem; }
  .plan-price { font-size: 1.05rem; }
  .plan-price sub { font-size: .55rem; }
  .plan-period { font-size: .55rem; margin: .15rem 0 .4rem; }
  .plan-summary { font-size: .6rem; line-height: 1.35; margin: 0 0 .55rem; }
  .plan-cta { padding: .35rem; font-size: .63rem; margin-bottom: .55rem; }
  .plan-feat-label { font-size: .5rem; margin-bottom: .25rem; }
  .plan-feats { gap: .15rem; }
  .plan-feats li { font-size: .55rem; gap: .2rem; }
  .plan-feats li::before { font-size: .55rem; }
  .plan-badge { font-size: .52rem; padding: 2px 8px; top: -9px; }
  .plan-cat-btn { font-size: .7rem; min-height: 30px; padding: 0 .8rem; }
  .pricing-toggle { flex-wrap: wrap; max-width: 100%; }
  .p-tab { font-size: .68rem; padding: .4rem .45rem; }
}

/* Module pricing grid (pricing page) */
.mod-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.mpc {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.2rem;
}
.mpc-icon  { font-size: 1.3rem; margin-bottom: .5rem; }
.mpc-name  { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .35rem; }
.mpc-price { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: .15rem; }
.mpc-ent   { font-size: .78rem; color: var(--muted); }
.mpc-links { display: flex; gap: .65rem; margin-top: .75rem; }
.mpc-links a { font-size: .77rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.mpc-links a:hover { text-decoration: underline; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.testi-card {
  background: var(--white); border: 1px solid transparent;
  border-radius: var(--r); padding: 1.35rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line); }
.testi-stars { color: #dc9d28; font-size: .85rem; margin-bottom: .6rem; letter-spacing: .05em; }
.testi-quote { font-size: .84rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .65rem; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .8rem; flex-shrink: 0;
}
.testi-name { font-size: .85rem; font-weight: 700; }
.testi-role { font-size: .73rem; color: var(--muted); }

/* ── CTA Section (dark) ─────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(180deg, #092540 0%, #0a1a30 100%);
  color: #fff; text-align: center; padding: 5.5rem 1.25rem;
  position: relative; overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(25,90,254,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .btn-hp-primary { background: var(--orange); border-color: var(--orange); box-shadow: 0 4px 14px rgba(255,122,26,.4); }
.cta-section .btn-hp-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); }
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: .75rem; }
.cta-section > .section-inner > p { font-size: .92rem; color: rgba(255,255,255,.6); margin-bottom: 1.75rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.cta-proof { display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; }
.cta-proof-item { font-size: .82rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: .35rem; }
.cta-proof-item::before { content: '✓'; color: #93b8ff; font-weight: 700; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #061122; color: rgba(255,255,255,.5); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .75rem; text-decoration: none;
}
.footer-brand-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand-name { font-size: 1.05rem; font-weight: 800; color: rgba(255,255,255,.75); display: none; }
.footer-tagline { font-size: .81rem; line-height: 1.7; max-width: 240px; }
.footer-contacts { margin-top: .85rem; display: flex; flex-direction: column; gap: .3rem; }
.footer-contacts a {
  color: rgba(255,255,255,.5); text-decoration: none; font-size: .79rem;
  display: flex; align-items: center; gap: .35rem; transition: color var(--t);
}
.footer-contacts a:hover { color: rgba(255,255,255,.8); }
.footer-social { display: flex; gap: .45rem; margin-top: .85rem; }
.footer-social a {
  width: 30px; height: 30px; background: rgba(255,255,255,.07); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: .75rem;
  color: rgba(255,255,255,.5); text-decoration: none; transition: background var(--t), color var(--t);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 700; margin-bottom: .85rem; }
.footer-col a {
  display: block; color: rgba(255,255,255,.5); text-decoration: none;
  font-size: .79rem; margin-bottom: .45rem; transition: color var(--t);
}
.footer-col a:hover { color: rgba(255,255,255,.8); }

/* Footer apps — compact chip grid */
.footer-apps-wrap {
  display: flex; flex-wrap: wrap; gap: .35rem;
}
.footer-app-chip {
  display: inline-block !important;
  padding: .25rem .55rem; margin-bottom: 0 !important;
  background: rgba(255,255,255,.06); border-radius: 6px;
  font-size: .72rem !important; color: rgba(255,255,255,.5); text-decoration: none;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.footer-app-chip:hover { background: var(--accent); color: #fff; }

.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .77rem; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── Page hero (pricing page, etc.) ────────────────────────────────────── */
.pg-hero {
  background: linear-gradient(180deg, #092540 0%, #0f2847 100%);
  color: #fff;
  border-bottom: none;
  padding: 3rem 1.25rem 2.5rem;
  position: relative;
}
.pg-hero .section-title { color: #fff; }
.pg-hero .section-title em { color: #93b8ff; }
.pg-hero .section-sub { color: rgba(255,255,255,.6); }
.pg-hero .eyebrow { background: rgba(25,90,254,.15); border-color: rgba(25,90,254,.3); color: #93b8ff; }
.pg-hero .section-inner { text-align: center; }
.pg-hero .section-sub { max-width: 520px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--muted); margin-bottom: 1.25rem;
  justify-content: center;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: .4; }

/* FAQ */
.faq-item { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-size: .93rem; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 1.1rem; font-weight: 400; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-top: .65rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* Plan compare note */
.plan-compare-note {
  background: var(--cream-dk); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.25rem 1.5rem; margin-top: 2rem;
}
.plan-compare-note p { font-size: .87rem; color: var(--muted); }
.plan-compare-note strong { color: var(--text); }

/* ── Auth pages ─────────────────────────────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; flex-direction: column; }
.auth-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
}
.auth-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem; width: 100%; max-width: 420px;
  box-shadow: 0 4px 28px rgba(26,23,20,.08);
}
.auth-card-wide { max-width: 520px; }
.auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-logo img { height: 34px; width: auto; margin: 0 auto; }
.auth-title { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: .25rem; }
.auth-sub   { font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem; }
.auth-title, .auth-sub { text-align: center; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: .8rem; font-weight: 600; color: var(--text);
  margin-bottom: .38rem;
}
.form-input {
  width: 100%; padding: .55rem .75rem; border: 1.5px solid var(--line);
  border-radius: var(--r); font-size: .84rem; font-family: var(--font);
  background: var(--white); color: var(--text);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(25,90,254,.1); }
.form-input::placeholder { color: #a8998d; }
.form-select {
  width: 100%; padding: .55rem .75rem; border: 1.5px solid var(--line);
  border-radius: var(--r); font-size: .84rem; font-family: var(--font);
  background: var(--white); color: var(--text);
  transition: border-color var(--t); outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c5148' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center;
  padding-right: 2.25rem;
}
.form-select:focus { border-color: var(--accent); }
.form-hint { font-size: .75rem; color: var(--muted); margin-top: .3rem; }
.form-divider {
  display: flex; align-items: center; gap: .75rem;
  margin: 1.4rem 0; color: var(--muted); font-size: .8rem;
}
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.form-check { display: flex; align-items: flex-start; gap: .55rem; font-size: .82rem; color: var(--text2); }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.form-check a { color: var(--accent); text-decoration: none; }
.form-check a:hover { text-decoration: underline; }
.btn-full {
  display: block; width: 100%; padding: .72rem; background: var(--orange); color: #fff;
  border: none; border-radius: var(--r-pill); font-size: .93rem; font-weight: 700;
  font-family: var(--font); transition: background var(--t); margin-top: 1.2rem;
}
.btn-full:hover { background: var(--orange-dk); }
.btn-full-outline {
  display: block; width: 100%; padding: .7rem; background: transparent;
  border: 1.5px solid var(--line); border-radius: var(--r);
  font-size: .9rem; font-weight: 600; font-family: var(--font); color: var(--text);
  transition: all var(--t); margin-top: .65rem; text-align: center; text-decoration: none;
}
.btn-full-outline:hover { border-color: var(--accent); color: var(--accent); }
.auth-footer-link {
  text-align: center; font-size: .84rem; color: var(--muted); margin-top: 1.5rem;
}
.auth-footer-link a { color: var(--accent); font-weight: 600; text-decoration: none; }
.auth-footer-link a:hover { text-decoration: underline; }
.password-wrap { position: relative; }
.password-wrap .form-input { padding-right: 2.8rem; }
.pw-toggle {
  position: absolute; right: .75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; padding: .2rem; color: var(--muted); font-size: .85rem;
  transition: color var(--t);
}
.pw-toggle:hover { color: var(--text); }
.strength-bar { display: flex; gap: 3px; margin-top: .4rem; }
.strength-seg { flex: 1; height: 3px; border-radius: 3px; background: var(--line); transition: background .3s; }
.strength-seg.weak   { background: #f7525a; }
.strength-seg.medium { background: #dc9d28; }
.strength-seg.strong { background: #22b378; }
.step-indicator { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .73rem; font-weight: 700; border: 2px solid var(--line); color: var(--muted); background: var(--white);
  transition: all .2s;
}
.step-dot.active { border-color: var(--accent); color: var(--accent); }
.step-dot.done   { background: var(--accent); border-color: var(--accent); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--line); max-width: 60px; }
.step-line.done { background: var(--accent); }

/* ── Module Marketing Pages ─────────────────────────────────────────────── */
.mod-hero {
  background: linear-gradient(180deg, #092540 0%, #0f2847 100%);
  color: #fff;
  padding: 4.5rem 1.25rem 4rem; text-align: center;
  position: relative;
  border-bottom: none;
}
.mod-hero::before { display: none; }
.mod-hero::after {
  content: '';
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(25,90,254,.12) 0%, transparent 70%);
  pointer-events: none;
}
.mod-hero > * { position: relative; z-index: 1; }
.mod-hero .section-inner { max-width: 700px; }
.mod-hero-icon {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1rem;
}
.mod-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.18; margin-bottom: .5rem; color: #fff; }
.mod-hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mod-hero .mod-tagline { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 540px; margin: 0 auto 1.5rem; }
.mod-hero-actions { display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.mod-hero .btn-hp { padding: .7rem 1.8rem; font-size: .9rem; }
.mod-hero .badge-row { display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; margin-top: 1.25rem; }
.mod-hero .badge-item {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.7);
  padding: .3rem .65rem; border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; background: rgba(255,255,255,.06);
}
/* Breadcrumb opacities bumped from .45/.6/.85 → .7/.85/1 for WCAG AA on navy hero */
.mod-hero .breadcrumb { color: rgba(255,255,255,.7); }
.mod-hero .breadcrumb a { color: rgba(255,255,255,.85); }
.mod-hero .breadcrumb a:hover { color: #fff; }

/* Feature highlight cards */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feat-card {
  background: var(--white); border: 1px solid transparent;
  border-radius: var(--r); padding: 1.5rem 1.25rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.feat-card:hover { border-color: var(--line); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.feat-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: .75rem;
}
.feat-card h3 { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.feat-card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* Stats row */
.stats-section { background: var(--cream-dk); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; padding: 2rem 0; }
.stat-item {}
.stat-val { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--accent); line-height: 1.1; }
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

/* Integration logos strip */
.integrations-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; padding: .5rem 0;
}
.int-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; background: var(--white);
  border: 1.5px solid var(--line); border-radius: 10px;
  font-size: .82rem; font-weight: 600; color: var(--text2);
}

/* How it works / steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step-card { position: relative; text-align: center; counter-increment: step; }
.step-card::before {
  content: counter(step);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: .82rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.step-card h4 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.step-card p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* Module comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.compare-table th { background: var(--cream-dk); padding: .65rem .85rem; text-align: left; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.compare-table td { padding: .6rem .85rem; border-bottom: 1px solid var(--line); }
.compare-table tr:hover td { background: rgba(64,141,251,.03); }

/* Legal page redesign */
.legal-hero {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 2.5rem 1.25rem 2rem; text-align: center;
}
.legal-hero .eyebrow { color: var(--accent); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .5rem; }
.legal-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; color: var(--text); }
.legal-hero .lead { font-size: .92rem; color: var(--muted); max-width: 560px; margin: .75rem auto 0; line-height: 1.6; }
.legal-content {
  max-width: 720px; margin: 0 auto; padding: 2rem 1.25rem 3rem;
}
.legal-content h2 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin: 2rem 0 .5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: .88rem; color: var(--text2); line-height: 1.7; margin-bottom: .85rem; }
.legal-content ul { margin: .5rem 0 1rem 1.25rem; }
.legal-content li { font-size: .86rem; color: var(--text2); line-height: 1.65; margin-bottom: .4rem; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-notice {
  background: rgba(64,141,251,.06); border: 1px solid rgba(64,141,251,.15);
  border-radius: var(--r-lg); padding: 1rem 1.25rem; margin-bottom: 1.5rem;
}
.legal-notice p { font-size: .84rem; color: var(--text2); margin: 0; }
.legal-notice strong { color: var(--text); }

/* ── Animations ─────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.fade-up.in { opacity: 1; transform: translateY(0); }

.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.fade-in-left.in { opacity: 1; transform: translateX(0); }

.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.fade-in-right.in { opacity: 1; transform: translateX(0); }

.scale-in { opacity: 0; transform: scale(.92); transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1); }
.scale-in.in { opacity: 1; transform: scale(1); }

.blur-in { opacity: 0; filter: blur(8px); transform: translateY(12px); transition: opacity .7s ease, filter .7s ease, transform .7s ease; }
.blur-in.in { opacity: 1; filter: blur(0); transform: translateY(0); }

@keyframes float-gentle { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-gentle { animation: float-gentle 4s ease-in-out infinite; }

@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(25,90,254,.15); } 50% { box-shadow: 0 0 20px 4px rgba(25,90,254,.12); } }
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.shimmer-border { position: relative; }
.shimmer-border::after {
  content: ''; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(25,90,254,.2), transparent);
  background-size: 200% 100%; animation: shimmer 3s linear infinite;
}

@keyframes count-pop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.count-pop { opacity: 0; transform: scale(.6); }
.count-pop.in { animation: count-pop .6s cubic-bezier(.22,1,.36,1) forwards; }

.stagger-children > * { opacity: 0; transform: translateY(16px); transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1); }
.stagger-children.in > * { opacity: 1; transform: translateY(0); }
.stagger-children.in > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.in > *:nth-child(2) { transition-delay: .07s; }
.stagger-children.in > *:nth-child(3) { transition-delay: .14s; }
.stagger-children.in > *:nth-child(4) { transition-delay: .21s; }
.stagger-children.in > *:nth-child(5) { transition-delay: .28s; }
.stagger-children.in > *:nth-child(6) { transition-delay: .35s; }
.stagger-children.in > *:nth-child(7) { transition-delay: .42s; }
.stagger-children.in > *:nth-child(8) { transition-delay: .49s; }
.stagger-children.in > *:nth-child(9) { transition-delay: .56s; }
.stagger-children.in > *:nth-child(10) { transition-delay: .63s; }

.app-tile { transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease; }
.app-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(25,90,254,.12); }

.plan-card { transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(25,90,254,.14); }
.plan-card.featured:hover { transform: translateY(-8px) scale(1.03); }

.testi-card { transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.comp-card { transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.comp-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.feat-card { transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(25,90,254,.1); }

.btn-hp { transition: transform .2s ease, box-shadow .2s ease; }
.btn-hp:hover { transform: translateY(-2px); }
.btn-hp-primary:hover { box-shadow: 0 8px 24px rgba(255,122,26,.3); }

.cta-section { transition: background .3s ease; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in-left, .fade-in-right, .scale-in, .blur-in, .count-pop,
  .stagger-children > * { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
  .float-gentle, .pulse-glow { animation: none !important; }
  .shimmer-border::after { animation: none !important; }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .app-grid         { grid-template-columns: repeat(4, 1fr); }
  .mega-inner       { grid-template-columns: 1fr 1fr; }
  .mega-promo       { display: none; }
  .comp-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .mod-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Hero dashboards: stack on tablet */
  .hero-dashboards-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-dashboards .hero-persp{ width: min(520px, 100%); margin: 0 auto; }
  .hero-dashboards .hero-persp::before{ display: none; }
  .hero-shot-left{ transform: rotateY(12deg) rotateX(1deg); }
  .hero-shot-right{ transform: rotateY(-12deg) rotateX(1deg); }
}

@media (max-width: 768px) {
  /* Nav — show hamburger, hide desktop links; KEEP lang toggle */
  .nav-links  { display: none !important; }
  .hamburger  { display: flex; }
  .btn-login,
  .btn-signup,
  .nav-divider { display: none; }
  .announce-bar { font-size: .72rem; padding: .45rem .75rem .45rem; }
  .announce-badge { font-size: .65rem; }
  .announce-close { right: .5rem; }

  /* Hero */
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* Sections */
  .section { padding: 2.5rem 1rem; }

  /* App grid */
  .app-grid { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .app-popup { display: none !important; }

  /* Features */
  .feature-row,
  .feature-row.rev { grid-template-columns: 1fr; direction: ltr; gap: 1.75rem; }
  .feature-visual  { display: none; }

  /* Pricing — keep multi-column, just tighten */
  .testi-grid   { grid-template-columns: 1fr; }
  .comp-grid    { grid-template-columns: 1fr 1fr; }
  .mod-pricing-grid { grid-template-columns: repeat(2, 1fr); }

  /* Module marketing pages */
  .feat-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .mod-hero { padding: 2.5rem 1rem 2rem; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Auth */
  .auth-card { padding: 1.75rem 1.25rem; }
  .form-row  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner   { padding: 0 1rem; }
  .app-grid { grid-template-columns: repeat(2, 1fr); gap: .45rem; }
  .comp-grid    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .mod-pricing-grid { grid-template-columns: 1fr; }
  .plan-grid, .plan-cat-group.active { max-width: 100%; }
  .plan-cat-group[data-cols="2"].active { max-width: 100%; }
  .mn-modules-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
}
