:root {
  --maroon: #700B13;
  --maroon-dark: #48070C;
  --maroon-light: #8F1420;
  --maroon-glow: rgba(112, 11, 19, 0.28);
  --orange: #F59C28;
  --cream: #FBF6F1;
  --cream-deep: #F4EBE3;
  --ink: #1C1013;
  --ink-soft: #6b5960;
  --ink-faint: #97878d;
  --border: #ece0e0;
  --dark: #150B0E;
  --dark-2: #23121a;
  --radius: 18px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

a, button { touch-action: manipulation; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--maroon);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 241, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -20px rgba(28, 16, 19, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--maroon);
  letter-spacing: -0.01em;
}

.brand-logotype {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.94rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 11px 22px; font-size: 0.9rem; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height 0.35s var(--ease), border-color 0.35s var(--ease);
}

.mobile-nav.is-open {
  max-height: 400px;
  border-top-color: var(--border);
}

.mobile-nav a {
  padding: 16px 24px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn {
  margin: 16px 24px;
  justify-content: center;
  border-bottom: none;
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; }

.btn-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 10px 24px -6px var(--maroon-glow);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-120%);
}

.btn-primary:hover::before { transform: translateX(120%); transition: transform 0.7s var(--ease); }
.btn-primary:hover { background: var(--maroon-dark); box-shadow: 0 14px 30px -6px var(--maroon-glow); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover { border-color: var(--maroon); color: var(--maroon); }

.play-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}

.btn-light {
  background: #fff;
  color: var(--maroon);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover { border-color: #fff; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  color: var(--maroon);
  background: rgba(122, 27, 40, 0.08);
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow.center { display: table; margin-left: auto; margin-right: auto; }

.eyebrow-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 88px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -260px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--maroon-glow), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-copy p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.hero-stats div:not(.stat-divider) {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: -0.01em;
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 2px;
}

.hero-media {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px -10px rgba(28,16,19,0.15), 0 40px 70px -25px rgba(122, 27, 40, 0.4);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  margin: -72px 24px 0;
  background: linear-gradient(160deg, #26141c, #120a0e);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 40px 60px -18px rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.dash-dots { display: flex; gap: 4px; }
.dash-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: block;
}

.dash-balance {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.dash-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.dash-up { color: #4ADE80; font-weight: 700; }

.dash-ring-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 18px;
}

.dash-ring-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-ring-copy strong {
  font-size: 0.85rem;
}

.dash-ring-copy span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.dash-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.dash-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.dash-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 16px -4px rgba(245, 156, 40, 0.5);
}

/* Trust strip */
.trust-strip {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.trust-item svg { color: var(--maroon); flex-shrink: 0; }

/* Section shared */
section h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

.features {
  padding: 110px 0;
  text-align: center;
}

.features h2 { max-width: 640px; margin-left: auto; margin-right: auto; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -25px rgba(122, 27, 40, 0.35);
  border-color: rgba(122, 27, 40, 0.25);
}

.feature-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.feature-card-body { padding: 28px; position: relative; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(122, 27, 40, 0.08);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  margin-bottom: 16px;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px -4px rgba(28,16,19,0.2);
}

.feature-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-card-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* How it works */
.how {
  padding: 110px 0;
  background: #fff;
}

.how-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.how-media {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 20px -10px rgba(28,16,19,0.1), 0 40px 60px -30px rgba(122, 27, 40, 0.4);
}

.how-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.steps li {
  display: flex;
  gap: 20px;
}

.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
  box-shadow: 0 8px 18px -6px var(--maroon-glow);
}

.steps h3 {
  margin: 4px 0 6px;
  font-size: 1.08rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Groups */
.groups {
  padding: 110px 0;
}

.groups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.groups-media {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 20px -10px rgba(28,16,19,0.1), 0 40px 60px -30px rgba(122, 27, 40, 0.4);
}

.groups-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.groups-copy p {
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(122, 27, 40, 0.1);
}

.check-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 1px;
  color: var(--maroon);
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 20px;
}

/* Testimonials */
.testimonials {
  padding: 110px 0;
  background: var(--cream-deep);
  text-align: center;
}

.testimonials h2 { max-width: 640px; margin-left: auto; margin-right: auto; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -25px rgba(122, 27, 40, 0.3);
}

.stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}

.testimonial-person strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-person span {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* Security */
.security {
  background: var(--dark);
  color: #fff;
  padding: 110px 0;
}

.security-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.security-copy h2 {
  color: #fff;
  margin-bottom: 18px;
}

.security-copy p {
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 440px;
}

.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.security-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.security-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}

.security-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(245, 156, 40, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-item h3 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.security-item p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.14), transparent 70%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta h2 { color: #fff; margin: 0 0 10px; }
.cta p { margin: 0; opacity: 0.85; max-width: 420px; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 11px 20px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.store-badge:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.store-badge small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  opacity: 0.75;
  margin-bottom: 1px;
}

/* FAQ */
.faq {
  padding: 110px 0;
  background: #fff;
}

.faq h2 { text-align: center; }
.faq .eyebrow.center { margin-bottom: 20px; }

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  background: var(--cream);
  transition: border-color 0.25s var(--ease);
}

.faq-list details[open],
.faq-list details:hover {
  border-color: rgba(122, 27, 40, 0.3);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.chev {
  color: var(--maroon);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.25s var(--ease);
}

.faq-list details[open] .chev { transform: rotate(45deg); }

.faq-list p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 76px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 16px;
}

.footer-brand img {
  height: 26px;
  width: auto;
}

.footer-blurb {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  max-width: 300px;
  margin: 0 0 22px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.social-icon:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 980px) {
  .how-grid, .groups-grid, .security-grid { grid-template-columns: 1fr; }
  .how-media, .groups-media { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-bottom: 40px; }
  .feature-cards, .testimonial-grid { grid-template-columns: 1fr; }
  .security-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .trust-row { gap: 24px 32px; }
  .dashboard-card { margin: -56px 12px 0; padding: 20px; }
  .footer-top { grid-template-columns: 1fr; }
}
