/* Freedom Fulfilment — Marketing Site
   Design System: Inter, #3A92FF (Freedom Blue), white/light, black buttons.
   No emojis. AU/UK spelling. Mobile-first responsive.
*/

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ff-blue: #3A92FF;
  --ff-blue-light: #EBF3FF;
  --ff-blue-hover: #2B7DE6;
  --ff-black: #0E1A2B;
  --ff-dark: #1A2B3D;
  --ff-grey-900: #1F2937;
  --ff-grey-700: #374151;
  --ff-grey-600: #4B5563;
  --ff-grey-500: #6B7280;
  --ff-grey-400: #9CA3AF;
  --ff-grey-200: #E5E7EB;
  --ff-grey-100: #F3F4F6;
  --ff-grey-50: #F9FAFB;
  --ff-off-white: #F8FAFF;
  --ff-white: #FFFFFF;
  --ff-green: #10B981;
  --ff-red: #EF4444;
  --ff-radius: 12px;
  --ff-radius-sm: 8px;
  --ff-radius-lg: 16px;
  --ff-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --ff-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --ff-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --ff-max-width: 1200px;
  --ff-section-pad: 96px;
  --ff-transition: 0.2s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ff-grey-900);
  background: var(--ff-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--ff-blue);
  text-decoration: none;
  transition: color var(--ff-transition);
}

a:hover {
  color: var(--ff-blue-hover);
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ff-black);
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p {
  color: var(--ff-grey-600);
  max-width: 680px;
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--ff-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--ff-section-pad) 0;
}

section.alt-bg {
  background: var(--ff-off-white);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--ff-radius-sm);
  cursor: pointer;
  transition: all var(--ff-transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--ff-black);
  color: var(--ff-white);
}

.btn-primary:hover {
  background: #1a2d42;
  color: var(--ff-white);
  transform: translateY(-1px);
  box-shadow: var(--ff-shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--ff-black);
  border: 1.5px solid var(--ff-grey-200);
}

.btn-secondary:hover {
  border-color: var(--ff-grey-400);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ff-grey-200);
  transition: box-shadow var(--ff-transition);
}

.nav.scrolled {
  box-shadow: var(--ff-shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--ff-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ff-black);
}

.nav-logo svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--ff-grey-600);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--ff-transition);
}

.nav-links a:hover {
  color: var(--ff-black);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.875rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ff-black);
  transition: all var(--ff-transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--ff-off-white) 0%, var(--ff-white) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--ff-blue-light);
  color: var(--ff-blue);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ff-blue);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 3.25rem;
  line-height: 1.12;
}

.hero h1 span {
  color: var(--ff-blue);
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--ff-radius-lg);
  box-shadow: var(--ff-shadow-lg);
}

/* ── Stat Strip ────────────────────────────────────────────── */
.stat-strip {
  padding: 48px 0;
  border-top: 1px solid var(--ff-grey-200);
  border-bottom: 1px solid var(--ff-grey-200);
}

.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--ff-grey-200);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ff-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--ff-grey-500);
  font-weight: 500;
}

/* ── Brands / Country Strip ────────────────────────────────── */
.brands-strip {
  padding: 64px 0;
  background: var(--ff-white);
}

.brands-strip h3 {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ff-grey-400);
  margin-bottom: 32px;
}

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

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ff-grey-600);
  font-weight: 500;
  position: relative;
  cursor: default;
}

.brand-item .flag {
  font-size: 1.25rem;
  line-height: 1;
  width: 28px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ff-grey-100);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ff-grey-500);
}

.brand-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ff-black);
  color: var(--ff-white);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--ff-transition);
}

.brand-item:hover .brand-tooltip {
  opacity: 1;
}

.brand-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ff-black);
}

