/* =========================================================
   EventCrowd — design system
   Dark theme, Inter, bright lime accent
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #0a0a0a;
  --bg-soft: #0f0f10;
  --surface: #131314;
  --surface-2: #18181b;
  --surface-3: #1f1f22;

  /* Text */
  --text: #fafafa;
  --text-2: #c4c4c8;
  --text-3: #8a8a90;
  --text-4: #5f5f66;

  /* Borders */
  --border: #232326;
  --border-2: #2e2e32;
  --border-strong: #3a3a3f;

  /* Accent */
  --accent: #c1ff3a;          /* primary lime — bright, like reference */
  --accent-2: #b7ff2a;
  --accent-soft: rgb(193 255 58 / 12%);
  --accent-line: rgb(193 255 58 / 36%);
  --accent-on: #0a0a0a;       /* text colour on lime button */

  /* Effects */
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 40%);
  --shadow-md: 0 8px 24px rgb(0 0 0 / 45%);
  --shadow-lg: 0 32px 64px -16px rgb(0 0 0 / 60%), 0 12px 24px -8px rgb(0 0 0 / 40%);
  --shadow-accent: 0 0 0 1px rgb(193 255 58 / 18%), 0 12px 32px -8px rgb(193 255 58 / 22%);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 9999px;

  /* Layout */
  --container: 1180px;
  --gutter: 24px;
}

/* ============ Reset ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--accent-soft);
  color: var(--text);
}

/* ============ Layout ============ */
.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

/* ============ Typography ============ */
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  background: var(--surface);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgb(193 255 58 / 20%);
}

.section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.lead {
  max-width: 60ch;
  color: var(--text-2);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.muted {
  color: var(--text-3);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-on);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #d4ff5e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border-2);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-2);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(2px);
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(10 10 10 / 70%);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.header.scrolled {
  border-bottom-color: var(--border);
  background: rgb(10 10 10 / 88%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  transition: opacity 0.15s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-mark {
  display: block;
  height: 32px;
  width: auto;
}

.footer-brand .logo-mark {
  height: 28px;
}

.nav {
  display: flex;
  gap: 6px;
  justify-self: center;
}

.nav a {
  padding: 8px 12px;
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 112px;
  background:
    /* Darken overlay so text stays legible over photo */
    linear-gradient(180deg, rgb(10 10 10 / 88%) 0%, rgb(10 10 10 / 70%) 50%, rgb(10 10 10 / 80%) 100%),
    /* Lime accent glow top-right */
    radial-gradient(ellipse 70% 90% at 110% -10%, rgb(193 255 58 / 14%) 0%, transparent 55%),
    /* Hero photo backdrop */
    url("../assets/hero-ambient.webp") center / cover no-repeat,
    var(--bg);
}

/* Layer 1 — atmosphere: soft top-down spotlight + film grain (deepest) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 65% 100% at 50% -15%, rgb(193 255 58 / 9%) 0%, transparent 55%),
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: cover, 220px 220px;
  background-repeat: no-repeat, repeat;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

/* Layer 2 — tech grid (removed) */


.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-copy h1 .accent {
  position: relative;
  color: var(--accent);
  white-space: nowrap;
}

.hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 6px;
  background: var(--accent);
  opacity: 0.18;
  border-radius: 4px;
  z-index: -1;
}

.hero-copy .lead {
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: var(--text-3);
  font-size: 13px;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.hero-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* ============ Hero phone mockup ============ */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.phone-wrap::before {
  content: "";
  position: absolute;
  inset: -8% -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, rgb(193 255 58 / 14%) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgb(193 255 58 / 8%) 0%, transparent 55%);
  filter: blur(12px);
}

.phone-mockup {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 36px 60px rgb(0 0 0 / 45%))
          drop-shadow(0 12px 22px rgb(0 0 0 / 28%));
}

/* ============ Sections base ============ */
.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 0 48px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.55;
}

