@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,500;1,600&family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

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

:root {
  --bg:           #f9f7f3;
  --bg-card:      #ffffff;
  --bg-subtle:    #f2efe8;
  --accent:       #b45309;
  --accent-light: rgba(180, 83, 9, 0.07);
  --accent-hover: #92400e;
  --text:         #1c1917;
  --text-muted:   #78716c;
  --text-faint:   #a8a29e;
  --border:       #e7e3db;
  --border-dark:  #d4cfc5;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
  --radius:       6px;
  --r-sm:         4px;
  --transition:   0.2s ease;
  --max-w:        760px;
  --max-w-wide:   1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.45rem, 3.2vw, 2rem); margin-bottom: 0.9rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
h4 { font-size: 0.95rem; }

/* Lora italic — only for editorial emphasis in headlines */
em {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { color: var(--accent-hover); opacity: 1; }

strong { font-weight: 600; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

/* ─── Scroll animation ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }

/* ─── Navigation ────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover { color: var(--text); background: var(--bg-subtle); }
.nav-links a.active { color: var(--accent); }

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}

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

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1rem;
}

.nav-mobile a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--accent); }
.nav-mobile.open { display: flex; }

/* ─── Layout ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4.5rem 0; }
.section + .section { border-top: 1px solid var(--border); }
.section--subtle { background: var(--bg-subtle); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  padding: 5.5rem 0 5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

/* Hero eyebrow */
.hero-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
  animation: fadeIn 0.6s ease both;
  animation-delay: 0.05s;
}

/* Hero title with line-reveal animation */
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  color: var(--text);
}

.hero-title .hero-line {
  display: block;
  overflow: hidden;
}

.hero-title .hero-line > span {
  display: block;
  animation: lineReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title .hero-line:nth-child(1) > span { animation-delay: 0.12s; }
.hero-title .hero-line:nth-child(2) > span { animation-delay: 0.26s; }
.hero-title .hero-line:nth-child(3) > span { animation-delay: 0.40s; }

@keyframes lineReveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
  animation: fadeIn 0.7s ease both;
  animation-delay: 0.55s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  animation: fadeIn 0.7s ease both;
  animation-delay: 0.65s;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.3rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: transparent;
}

/* ─── Section label ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

/* ─── Numbers strip (stats) ─────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Cards ─────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link:hover { color: inherit; opacity: 1; }

.card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.card h3 { color: var(--text); font-size: 1.05rem; }
.card-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.4rem; line-height: 1.55; }

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 1.1rem;
  letter-spacing: 0.01em;
}

/* ─── Grid ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ─── About / Bio ───────────────────────────────────── */
.bio-block {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.bio-text h2 { margin-bottom: 1.1rem; }
.bio-text p { color: var(--text-muted); line-height: 1.75; }
.bio-text p strong { color: var(--text); }

.bio-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bio-fact {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.bio-fact:last-child { border-bottom: none; }

.bio-fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.2rem;
}

.bio-fact-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

/* ─── TikTok section ────────────────────────────────── */
.tiktok-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
}

.tiktok-card-handle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.tiktok-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 1.5rem;
}

.tiktok-card-meta {
  text-align: right;
}

.tiktok-card-icon {
  width: 48px;
  height: 48px;
  fill: var(--text-faint);
  margin-bottom: 0.5rem;
}

.tiktok-card-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 0.5rem;
}

/* ─── Links / Contact ───────────────────────────────── */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--transition);
  gap: 1rem;
}

.link-row:last-child { border-bottom: none; }
.link-row:hover { background: var(--bg-subtle); }

.link-row-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.link-row-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-row-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

.link-row-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.link-row-sub {
  font-size: 0.8rem;
  color: var(--text-faint);
  display: block;
  margin-top: 0.05rem;
}