/* ── Stats Grid ────────────────────────────────────────────── */
.stats-section {
  padding: var(--ff-section-pad) 0;
  background: var(--ff-off-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stats-card {
  background: var(--ff-white);
  border-radius: var(--ff-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--ff-grey-200);
  transition: all var(--ff-transition);
}

.stats-card:hover {
  box-shadow: var(--ff-shadow-md);
  transform: translateY(-2px);
}

.stats-card .stats-icon {
  width: 48px;
  height: 48px;
  background: var(--ff-blue-light);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stats-card .stats-icon svg {
  width: 24px;
  height: 24px;
  color: var(--ff-blue);
}

.stats-card .stats-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ff-black);
  margin-bottom: 6px;
}

.stats-card .stats-desc {
  font-size: 0.8125rem;
  color: var(--ff-grey-500);
  font-weight: 500;
}

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ff-blue);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ── Differentiator Cards ──────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--ff-white);
  border-radius: var(--ff-radius);
  padding: 32px;
  border: 1px solid var(--ff-grey-200);
  transition: all var(--ff-transition);
}

.diff-card:hover {
  box-shadow: var(--ff-shadow-md);
  border-color: var(--ff-blue);
  transform: translateY(-2px);
}

.diff-icon {
  width: 44px;
  height: 44px;
  background: var(--ff-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.diff-icon svg {
  width: 22px;
  height: 22px;
  color: var(--ff-blue);
}

.diff-card h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.diff-card p {
  font-size: 0.9375rem;
  color: var(--ff-grey-600);
  line-height: 1.6;
}

/* ── Comparison Table ──────────────────────────────────────── */
.comparison-section {
  padding: var(--ff-section-pad) 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--ff-grey-200);
}

.comparison-table thead th {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ff-grey-500);
  padding-bottom: 12px;
}

.comparison-table thead th:first-child {
  color: var(--ff-grey-400);
}

.comparison-table thead th.highlight {
  color: var(--ff-blue);
  position: relative;
}

.comparison-table tbody td {
  color: var(--ff-grey-700);
  font-weight: 500;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--ff-grey-900);
}

.comparison-table tbody td.highlight {
  background: var(--ff-blue-light);
  font-weight: 600;
  color: var(--ff-black);
}

.comparison-table .check {
  color: var(--ff-green);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table .cross {
  color: var(--ff-grey-400);
  font-weight: 400;
}

.comparison-table .partial {
  color: var(--ff-grey-500);
  font-size: 0.8125rem;
}

/* ── Integrations ──────────────────────────────────────────── */
.integrations-section {
  padding: 64px 0;
  background: var(--ff-off-white);
  border-top: 1px solid var(--ff-grey-200);
  border-bottom: 1px solid var(--ff-grey-200);
}

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

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.integration-logo {
  width: 48px;
  height: 48px;
  background: var(--ff-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ff-shadow);
  border: 1px solid var(--ff-grey-200);
}

.integration-logo svg {
  width: 24px;
  height: 24px;
}

.integration-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ff-grey-500);
}

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
  padding: var(--ff-section-pad) 0;
}

.how-subsection {
  margin-bottom: 64px;
}

.how-subsection:last-child {
  margin-bottom: 0;
}

.how-subsection-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ff-grey-500);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: var(--ff-grey-200);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--ff-blue);
  color: var(--ff-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(58, 146, 255, 0.3);
}

.step-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--ff-grey-500);
  margin: 0 auto;
  max-width: 220px;
}

/* ── Portal Section ────────────────────────────────────────── */
.portal-section {
  padding: var(--ff-section-pad) 0;
  background: var(--ff-off-white);
}

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

.portal-features {
  list-style: none;
  margin-top: 32px;
}

.portal-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--ff-grey-700);
  font-weight: 500;
}