/* ============ Features (event categories) ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  position: relative;
  padding: 14px 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -28px 0 18px 14px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  background: rgb(19 19 20 / 86%);
  color: var(--accent);
  backdrop-filter: blur(12px);
}

.feature-media {
  width: 100%;
  aspect-ratio: 8 / 5;
  height: auto;
  margin-bottom: 0;
  border-radius: calc(var(--r-lg) - 6px);
  object-fit: cover;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature h3 {
  padding: 0 14px;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.feature p {
  padding: 0 14px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}

/* ============ Organizers ============ */
.organizers {
  position: relative;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.organizers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 50%, rgb(193 255 58 / 5%) 0%, transparent 50%);
  pointer-events: none;
}

.organizers-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 96px 0;
}

.organizers .lead {
  color: var(--text-2);
}

.organizers-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.organizers-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.organizers-list svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent);
}

.organizers-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Organizers image (right column) */
.image-area {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 360px;
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 28px 80px rgb(0 0 0 / 32%);
  isolation: isolate;
}

.image-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(5 5 5 / 0%) 45%, rgb(5 5 5 / 62%) 100%),
    radial-gradient(ellipse at 75% 22%, rgb(183 255 42 / 16%) 0%, transparent 48%);
  pointer-events: none;
  z-index: 1;
}

.image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-area-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 6px 12px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  background: rgb(5 5 5 / 72%);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

/* ============ FAQ ============ */
.faq-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 24px;
  padding: 4px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  background: var(--surface);
}

.faq-tab {
  padding: 8px 16px;
  border: 0;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.faq-tab[aria-selected="true"] {
  background: var(--surface-3);
  color: var(--text);
}

.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--text-3);
  transition: transform 0.25s ease, color 0.18s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentcolor;
  transition: transform 0.25s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon {
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body p {
  max-width: 70ch;
  margin: 0;
  padding: 0 4px 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ Final CTA ============ */
.final-cta {
  padding: 24px 0 96px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 64px 32px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse at 20% 0%, rgb(193 255 58 / 14%) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgb(193 255 58 / 8%) 0%, transparent 55%),
    var(--surface);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 80%);
  pointer-events: none;
}

.cta-card > * {
  position: relative;
}

.cta-card h2 {
  max-width: 680px;
  margin: 0 auto 14px;
}

.cta-card p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--text-2);
  font-size: 17px;
}

.cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.55;
  max-width: 30ch;
}

.footer h4 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--text-3);
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-4);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--text-3);
  transition: color 0.15s ease;
}

.footer-bottom a:hover {
  color: var(--text);
}

/* ============ Legal pages ============ */
.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(10 10 10 / 80%);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  height: 64px;
}

.legal-page {
  padding: 56px 0 96px;
  background: var(--bg);
}

.legal-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.legal-card h1 {
  font-size: 32px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.legal-card p,
.legal-card li {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.legal-card ul {
  margin: 8px 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  color: var(--text-2);
  font-size: 14px;
  border-radius: 0 8px 8px 0;
}

.legal-meta {
  margin: 0 0 24px;
  color: var(--text-3);
  font-size: 13px;
}

.legal-card h2 + p,
.legal-card p + p {
  margin-top: 8px;
}

.legal-card p strong {
  color: var(--text);
  font-weight: 600;
}

.legal-tail {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 13px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.back-link:hover {
  color: var(--text);
}

/* ============ Reveal animation ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .phone-wrap {
    justify-content: flex-start;
  }

  .phone-mockup {
    max-height: 480px;
  }

  .organizers-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    height: 60px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .phone-wrap {
    justify-content: center;
  }

  .phone-mockup {
    max-height: 440px;
  }

  .hero-copy h1 .accent::after {
    height: 5px;
    bottom: 1px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .organizers-inner {
    padding: 64px 0;
  }

  .trust-inner {
    gap: 16px 24px;
  }

  .trust-items {
    gap: 18px 24px;
  }

  .footer-inner {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .legal-card {
    padding: 28px 22px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 18px;
  }

  .stat-value {
    font-size: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    max-height: 400px;
  }
}
