/* =============================================================
   Landing Page — ABest English Center
   Design: Luxury Navy & Gold — Premium Brand Identity
   ============================================================= */

:root {
  --navy:         #0a1d3a;
  --navy-mid:     #1e3a5f;
  --gold:         #d4b46a;
  --gold-light:   #f0d28a;
  --gold-dark:    #a08442;
  --gold-grad:    linear-gradient(135deg, #f0d28a 0%, #d4b46a 50%, #a08442 100%);
  --navy-grad:    linear-gradient(135deg, #1e3a5f 0%, #0a1d3a 100%);
  --canvas:       #ffffff;
  --cream:        #fafaf7;
  --ink:          #2a2a2a;
  --ash:          #6b7280;
  --hairline:     #e5e0d5;
  --font:         'Manrope', -apple-system, system-ui, sans-serif;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ──────────────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; background: transparent;
  transition: background 0.25s, box-shadow 0.25s;
}
.lp-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--hairline);
}
.lp-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 32px;
}
.lp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.lp-logo-icon { width: 48px; height: 48px; display: block; flex-shrink: 0; }
.lp-logo-dot {
  width: 28px; height: 28px; background: var(--gold-grad);
  border-radius: 6px; display: inline-block;
}
.lp-logo-text {
  font-family: var(--font-heading); font-size: 30px; font-weight: 700;
  color: var(--navy); letter-spacing: -2px; display: inline-flex;
  flex-direction: column; line-height: 1.1;
}
.lp-logo-tagline {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}
.lp-nav-links { list-style: none; display: flex; gap: 8px; flex: 1; margin: 1rem 0; }
.lp-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 6px 12px; border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}
.lp-nav-links a:hover { background: rgba(0,0,0,0.05); color: var(--navy); }
.lp-nav-toggle { display: none; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.95); width: 44px; height: 44px; border-radius: 14px; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s; }
.lp-nav-toggle:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
.lp-nav.scrolled .lp-nav-toggle { border-color: rgba(0,0,0,0.08); background: rgba(255,255,255,0.95); color: var(--navy); }
.lp-nav.scrolled .lp-nav-toggle:hover { background: rgba(0,0,0,0.06); }
.lp-mobile-menu { position: absolute; top: 100%; left: 0; right: 0; padding: 14px 18px 18px; background: rgba(255,255,255,0.96); border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 24px 48px rgba(0,0,0,0.10); z-index: 999; display: none; }
.lp-mobile-menu.show { display: block; }
.lp-nav-links-mobile { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-nav-links-mobile li a { display: block; padding: 12px 0; color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
.lp-nav-links-mobile li a:hover { color: var(--rausch); }
.lp-mobile-actions { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.lp-mobile-buttons { display: flex; flex-direction: column; gap: 10px; }
.lp-mobile-buttons .lp-btn-ghost,
.lp-mobile-buttons .lp-btn-primary { width: 100%; justify-content: center; }
.lp-nav-actions { display: flex; }
.lp-nav:not(.scrolled) .lp-logo-text,
.lp-nav:not(.scrolled) .lp-nav-links a,
.lp-nav:not(.scrolled) .lp-btn-ghost { color: rgba(255,255,255,0.9); }
.lp-mobile-menu .lp-btn-ghost { color: var(--ink); }
.lp-nav:not(.scrolled) .lp-mobile-menu .lp-btn-ghost { color: var(--ink) !important; }
.lp-nav:not(.scrolled) .lp-lang-btn.active { background: var(--gold); color: var(--navy); }
.lp-nav:not(.scrolled) .lp-lang-btn:hover:not(.active) { background: rgba(255,255,255,0.12); color: #fff; }

.lp-lang-group { display: flex; border: 1px solid var(--hairline); border-radius: 20px; overflow: hidden; }
.lp-lang-btn { padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--ash); text-decoration: none; transition: background 0.15s, color 0.15s; }
.lp-lang-btn.active { background: var(--navy); color: #fff; }
.lp-lang-btn:hover:not(.active) { background: var(--cream); color: var(--navy); }

/* ── Buttons ─────────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex; align-items: center;
  background: var(--gold-grad); color: var(--navy);
  padding: 11px 22px; border-radius: 8px; font-size: 14px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.15s, transform 0.1s; letter-spacing: 0.3px;
}
.lp-btn-primary:hover  { opacity: 0.9; color: var(--navy); }
.lp-btn-primary:active { transform: scale(0.97); }
.lp-btn-secondary {
  display: inline-flex; align-items: center; background: transparent; color: #fff;
  padding: 11px 22px; border-radius: 8px; font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(212,180,106,0.45);
  transition: background 0.15s, border-color 0.15s;
}
.lp-btn-secondary:hover { background: rgba(212,180,106,0.12); border-color: var(--gold); color: #fff; }
.lp-btn-ghost {
  display: inline-flex; align-items: center; background: transparent; color: var(--ink);
  padding: 9px 16px; border-radius: 20px; font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid var(--hairline);
  transition: background 0.15s, color 0.15s;
}
.lp-btn-ghost:hover { background: var(--cream); color: var(--navy); }
.lp-btn-white {
  display: inline-flex; align-items: center;
  background: var(--gold-grad); color: var(--navy);
  padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer; flex-shrink: 0;
  transition: opacity 0.15s; letter-spacing: 0.3px;
}
.lp-btn-white:hover { opacity: 0.9; color: var(--navy); }
.lp-btn-lg { padding: 13px 28px; font-size: 15px; }

/* ── Hero ────────────────────────────────────────────────── */
.lp-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--navy-grad);
}
.lp-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold-grad);
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,180,106,0.11) 0%, transparent 65%);
}
.lp-circle { position: absolute; border-radius: 50%; opacity: 0.07; }
.lp-circle-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: var(--gold); }
.lp-circle-2 { width: 400px; height: 400px; bottom: -150px; left: -80px; background: var(--gold-light); }
.lp-hero-content { position: relative; padding: 120px 24px 88px; }
.lp-hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(212,180,106,0.1); border: 1px solid rgba(212,180,106,0.28);
  color: var(--gold-light); padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px; letter-spacing: 0.5px;
}
.lp-hero-title {
  font-family: var(--font-heading); font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 700; color: #fff; line-height: 1.15; letter-spacing: 1px; margin-bottom: 24px;
}
.lp-accent {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-hero-sub {
  font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.58);
  line-height: 1.75; margin-bottom: 40px; max-width: 480px;
}
.lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.lp-stats {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,180,106,0.18);
  border-radius: 14px; padding: 20px 28px;
  opacity: 0; transform: translateY(16px);
  animation: lp-stats-fade-in 0.7s ease-out 0.1s forwards;
}
.lp-stat {
  text-align: center; padding: 0 24px; opacity: 0; transform: translateY(10px);
  animation: lp-stat-fade-in 0.6s ease-out forwards;
}
.lp-stat:nth-of-type(1) { animation-delay: 0.25s; }
.lp-stat:nth-of-type(2) { animation-delay: 0.35s; }
.lp-stat:nth-of-type(3) { animation-delay: 0.45s; }
.lp-stat:nth-of-type(4) { animation-delay: 0.55s; }
.lp-stat-num {
  display: block; font-family: var(--font-heading); font-size: 26px; font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-stat-lbl {
  font-size: 12px; color: rgba(255,255,255,0.42); font-weight: 500;
  margin-top: 2px; display: block; letter-spacing: 0.5px;
}
.lp-stat-divider { width: 1px; height: 36px; background: rgba(212,180,106,0.18); flex-shrink: 0; }

@keyframes lp-stats-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lp-stat-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Sections ────────────────────────────────────────────── */
.lp-section { padding: 88px 0; }
.lp-section-cloud { background: var(--cream); }
.lp-section-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.lp-section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.lp-section-eyebrow::before,
.lp-section-eyebrow::after {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold); opacity: 0.55;
}
.lp-section-title {
  font-family: var(--font-heading); font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700; color: var(--navy); letter-spacing: 0.5px; line-height: 1.2; margin-bottom: 16px;
}
.lp-section-sub { font-size: 16px; color: var(--ash); font-weight: 400; line-height: 1.65; }

