/* ═══════════════════════════════════════════════
   FastBite — style.css
   Theme: warm red-orange on off-white
═══════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --brand: #e8321a;
  --brand-deep: #bf1f0c;
  --brand-acc: #ff6b35;
  --brand-10: #e8321a1a;
  --yellow: #ffb800;
  --success: #27ae60;

  --bg: #f7f3f0;
  --surface: #ffffff;
  --border: #ede8e3;

  --text-1: #1a1208;
  --text-2: #5f564f;
  --text-3: #847a72;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-float: 0 8px 32px rgba(232, 50, 26, 0.22);

  /* Replace both font variables in style.css */
  --font-display: "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 28px;
  --font-size-3xl: 36px;

  --line-tight: 1.15;
  --line-snug: 1.3;
  --line-normal: 1.6;
  --line-relaxed: 1.75;
}

/* ── RESET ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: var(--line-normal);
  font-weight: 400;
  letter-spacing: -0.01em;
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: var(--line-tight);
  color: var(--text-1);
}
p {
  font-size: var(--font-size-md);
  line-height: var(--line-normal);
  color: var(--text-2);
}

small {
  font-size: var(--font-size-sm);
  line-height: var(--line-snug);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
a {
  font-family: inherit;
}
/* ── UTILITIES ──────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-label.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-1);
  margin-bottom: 48px;
}

/* ── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.3s,
    backdrop-filter 0.3s,
    box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(247, 243, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 24px;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--brand);
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: var(--font-size-md);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--brand);
}
.nav-cta {
  flex-shrink: 0;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: var(--shadow-float);
}
.nav-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(247, 243, 240, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}
.mobile-menu.open {
  display: flex;
}
.mm-link {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mm-link:hover {
  color: var(--brand);
}
.mm-cta {
  margin-top: 16px;
  text-align: center;
  background: var(--brand);
  color: #fff !important;
  padding: 14px;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 520px;
  height: 520px;
  background: var(--brand);
  top: -120px;
  right: -80px;
}
.blob-2 {
  width: 360px;
  height: 360px;
  background: var(--yellow);
  top: 40%;
  left: -100px;
  opacity: 0.2;
}
.blob-3 {
  width: 280px;
  height: 280px;
  background: var(--brand-acc);
  bottom: 0;
  right: 30%;
  opacity: 0.25;
}
.blob-4 {
  width: 480px;
  height: 480px;
  background: var(--brand);
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}
.blob-5 {
  width: 600px;
  height: 600px;
  background: var(--brand-deep);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 50, 26, 0.1);
  border: 1px solid rgba(232, 50, 26, 0.2);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--text-1);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.hero-title em {
  font-style: normal;
  color: var(--brand);
}
.title-accent {
  -webkit-text-stroke: 2px var(--brand);
  color: transparent;
}
.hero-sub {
  font-size: var(--font-size-lg);
  line-height: var(--line-relaxed);
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  letter-spacing: -0.01em;
  line-height: var(--line-snug);
  font-weight: 600;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-float);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 50, 26, 0.35);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text-1);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}
.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-1);
}
.stat span {
  font-size: 12px;
  color: var(--text-3);
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 280px;
}
.phone-frame {
  background: #1a1208;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #1a1208;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  padding: 36px 12px 12px;
}
.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.screen-location {
  display: flex;
  align-items: center;
  gap: 6px;
}
.loc-icon {
  font-size: 14px;
}
.loc-label {
  font-size: 9px;
  color: var(--text-3);
}
.loc-address {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
}
.screen-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand), var(--brand-acc));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
.screen-search {
  background: var(--surface);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--text-3);
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.screen-banner {
  margin-bottom: 10px;
}
.banner-card {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-acc));
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.banner-img {
  font-size: 32px;
  line-height: 1;
}
.banner-tag {
  font-size: 8px;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(255, 184, 0, 0.15);
  padding: 2px 6px;
  border-radius: 99px;
  margin-bottom: 3px;
}
.banner-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.banner-price {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
}
.screen-cats {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}
.cat {
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  white-space: nowrap;
}
.cat.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.grid-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-card);
}
.gc-img {
  font-size: 28px;
  margin-bottom: 4px;
}
.gc-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}
.gc-price {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 4px;
}
.gc-add {
  width: 20px;
  height: 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: auto;
}
.phone-glow {
  position: absolute;
  inset: 20px;
  background: radial-gradient(
    ellipse at 60% 30%,
    rgba(232, 50, 26, 0.35),
    transparent 60%
  );
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.float-card .float-icon {
  font-size: 22px;
}
.float-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-1);
}
.float-sub {
  font-size: 10px;
  color: var(--text-3);
}
.float-order {
  right: -60px;
  top: 18%;
  animation-delay: 0s;
}
.float-rating {
  left: -60px;
  bottom: 22%;
  animation-delay: 1.5s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

/* ── MARQUEE ────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--brand);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 28px;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* ── FEATURES ───────────────────────────────── */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.fc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: var(--line-snug);
  letter-spacing: -0.02em;
}
.feature-card p {
  font-size: var(--font-size-sm);
  line-height: var(--font-size-sm);
  color: var(--text-2);
}

