:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --muted-bg: #f1f5f9;
  --brand: #2563eb;
  --brand-600: #1d4ed8;
  --brand-700: #1e40af;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --section-bg: #f8fafc;
  --hero-bg: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --fg: #f8fafc;
    --muted: #94a3b8;
    --muted-bg: #1e293b;
    --border: #334155;
    --card-bg: #1e293b;
    --section-bg: #0f172a;
    --hero-bg: #020617;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--muted-bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: white;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
  color: white;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: #0f172a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 200;
  transition: right 0.3s ease;
  padding: 24px;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: white;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-links .btn {
  margin-top: 16px;
  text-align: center;
  background: var(--brand);
  color: white;
}

.mobile-nav-links .btn:hover {
  background: var(--brand-hover);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu {
    display: flex;
  }
}

.page-content {
  padding-top: 64px;
}

.generator-embed {
  background: var(--bg);
  width: 100%;
}

.generator-embed iframe {
  width: 100%;
  height: 900px;
  border: none;
  display: block;
  overflow: hidden;
}

@media (max-width: 768px) {
  .generator-embed iframe {
    height: 1100px;
  }
}

.hero-section {
  position: relative;
  padding: 100px 48px 80px;
  background: var(--hero-bg);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 24px 60px;
  }
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border-radius: inherit;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='none' stroke='%232563eb' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  border-radius: inherit;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 480px;
}

@media (max-width: 1100px) {
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
}

/* Hero Suite - Horizontal Flow */
.suite { margin-top: 0; }
.suite-label {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.suite-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-item .size-label {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.flow-arrow {
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}
.flow-arrow svg {
  width: 28px;
  height: 28px;
}

/* Mini Meta Ad Card */
.meta-ad-mini {
  position: relative;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 120px;
}

/* Mini Header */
.mini-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
}
.mini-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ea580c);
  flex-shrink: 0;
}
.mini-avatar.small {
  width: 14px;
  height: 14px;
}
.mini-brand {
  flex: 1;
  min-width: 0;
}
.mini-brand .brand-name {
  font-weight: 600;
  font-size: 9px;
  color: #1c1e21;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-brand .sponsored {
  font-size: 7px;
  color: #65676b;
}

/* Mini Primary Text */
.mini-text {
  padding: 4px 8px 6px;
  font-size: 8px;
  line-height: 1.3;
  color: #1c1e21;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mini Media with aspect ratios */
.mini-media {
  width: 100%;
  overflow: hidden;
  flex: 1;
}
.mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-media[data-ratio="1-1"] { aspect-ratio: 1 / 1; }
.mini-media[data-ratio="4-5"] { aspect-ratio: 4 / 5; }
.mini-media[data-ratio="1-91-1"] { aspect-ratio: 1.91 / 1; }
.mini-media[data-ratio="1-91-1"] img {
  object-position: center 25%;
}

/* Mini Link Bar */
.mini-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  background: #f0f2f5;
  gap: 4px;
}
.mini-link span {
  font-size: 7px;
  color: #65676b;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-cta {
  background: #e4e6eb;
  border: none;
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 7px;
  font-weight: 600;
  color: #1c1e21;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Landscape card - wider */
.meta-ad-mini.landscape {
  width: 180px;
}

/* Story Mini Card - Hero Phone */
.flow-item.story-hero {
  margin-left: 16px;
}
.meta-ad-mini.story-mini {
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  width: auto;
  align-self: stretch;
}
.story-mini-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #1a1a1a;
  box-shadow: 
    0 12px 40px rgba(0,0,0,.5),
    0 30px 80px rgba(0,0,0,.4),
    inset 0 0 0 4px rgba(255,255,255,.15);
  padding: 8px;
  height: 320px;
}
.story-mini-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 16px;
  background: #1a1a1a;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}
.story-mini-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.story-mini-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-mini-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 16px 10px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.6), transparent);
  z-index: 5;
}
.story-mini-header span {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}
.story-mini-cta {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #1c1e21;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 5;
}

