/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GENSPARK GENIUS PROGRAM — MERGED STYLESHEET
   Content: Your version (source of truth)
   Design: Colleague's visual palette + Genspark brand
   Palette: #0F7FFF blue, #232425 dark, white backgrounds
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --brand-blue: #0F7FFF;
  --brand-blue-hover: #0E72E5;
  --brand-blue-light: rgba(15, 127, 255, 0.08);
  --brand-blue-border: rgba(15, 127, 255, 0.2);
  --brand-primary: #232425;
  --brand-hover: #393A3B;

  --text-primary: #232425;
  --text-secondary: #606366;
  --text-tertiary: #909499;
  --text-inverse: #F5F5F3;
  --text-inverse-dim: rgba(245, 245, 243, 0.55);

  --bg-page: #FFFFFF;
  --bg-surface: #FAFAFA;
  --bg-subtle: #F5F5F5;
  --bg-dark: #0e0e0e;
  --bg-dark-2: #161616;

  --border-default: #EAEAEA;
  --border-subtle: #F2F2F2;
  --border-dark: rgba(255, 255, 255, 0.08);

  --radius-pill: 30px;
  --radius-card: 16px;
  --radius-btn: 12px;
  --radius-sm: 8px;

  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-btn-hover: 0 2px 8px rgba(35, 36, 37, 0.15);

  --section-padding: 100px;
  --container-width: 1080px;
  --t: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection { background: rgba(15, 127, 255, 0.15); color: var(--brand-blue); }

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS — Colleague's blue + dark style
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn i { font-size: 12px; transition: transform var(--t); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
  background: var(--brand-blue);
  color: white;
  border: 1.5px solid var(--brand-blue);
}
.btn-primary:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(15, 127, 255, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-default);
}
.btn-ghost:hover {
  border-color: #bbb;
  color: var(--text-primary);
}

.btn-white {
  background: #fff;
  color: var(--text-primary);
  border: 1.5px solid #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: #f0f0ed;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-large { font-size: 16px; padding: 14px 36px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION — Colleague's frosted glass nav with logo image
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: 60px;
  display: flex;
  align-items: center;
  transition: all var(--t);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

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

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 24px; opacity: 0.9; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--brand-blue);
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--brand-blue-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 14px 24px 20px;
  gap: 10px;
  border-top: 1px solid var(--border-default);
  background: #fff;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
}
.nav-mobile a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 0;
}
.nav-mobile.open { display: flex; }

.nav-cta-mobile {
  display: inline-block;
  background: var(--brand-blue);
  color: white !important;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
  margin-top: 6px;
}
.nav-cta-mobile:hover { background: var(--brand-blue-hover); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HELPERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section { padding: var(--section-padding) 0; position: relative; }
.section-white { background: var(--bg-page); }
.section-surface { background: var(--bg-surface); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCENT TEXT — blue brand
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.accent-text {
  color: var(--brand-blue);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — Colleague's clean white + blue gradient hint + images
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 127, 255, 0.04) 0%, rgba(255, 255, 255, 0) 60%);
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.beta-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  background: rgba(15, 127, 255, 0.1);
  border: 1px solid rgba(15, 127, 255, 0.3);
  border-radius: 6px;
  padding: 2px 8px;
  margin-left: 10px;
  vertical-align: super;
  letter-spacing: 0;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

/* Hero images — colleague's 3-column strip */
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  width: 100%;
  margin-bottom: 48px;
}
.hero-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CRITERIA CARDS — Colleague's card style with blue left border
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cards-grid { display: grid; gap: 20px; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: white;
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: all var(--t);
  box-shadow: var(--shadow-card);
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card-icon {
  color: var(--brand-blue);
  margin-right: 8px;
  font-size: 14px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIBILITIES — Colleague's card style with blue left border
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.role-card {
  background: white;
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: all var(--t);
  box-shadow: var(--shadow-card);
}
.role-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.role-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.role-card h3 i {
  color: var(--brand-blue);
  margin-right: 8px;
  font-size: 14px;
}
.role-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BENEFITS — Colleague's clean 3-column support grid
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.support-item {
  background: white;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: all var(--t);
  box-shadow: var(--shadow-card);
}
.support-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.support-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--brand-primary);
}
.support-item h3 i {
  color: var(--brand-blue);
  margin-right: 6px;
  font-size: 14px;
}
.support-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLOBAL NETWORK — Two-panel chip layout (your version's structure,
   colleague's color palette)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.network-panels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--bg-page);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
  overflow: hidden;
}

.network-panels-divider {
  width: 1px;
  background: var(--border-default);
  align-self: stretch;
}

.network-panel {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.network-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.network-panel-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.network-panel-icon i { font-size: 18px; color: #fff; }

.network-panel-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.network-panel-sub {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.network-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.network-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--t);
}
.network-chip i {
  font-size: 11px;
  color: var(--brand-blue);
}
.network-chip:hover {
  border-color: var(--brand-blue-border);
  background: var(--brand-blue-light);
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(15, 127, 255, 0.12);
}

.network-chip-outline {
  background: transparent;
  border-style: dashed;
  border-color: var(--brand-blue-border);
  color: var(--text-tertiary);
}
.network-chip-outline i { font-size: 10px; }
.network-chip-outline:hover {
  background: var(--brand-blue-light);
  color: var(--text-primary);
}

.network-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.network-cta-line {
  font-size: 15px;
  color: var(--text-secondary);
}
.network-cta-line strong { color: var(--text-primary); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ — Colleague's clean <details> accordion
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  transition: color var(--t);
}
.faq-item summary:hover { color: var(--text-secondary); }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--brand-blue);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '−';
}

/* Remove default marker */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FINAL CTA — Dark section (your version's design intent)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-final-cta {
  background: var(--bg-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-inverse);
  margin-bottom: 18px;
}
.final-cta-title .accent-text {
  color: var(--brand-blue);
}

.final-cta-body {
  font-size: 16px;
  color: var(--text-inverse-dim);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — Colleague's clean minimal footer
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  border-top: 1px solid var(--border-default);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-logo { height: 20px; opacity: 0.4; margin-bottom: 4px; }
.footer-left p {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--text-primary); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.42s; }
.delay-5 { animation-delay: 0.56s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANGUAGE SWITCHER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--border-default);
}
.lang-switcher a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 4px 8px;
  border-radius: 6px;
  transition: all var(--t);
}
.lang-switcher a:hover {
  color: var(--text-primary);
  background: var(--bg-subtle);
}
.lang-switcher a.active {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  font-weight: 600;
}
.nav-mobile .lang-switcher {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
  padding-top: 6px;
  border-top: 1px solid var(--border-default);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 120px 20px 60px; }
  .hero-images { grid-template-columns: 1fr; gap: 12px; }
  .hero-images img { height: 200px; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }

  .network-panels { grid-template-columns: 1fr; }
  .network-panels-divider { width: auto; height: 1px; }
  .network-panel { padding: 28px 22px; }

  .footer-inner { flex-direction: column; gap: 20px; align-items: center; }
  .footer-left { align-items: center; }
  .footer-links { flex-direction: row; gap: 16px; }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --section-padding: 52px; }
  .hero-title { font-size: 40px; }
}