.portal-features li svg {
  width: 20px;
  height: 20px;
  color: var(--ff-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.portal-image img {
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow-lg);
  border: 1px solid var(--ff-grey-200);
}

/* ── Ecosystem ─────────────────────────────────────────────── */
.ecosystem-section {
  padding: var(--ff-section-pad) 0;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.eco-card {
  background: var(--ff-white);
  border-radius: var(--ff-radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--ff-grey-200);
  transition: all var(--ff-transition);
}

.eco-card:hover {
  border-color: var(--ff-blue);
  box-shadow: var(--ff-shadow-md);
  transform: translateY(-2px);
}

.eco-card.active {
  border-color: var(--ff-blue);
  background: var(--ff-blue-light);
}

.eco-icon {
  width: 48px;
  height: 48px;
  background: var(--ff-blue-light);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.eco-card.active .eco-icon {
  background: var(--ff-blue);
}

.eco-card.active .eco-icon svg {
  color: var(--ff-white);
}

.eco-icon svg {
  width: 22px;
  height: 22px;
  color: var(--ff-blue);
}

.eco-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.eco-card p {
  font-size: 0.8125rem;
  color: var(--ff-grey-500);
  line-height: 1.5;
}

.ecosystem-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9375rem;
  color: var(--ff-grey-500);
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  padding: var(--ff-section-pad) 0;
  background: var(--ff-off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--ff-white);
  border-radius: var(--ff-radius);
  padding: 32px;
  border: 1px solid var(--ff-grey-200);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--ff-grey-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--ff-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ff-blue);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ff-black);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--ff-grey-500);
}

/* ── AU-Native Proof ───────────────────────────────────────── */
.au-proof {
  padding: var(--ff-section-pad) 0;
}

.au-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.au-proof-card {
  background: var(--ff-white);
  border-radius: var(--ff-radius);
  padding: 32px;
  border: 1px solid var(--ff-grey-200);
  text-align: center;
}

.au-proof-card .au-icon {
  width: 56px;
  height: 56px;
  background: var(--ff-blue-light);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.au-proof-card .au-icon svg {
  width: 28px;
  height: 28px;
  color: var(--ff-blue);
}

.au-proof-card h4 {
  margin-bottom: 8px;
}

.au-proof-card p {
  font-size: 0.875rem;
  color: var(--ff-grey-500);
  margin: 0 auto;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section {
  padding: var(--ff-section-pad) 0;
  background: var(--ff-off-white);
}

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ff-black);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover {
  color: var(--ff-blue);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--ff-transition);
  color: var(--ff-grey-400);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--ff-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--ff-grey-600);
  line-height: 1.7;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  padding: var(--ff-section-pad) 0;
  text-align: center;
}

.cta-card {
  background: var(--ff-white);
  border: 2px solid var(--ff-blue);
  border-radius: 20px;
  padding: 64px 48px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  margin-bottom: 16px;
}

.cta-card p {
  margin: 0 auto 32px;
  font-size: 1.0625rem;
}

.cta-subtext {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--ff-grey-400);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--ff-grey-50);
  border-top: 1px solid var(--ff-grey-200);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--ff-grey-500);
  margin-top: 12px;
  line-height: 1.6;
}

.footer h5 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ff-grey-400);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--ff-grey-600);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--ff-blue);
}

.footer-bottom {
  border-top: 1px solid var(--ff-grey-200);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--ff-grey-400);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--ff-grey-400);
  font-weight: 500;
}

/* ── Mobile Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --ff-section-pad: 72px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  
  .hero h1 { font-size: 2.75rem; }
  
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  
  .ecosystem-grid { grid-template-columns: repeat(3, 1fr); }
  
  .portal-grid { grid-template-columns: 1fr; gap: 40px; }
  .portal-image { order: -1; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --ff-section-pad: 56px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .hero { padding: 120px 0 56px; }
  .hero h1 { font-size: 2.125rem; }
  .hero p { font-size: 1rem; }
  
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ff-white);
    border-bottom: 1px solid var(--ff-grey-200);
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: var(--ff-shadow-md);
  }
  
  .stat-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-item:not(:last-child)::after { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .diff-grid { grid-template-columns: 1fr; }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .steps-grid::before { display: none; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  
  .au-proof-grid { grid-template-columns: 1fr; }
  
  .comparison-table { min-width: 600px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .cta-card { padding: 40px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  
  .hero h1 { font-size: 1.875rem; }
  
  .stat-strip-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.5rem; }
  
  .stats-grid { grid-template-columns: 1fr; }
  
  .steps-grid { grid-template-columns: 1fr; }
  
  .ecosystem-grid { grid-template-columns: 1fr; }
  
  .brands-row { gap: 24px; }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Animations ────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