.link-row-arrow {
  color: var(--text-faint);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ─── Callout / Info blocks ─────────────────────────── */
.callout {
  background: var(--accent-light);
  border: 1px solid rgba(180, 83, 9, 0.15);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
}

.callout p { color: var(--text); font-size: 0.93rem; margin: 0; line-height: 1.65; }
.callout strong { color: var(--accent-hover); }

.callout-neutral {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border-dark);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.callout-neutral strong { color: var(--text); }

/* ─── Budget list ───────────────────────────────────── */
.budget-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.budget-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.93rem;
}

.budget-item:first-child { border-radius: var(--r-sm) var(--r-sm) 0 0; }
.budget-item:last-child { border-radius: 0 0 var(--r-sm) var(--r-sm); }

.budget-item-label { color: var(--text-muted); }
.budget-item-amount { font-weight: 600; color: var(--text); font-family: 'Space Grotesk', sans-serif; }
.budget-item-amount.highlight { color: var(--accent); }

.budget-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 1rem;
  background: var(--accent-light);
  border: 1px solid rgba(180, 83, 9, 0.15);
  border-radius: var(--r-sm);
  margin-top: 0.5rem;
}

.budget-total .budget-item-label { color: var(--text); font-weight: 600; }
.budget-total .budget-item-amount { font-size: 1.15rem; }

/* ─── Stat block (inner pages) ──────────────────────── */
.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Portal links ──────────────────────────────────── */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.portal-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.portal-link:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.portal-link-country {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.portal-link-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── Pro / Con grid ────────────────────────────────── */
.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pro-block, .con-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.pro-block { border-top: 2px solid #16a34a; }
.con-block { border-top: 2px solid #dc2626; }

.pro-block h4 { color: #15803d; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; font-family: 'Space Grotesk', sans-serif; }
.con-block h4 { color: #b91c1c; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; font-family: 'Space Grotesk', sans-serif; }

.pro-block ul, .con-block ul { list-style: none; padding: 0; }
.pro-block li, .con-block li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}

.pro-block li::before { content: '✓'; color: #16a34a; position: absolute; left: 0; font-weight: 700; }
.con-block li::before { content: '✗'; color: #dc2626; position: absolute; left: 0; font-weight: 700; }

/* ─── Step list ─────────────────────────────────────── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.1rem;
  background: var(--bg-card);
}

.step-content h4 { margin-bottom: 0.3rem; font-size: 0.97rem; font-family: 'Space Grotesk', sans-serif; }
.step-content p { color: var(--text-muted); font-size: 0.875rem; margin: 0; line-height: 1.6; }

/* ─── Divider ───────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ─── Inline highlight ──────────────────────────────── */
.highlight { color: var(--accent); font-weight: 600; }

/* ─── Page header (inner pages) ─────────────────────── */
.page-header {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 { margin-bottom: 0.8rem; }

.page-header .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── TikTok button (small, inline) ────────────────── */
.tiktok-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-dark);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

.tiktok-btn:hover {
  background: var(--bg-card);
  border-color: var(--text-faint);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.tiktok-icon {
  width: 15px;
  height: 15px;
  fill: var(--text-muted);
  flex-shrink: 0;
}

/* ─── Footer ────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-brand span { color: var(--accent); }

.footer-tagline {
  color: var(--text-faint);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: var(--text-faint);
  font-size: 0.83rem;
  padding: 0.3rem 0.65rem;
  transition: color var(--transition);
}

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

.footer-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-copy { color: var(--text-faint); font-size: 0.78rem; }
.footer-disclaimer { color: var(--text-faint); font-size: 0.75rem; font-style: italic; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .bio-block { grid-template-columns: 1fr; gap: 2rem; }
  .tiktok-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .tiktok-card-meta { display: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .stat-item:first-child { padding-left: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 3.5rem 0 3rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pro-con-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .budget-item { flex-direction: column; gap: 0.1rem; }
  .budget-total { flex-direction: column; gap: 0.1rem; }
  .tiktok-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .hero-title { font-size: 1.9rem; }
  .section { padding: 3rem 0; }
  .page-header { padding: 2.5rem 0 2.25rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
