/* =========================================
   SiteReady — Design System
   ========================================= */

:root {
  /* Colors */
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #EFF6FF;
  --green:       #16A34A;
  --green-light: #F0FDF4;
  --amber:       #D97706;
  --amber-light: #FFFBEB;
  --navy:        #0F172A;
  --gray-900:    #111827;
  --gray-700:    #374151;
  --gray-500:    #6B7280;
  --gray-300:    #D1D5DB;
  --gray-100:    #F3F4F6;
  --white:       #FFFFFF;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-y: 96px;
  --container: 1160px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.14);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Transitions */
  --ease: 0.22s ease;
}

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

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-md);
  font-size: 1rem; font-weight: 600; line-height: 1;
  transition: var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 14px rgba(37,99,235,.30); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.40); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-ghost { background: transparent; color: var(--gray-700); }
.btn-ghost:hover { color: var(--blue); background: var(--blue-light); }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--r-lg); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav .container { padding-top: 0; padding-bottom: 0; }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-links a { padding: 7px 14px; border-radius: var(--r-sm); font-size: 0.9rem; font-weight: 500; color: var(--gray-700); transition: var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle { display: none; padding: 8px; color: var(--gray-700); border-radius: var(--r-sm); transition: var(--ease); }
.nav-toggle:hover { background: var(--gray-100); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 16px 24px 24px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 16px; border-radius: var(--r-sm); font-weight: 500; color: var(--gray-700); transition: var(--ease); }
.mobile-menu a:hover { color: var(--blue); background: var(--blue-light); }

/* ── Hero ── */
.hero {
  padding: 140px 0 96px;
  background: linear-gradient(160deg, #EFF6FF 0%, #F0FDF4 50%, #FFFBEB 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(22,163,74,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--blue); border-radius: 100px; padding: 6px 16px; font-size: 0.82rem; font-weight: 600; color: var(--blue); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.2)} }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; color: var(--navy); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(135deg, var(--blue) 0%, #7C3AED 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.1rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }
.hero-visual { position: relative; }
.browser-mockup { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--gray-100); }
.browser-bar { background: var(--gray-100); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.browser-dot { width: 12px; height: 12px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FEBC2E; }
.browser-dot:nth-child(3) { background: #28C840; }
.browser-url { flex: 1; background: var(--white); border-radius: var(--r-sm); padding: 5px 12px; font-size: 0.78rem; color: var(--gray-500); margin-left: 8px; }
.site-preview { padding: 24px; }
.preview-header { background: linear-gradient(135deg, var(--blue) 0%, #7C3AED 100%); border-radius: var(--r-md); padding: 20px; margin-bottom: 16px; }
.preview-logo { width: 80px; height: 10px; background: rgba(255,255,255,.6); border-radius: 4px; margin-bottom: 12px; }
.preview-headline { width: 60%; height: 16px; background: rgba(255,255,255,.9); border-radius: 4px; margin-bottom: 8px; }
.preview-sub { width: 80%; height: 10px; background: rgba(255,255,255,.5); border-radius: 4px; margin-bottom: 16px; }
.preview-btn { display: inline-block; background: var(--white); border-radius: var(--r-sm); padding: 8px 18px; font-size: 0.75rem; font-weight: 700; color: var(--blue); }
.preview-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.preview-card { background: var(--gray-100); border-radius: var(--r-sm); padding: 12px; }
.preview-card-icon { width: 24px; height: 24px; background: var(--blue-light); border-radius: 6px; margin-bottom: 8px; }
.preview-card-line { height: 8px; background: var(--gray-300); border-radius: 3px; margin-bottom: 6px; }
.preview-card-line.short { width: 60%; }
.preview-cta { background: linear-gradient(135deg, var(--green) 0%, #15803D 100%); border-radius: var(--r-md); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.preview-cta-text { height: 10px; background: rgba(255,255,255,.7); border-radius: 3px; width: 55%; }
.preview-cta-btn { background: var(--white); border-radius: var(--r-sm); padding: 6px 12px; font-size: 0.7rem; font-weight: 700; color: var(--green); white-space: nowrap; }
.hero-float-badge { position: absolute; background: var(--white); border-radius: var(--r-md); padding: 10px 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; border: 1px solid var(--gray-100); }
.hero-float-badge.badge-seo { top: -16px; right: -16px; color: var(--green); }
.hero-float-badge.badge-lead { bottom: 24px; left: -20px; color: var(--blue); }
.float-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.float-icon.green { background: var(--green-light); }
.float-icon.blue { background: var(--blue-light); }

/* ── Trust Bar ── */
.trust-bar { padding: 28px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); background: var(--white); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--gray-700); }
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Section base ── */
section { padding: var(--section-y) 0; }
.section-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); background: var(--blue-light); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.section-heading { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Pain Points ── */
.pain-section { background: var(--gray-900); }
.pain-heading { color: var(--white) !important; }
.pain-sub { color: rgba(255,255,255,.6) !important; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pain-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl); padding: 32px 28px; }
.pain-icon { width: 52px; height: 52px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pain-icon.red { background: rgba(239,68,68,.15); color: #EF4444; }
.pain-icon.amber { background: rgba(217,119,6,.15); color: var(--amber); }
.pain-icon.purple { background: rgba(124,58,237,.15); color: #7C3AED; }
.pain-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.pain-card p { font-size: 0.92rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.pain-stat { font-size: 1.6rem; font-weight: 800; color: var(--white); display: block; }
.pain-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.4); }
.pain-arrow { display: flex; justify-content: center; margin: 48px 0; }
.pain-arrow-line { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.3); font-size: 0.9rem; font-weight: 500; }

/* ── Features ── */
.features-section { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card { background: var(--gray-100); border-radius: var(--r-xl); padding: 28px 24px; transition: var(--ease); border: 1px solid transparent; }
.feature-card:hover { background: var(--white); border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon.blue { background: var(--blue-light); color: var(--blue); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-icon.purple { background: #F3F0FF; color: #7C3AED; }
.feature-icon.amber { background: var(--amber-light); color: var(--amber); }
.feature-icon.orange { background: #FFF0E6; color: #FF6B00; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* ── How It Works ── */
.how-section { background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 2px; background: linear-gradient(90deg, var(--blue) 0%, #7C3AED 100%);
}
.step-card { text-align: center; position: relative; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--blue) 0%, #7C3AED 100%); color: var(--white); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; box-shadow: 0 8px 24px rgba(37,99,235,.3); }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }
.step-time { display: inline-block; margin-top: 12px; background: var(--green-light); color: var(--green); font-size: 0.78rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }

/* ── Social Proof ── */
.proof-section { background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.proof-card { background: var(--gray-100); border-radius: var(--r-xl); padding: 28px; }
.proof-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #F59E0B; }
.proof-text { font-size: 0.92rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 20px; font-style: italic; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--white); flex-shrink: 0; }
.proof-avatar.blue { background: linear-gradient(135deg, var(--blue), #7C3AED); }
.proof-avatar.green { background: linear-gradient(135deg, var(--green), #15803D); }
.proof-avatar.amber { background: linear-gradient(135deg, var(--amber), #B45309); }
.proof-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.proof-role { font-size: 0.78rem; color: var(--gray-500); }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; padding: 40px; background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 100%); border-radius: var(--r-xl); }
.stats-bar-item { text-align: center; }
.stats-bar-num { font-size: 2rem; font-weight: 900; color: var(--white); display: block; }
.stats-bar-label { font-size: 0.82rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── Pricing ── */
.pricing-section { background: var(--gray-100); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pricing-card { background: var(--white); border-radius: var(--r-xl); padding: 36px 28px; border: 2px solid var(--gray-100); position: relative; transition: var(--ease); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow-xl); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), #7C3AED); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-plan { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 8px; }
.pricing-card.featured .pricing-plan { color: var(--blue); }
.pricing-name { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pricing-desc { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 24px; }
.pricing-price { margin-bottom: 28px; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.price-period { font-size: 0.9rem; color: var(--gray-500); }
.price-note { font-size: 0.78rem; color: var(--green); font-weight: 600; margin-top: 4px; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-700); }
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.pricing-features li.excluded { color: var(--gray-300); }
.pricing-features li.excluded svg { color: var(--gray-300); }
.pricing-cta { width: 100%; justify-content: center; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-grid { max-width: 720px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--navy); text-align: left; transition: var(--ease); }
.faq-question:hover { background: var(--gray-100); }
.faq-question[aria-expanded="true"] { background: var(--blue-light); color: var(--blue); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--ease); }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ── CTA section ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 60%, #1a1060 100%); padding: var(--section-y) 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -0.025em; }
.cta-inner > p { font-size: 1.05rem; color: rgba(255,255,255,.6); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-note { font-size: 0.85rem; color: rgba(255,255,255,.4); }

/* ── Footer ── */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge { font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,.55); transition: var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  :root { --section-y: 64px; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .pain-grid, .features-grid, .proof-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar-inner { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