/* ── HOW IT WORKS ───────────────────────────── */
.how {
  position: relative;
  padding: 100px 0;
  background: var(--text-1);
  overflow: hidden;
}
.how .section-label {
  color: rgba(255, 255, 255, 0.5);
}
.how .section-title {
  color: #fff;
}
.how-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: -8px;
}
.step-content {
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step p {
  font-size: var(--font-size-sm);
  line-height: var(--line-relaxed);
  color: rgba(255, 255, 255, 0.55);
}
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 80px;
}

/* ── CATEGORIES ─────────────────────────────── */
.categories {
  padding: 100px 0;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-tile {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  cursor: default;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.cat-tile:hover {
  transform: translateY(-4px);
  border-color: var(--cat-color);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}
.cat-emoji {
  font-size: 36px;
}
.cat-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

/* ── DOWNLOAD ───────────────────────────────── */
.download {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--brand-deep),
    var(--brand),
    var(--brand-acc)
  );
  padding: 100px 0;
}
.download-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.dl-text {
  flex: 1;
}
.dl-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.dl-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin-bottom: 32px;
}
.dl-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  color: #fff;
  transition:
    background 0.2s,
    transform 0.15s;
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.store-sub {
  font-size: 10px;
  opacity: 0.7;
}
.store-name {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
}

.dl-badge {
  flex-shrink: 0;
}
.badge-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 18s linear infinite;
  background: conic-gradient(rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}
.badge-inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  animation: spin-slow 18s linear infinite reverse;
}
.badge-emoji {
  font-size: 42px;
}
.badge-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.badge-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--text-1);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1;
  min-width: 200px;
}
.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-brand .logo-text {
  color: #fff;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.fl-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-heading {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}
.fl-col a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  line-height: var(--line-snug);
}
.fl-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── LEGAL PAGES ────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  padding: 140px 0 60px;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.legal-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}
.legal-body {
  padding: 64px 0 100px;
}
.legal-body .container {
  max-width: 760px;
}
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-toc ol li a {
  font-size: 14px;
  color: var(--brand);
  transition: opacity 0.2s;
}
.legal-toc ol li a:hover {
  opacity: 0.7;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--font-size-xl);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-section p {
  font-size: var(--font-size-md);
  line-height: var(--line-relaxed);
  color: var(--text-2);
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.legal-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.legal-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 13px;
}
.legal-contact {
  background: var(--brand-10);
  border: 1px solid rgba(232, 50, 26, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 32px;
}
.legal-contact p {
  font-size: 15px;
  color: var(--text-2);
  margin: 0;
}
.legal-contact a {
  color: var(--brand);
  font-weight: 600;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .float-order {
    right: -20px;
  }
  .float-rating {
    left: -20px;
  }
}
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto 32px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .steps {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    width: 1px;
    height: 32px;
    margin: 0;
  }
  .download-inner {
    flex-direction: column;
    text-align: center;
  }
  .dl-btns {
    justify-content: center;
  }
  .dl-badge {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