/* ── Courses grid ────────────────────────────────────────── */
.lp-courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.lp-course-card {
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.lp-course-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transition: transform 0.25s ease; transform-origin: left;
}
.lp-course-card:hover { box-shadow: rgba(10,29,58,0.1) 0 8px 28px; transform: translateY(-3px); border-color: rgba(212,180,106,0.4); }
.lp-course-card:hover::before { transform: scaleX(1); }
.lp-course-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; flex-shrink: 0; }
.lp-course-body { flex: 1; }
.lp-course-level { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.lp-course-name { font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.5px; }
.lp-course-desc  { font-size: 14px; color: var(--ash); line-height: 1.6; }
.lp-course-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.lp-course-meta { font-size: 13px; color: var(--ash); }
.lp-course-fee  { font-size: 15px; font-weight: 700; color: var(--navy); }

/* ── Features grid ───────────────────────────────────────── */
.lp-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.lp-feature-card {
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: 14px; padding: 32px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.lp-feature-card:hover { box-shadow: rgba(10,29,58,0.07) 0 6px 20px; border-color: rgba(212,180,106,0.35); }
.lp-feature-icon { font-size: 28px; margin-bottom: 16px; }
.lp-feature-title { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.3px; }
.lp-feature-desc { font-size: 14px; color: var(--ash); line-height: 1.65; }

/* ── Teachers grid ───────────────────────────────────────── */
.lp-teachers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.lp-teacher-card {
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: 14px; padding: 24px;
  display: flex; align-items: center; gap: 16px; transition: box-shadow 0.2s, border-color 0.2s;
}
.lp-teacher-card:hover { box-shadow: rgba(10,29,58,0.08) 0 4px 16px; border-color: rgba(212,180,106,0.4); }
.lp-teacher-avatar {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; border: 2px solid rgba(212,180,106,0.3);
}
.lp-teacher-name { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.lp-teacher-role { font-size: 13px; color: var(--ash); margin: 3px 0; }
.lp-teacher-cert { font-size: 12px; color: var(--ash); }

/* ── Award lockup ────────────────────────────────────────── */
.lp-award-lockup { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 52px; }
.lp-laurel       { font-size: 48px; color: var(--gold); opacity: 0.55; line-height: 1; }
.lp-laurel-right { transform: scaleX(-1); }
.lp-award-rating {
  font-family: var(--font-heading); font-size: 56px; font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.lp-award-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); }
.lp-award-sub { font-size: 14px; color: var(--ash); font-weight: 400; }

/* ── Reviews ─────────────────────────────────────────────── */
.lp-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.lp-review-card { background: var(--canvas); border: 1px solid var(--hairline); border-radius: 14px; padding: 28px; transition: box-shadow 0.2s; }
.lp-review-card:hover { box-shadow: rgba(10,29,58,0.07) 0 4px 16px; }
.lp-review-stars { margin-bottom: 14px; }
.lp-review-text  { font-size: 14px; color: var(--ink); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.lp-review-footer { display: flex; align-items: center; gap: 12px; }
.lp-review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  border: 2px solid rgba(212,180,106,0.4); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.lp-review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.lp-review-meta { font-size: 13px; color: var(--ash); }

/* ── CTA section ─────────────────────────────────────────── */
.lp-cta-section { background: var(--cream); }
.lp-cta-card {
  background: var(--navy-grad); border-radius: 20px; padding: 60px 52px;
  position: relative; overflow: hidden; border: 1px solid rgba(212,180,106,0.15);
}
.lp-cta-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(212,180,106,0.06);
}
.lp-cta-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad);
}
.lp-cta-content { position: relative; }
.lp-cta-title { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 38px); font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: 0.5px; }
.lp-cta-sub { font-size: 16px; color: rgba(255,255,255,0.58); margin-bottom: 36px; }
.lp-contact-form { display: flex; flex-direction: column; gap: 12px; max-width: 720px; }
.lp-form-row { display: flex; gap: 12px; }
.lp-input {
  flex: 1; padding: 13px 16px; border: 1px solid rgba(212,180,106,0.2);
  border-radius: 8px; font-family: var(--font); font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,0.07); color: #fff; outline: none; min-width: 0;
  transition: border-color 0.15s, background 0.15s;
}
.lp-input::placeholder { color: rgba(255,255,255,0.35); }
.lp-input:focus { border-color: rgba(212,180,106,0.5); background: rgba(255,255,255,0.1); }
.lp-select option { background: var(--navy); }