/* Story Text Overlay */
.story-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story-headline {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 0 30px rgba(0,0,0,.4);
  letter-spacing: -0.02em;
}
.story-subhead {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Responsive: hide arrows on mobile, wrap flow */
@media (max-width: 900px) {
  .suite-flow {
    flex-wrap: wrap;
    gap: 16px;
  }
  .flow-arrow {
    display: none;
  }
  .meta-ad-mini {
    width: 100px;
  }
  .meta-ad-mini.landscape {
    width: 140px;
  }
  .story-mini-frame {
    height: 240px;
    border-radius: 24px;
    padding: 6px;
  }
  .flow-item.story-hero {
    margin-left: 0;
  }
  .story-headline {
    font-size: 14px;
  }
  .story-subhead {
    font-size: 9px;
  }
  .story-mini-cta {
    padding: 10px 12px;
    font-size: 11px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 500px) {
  .meta-ad-mini {
    width: 80px;
  }
  .meta-ad-mini.landscape {
    width: 120px;
  }
  .story-mini-frame {
    height: 200px;
    border-radius: 20px;
    padding: 5px;
  }
  .story-mini-inner {
    border-radius: 15px;
  }
  .story-mini-frame::before {
    width: 32px;
    height: 10px;
  }
  .story-headline {
    font-size: 12px;
  }
  .story-subhead {
    font-size: 8px;
  }
  .story-mini-cta {
    padding: 8px 10px;
    font-size: 10px;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
  .mini-header {
    padding: 4px 5px;
  }
  .mini-avatar {
    width: 14px;
    height: 14px;
  }
  .mini-brand .brand-name {
    font-size: 7px;
  }
  .mini-brand .sponsored {
    display: none;
  }
  .mini-text {
    display: none;
  }
}

.hero-badge {
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.hero-sub {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  .hero-badges {
    justify-content: center;
  }
}

.hero-badges .badge {
  background: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.proof-strip {
  background: linear-gradient(to bottom, var(--hero-bg), #1e293b);
  padding: 48px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-strip p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

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

.logo-row img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.logo-row img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-row {
    gap: 24px;
  }
  
  .logo-row img {
    height: 28px;
  }
}

.section-header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.125rem;
}

.bundle-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--section-bg) 100%);
  position: relative;
  overflow: hidden;
}

.bundle-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .bundle-section {
    padding: 60px 24px;
  }
}

.bundle-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  position: relative;
}

.bundle-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.bundle-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--fg);
}

.bundle-header p {
  color: var(--muted);
  font-size: 1.125rem;
}

.bundle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

@media (max-width: 900px) {
  .bundle-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.bundle-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bundle-card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bundle-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--fg);
}

.bundle-card-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 20px;
}

.size-previews {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
}

.size-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.size-thumb .size-inner {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.size-thumb span {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
}

.size-thumb.size-square .size-inner {
  width: 44px;
  height: 44px;
}

.size-thumb.size-portrait .size-inner {
  width: 40px;
  height: 50px;
}

.size-thumb.size-landscape .size-inner {
  width: 56px;
  height: 29px;
}

.size-thumb.size-story .size-inner {
  width: 32px;
  height: 57px;
}

.copy-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  margin-bottom: 16px;
}

.copy-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  flex-shrink: 0;
}

.copy-bar {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
}

.copy-line-1 .copy-bar { width: 85%; }
.copy-line-2 .copy-bar { width: 100%; }
.copy-line-3 .copy-bar { width: 65%; }

.copy-styles {
  display: flex;
  gap: 8px;
}

.style-tag {
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #6366f1;
  letter-spacing: 0.05em;
}

.export-files {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.export-file {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease;
}

.export-file:hover {
  border-color: #cbd5e1;
}

.export-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.export-zip .export-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.export-zip .export-icon svg {
  stroke: #d97706;
}

.export-csv .export-icon {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.export-csv .export-icon svg {
  stroke: #059669;
}

.export-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.export-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
}

.export-meta {
  font-size: 11px;
  color: var(--muted);
}

.bundle-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.bundle-cta-hint {
  font-size: 13px;
  color: var(--muted);
}

.faq-section {
  padding: 60px 40px;
  background: var(--section-bg);
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 24px;
  }
}

.faq {
  max-width: 100%;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg);
}

.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.footer {
  background: var(--hero-bg);
  color: white;
  padding: 60px 0 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  color: #64748b;
  font-size: 13px;
  padding-top: 30px;
  border-top: 1px solid #334155;
}