/* ── Info strip ──────────────────────────────────────────── */
.lp-info-strip { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin-top: 36px; }
.lp-info-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ash); font-weight: 500; }

/* ── Footer ──────────────────────────────────────────────── */
.lp-footer { background: var(--navy); border-top: 2px solid rgba(212,180,106,0.22); padding: 56px 0 0; }
.lp-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.lp-footer .lp-logo-dot  { background: var(--gold-grad); }
.lp-footer .lp-logo-text { color: var(--gold-light); letter-spacing: -1px; }
.lp-footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; }
.lp-footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.lp-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-links li, .lp-footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.lp-footer-links a:hover { color: var(--gold-light); }
.lp-social-row { display: flex; gap: 8px; margin-top: 16px; }
.lp-social-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(212,180,106,0.25);
  background: transparent; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none; font-size: 16px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.lp-social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lp-footer-bottom {
  border-top: 1px solid rgba(212,180,106,0.12); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.lp-footer .lp-lang-group { border-color: rgba(212,180,106,0.25); }
.lp-footer .lp-lang-btn   { color: rgba(255,255,255,0.45); }
.lp-footer .lp-lang-btn.active { background: var(--gold); color: var(--navy); }
.lp-footer .lp-lang-btn:hover:not(.active) { background: rgba(212,180,106,0.12); color: var(--gold-light); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .lp-nav-links { display: none; }
  .lp-nav-actions { display: none; }
  .lp-nav-actions .lp-lang-group { display: none; }
  .lp-nav-toggle { display: inline-flex; margin-left: auto; flex-shrink: 0; }
  .lp-nav-inner { justify-content: space-between; padding: 0 18px; }
  .lp-logo { flex: 0 1 auto; }
  .lp-hero-content { padding: 110px 18px 60px; }
  .lp-stats { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .lp-section { padding: 50px 0; }
  .lp-hero-content { padding: 120px 18px 60px; }
  .lp-hero-title { font-size: clamp(32px, 7vw, 48px); }
  .lp-hero-sub { max-width: 100%; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-btn-primary, .lp-btn-secondary, .lp-btn-white { width: 100%; justify-content: center; }
  .lp-form-row { flex-direction: column; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .lp-nav-inner { padding: 0 14px; }
  .lp-hero-content { padding: 110px 16px 50px; }
  .lp-hero-title { font-size: clamp(28px, 9vw, 40px); }
  .lp-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .lp-hero-actions { gap: 10px; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .lp-footer-bottom { justify-content: center; text-align: center; }
  .lp-stats { padding: 14px; }
  .lp-stat { padding: 0 12px; }
}
@media (max-width: 414px) {
  :root { font-size: 14px; }
  .lp-nav { padding-top: env(safe-area-inset-top); }
  .lp-nav-inner { min-height: 72px; }
  .lp-hero-content { padding-top: calc(100px + env(safe-area-inset-top)); }
  .lp-logo-text { font-size: 20px; }
  .lp-logo-tagline { font-size: 8px; }
  .lp-hero-badge { font-size: 12px; padding: 5px 12px; }
  .lp-hero-title { line-height: 1.1; }
  .lp-hero-sub { max-width: 100%; }
  .lp-footer-bottom { flex-direction: column; align-items: center; }
}