/* ==========================================================================
   Nerve Relief Gelatin — Sales Page Styles
   ========================================================================== */

:root {
  --dark: #011924;
  --primary: #04344B;
  --primary-light: #0A5171;
  --accent: #28D0CB;
  --accent-soft: #6FE6E1;
  --white: #FFFFFF;
  --off-white: #F3FAFA;
  --ink: #082433;
  --muted: #7FA3B3;
  --border-soft: rgba(40, 208, 203, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-glow: 0 0 40px rgba(40, 208, 203, 0.25);
  --shadow-card: 0 20px 45px rgba(1, 25, 36, 0.35);

  --font-heading: 'Sora', 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.4px; }
h3 { font-size: 1.15rem; }

p { color: var(--primary); }

sup { color: var(--accent); font-weight: 700; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1FB9B4 100%);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(40, 208, 203, 0.4);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.btn-glow { position: relative; }
.btn-glow::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0;
  z-index: -1;
  filter: blur(14px);
  transition: opacity 0.3s ease;
}
.btn-glow:hover::after { opacity: 0.7; }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--dark);
  color: var(--accent-soft);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 9px 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 25, 36, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(40, 208, 203, 0.15);
  transition: padding 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
}

.logo-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.logo-text strong { color: var(--accent-soft); font-weight: 800; }

.main-nav { display: flex; align-items: center; gap: 30px; }

.nav-link {
  color: #C7E4E4;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--accent-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--accent-soft);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 15% 10%, var(--primary-light) 0%, var(--primary) 42%, var(--dark) 100%);
  overflow: hidden;
  padding: 90px 0 70px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: var(--accent);
  top: -160px; right: -120px;
}
.hero-glow-2 {
  width: 380px; height: 380px;
  background: var(--primary-light);
  bottom: -140px; left: -100px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-soft);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--primary-light); }

.hero h1 { color: var(--white); position: relative; display: inline; }
.accent-underline {
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-sub {
  color: #BFE0E0;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 20px 0 24px;
}

.hero-points { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #DDF3F2;
  font-weight: 600;
  font-size: 0.95rem;
}
.icon-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  background: rgba(40,208,203,0.12);
  border-radius: 50%;
  padding: 3px;
}

.hero-cta-note {
  color: #93C4C2;
  font-size: 0.85rem;
  margin-top: 12px;
  font-weight: 600;
}

.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B9DEDE;
  font-size: 0.82rem;
  font-weight: 700;
}
.trust-item svg { width: 22px; height: 22px; color: var(--accent-soft); }

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-halo {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,208,203,0.35) 0%, transparent 70%);
  filter: blur(10px);
  animation: pulseGlow 4s ease-in-out infinite;
}
.bottle-halo.small { width: 260px; height: 260px; }

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.bottle-img {
  position: relative;
  width: 340px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
  animation: floatBottle 5s ease-in-out infinite;
}

@keyframes floatBottle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 10px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-top { top: 12%; right: 4%; animation: floatBadge 4.5s ease-in-out infinite; }
.badge-bottom { bottom: 10%; left: 2%; animation: floatBadge 4.5s ease-in-out infinite 1s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ---------- Section Head ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-head p { margin-top: 14px; color: var(--primary); font-size: 1rem; }

/* ---------- Problem Section ---------- */
.problem { padding: 90px 0; background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--off-white);
  border: 1px solid rgba(4,52,75,0.08);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.problem-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  display: flex; align-items: center; justify-content: center;
}
.problem-icon svg { width: 28px; height: 28px; color: var(--accent); }

.problem-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.problem-card p { font-size: 0.9rem; color: var(--muted); }

/* ---------- How It Works ---------- */
.how-it-works { padding: 90px 0; background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  border: 1px solid rgba(4,52,75,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.step-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 14px;
  opacity: 0.85;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Benefits ---------- */
.benefits {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--primary) 0%, var(--dark) 100%);
}
.benefits .section-head h2 { color: var(--white); }
.benefits .section-head p { color: #A9CFCF; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow .3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(40,208,203,0.07);
  box-shadow: var(--shadow-glow);
}

.benefit-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(40,208,203,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon svg { width: 26px; height: 26px; color: var(--accent-soft); }

.benefit-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.05rem; }
.benefit-card p { color: #A9CFCF; font-size: 0.9rem; }

/* ---------- Ingredients ---------- */
.ingredients { padding: 100px 0; background: var(--white); }

.ingredients-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.ingredients-media { position: relative; display: flex; justify-content: center; }
.ingredients-media img { width: 280px; filter: drop-shadow(0 25px 30px rgba(0,0,0,0.15)); position: relative; }

.ingredients-copy p { margin: 16px 0 28px; color: var(--primary); }

.ingredient-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 34px;
}

.ingredient-item {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.ingredient-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.ingredient-item p { font-size: 0.85rem; color: var(--muted); }

/* ---------- Guarantee ---------- */
.guarantee { padding: 70px 0; background: var(--off-white); }

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  box-shadow: var(--shadow-card);
}

.guarantee-badge {
  flex-shrink: 0;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(40,208,203,0.15);
  display: flex; align-items: center; justify-content: center;
}
.guarantee-badge svg { width: 46px; height: 46px; color: var(--accent-soft); }

.guarantee-copy h2 { color: var(--white); margin-bottom: 10px; }
.guarantee-copy p { color: #B9DEDE; }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: var(--off-white);
  border: 1px solid rgba(4,52,75,0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.stars { color: #F5B93F; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 0.94rem; color: var(--primary); margin-bottom: 20px; font-style: italic; }

.reviewer { display: flex; flex-direction: column; }
.reviewer-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.reviewer-tag { font-size: 0.76rem; color: var(--accent); font-weight: 700; }

.reviews-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 30px;
}

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; background: var(--off-white); }

.price-card-single {
  position: relative;
  max-width: 420px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 46px 36px 38px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 20px 40px rgba(40,208,203,0.22);
}

.ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #1FB9B4);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 7px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tag { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--dark); margin-top: 10px; }
.price-desc { font-size: 0.86rem; color: var(--muted); }
.price-value { font-family: var(--font-heading); font-weight: 800; font-size: 2.8rem; color: var(--primary); margin: 14px 0 2px; }
.price-unit { font-size: 0.82rem; color: var(--accent); font-weight: 700; margin-bottom: 20px; }

.price-card-single .btn { width: 100%; }

.pricing-badges {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.pricing-badges span { font-size: 0.82rem; color: var(--primary); font-weight: 600; }

.cart-toast {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary);
  min-height: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--white); }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1px solid rgba(4,52,75,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--off-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark);
  cursor: pointer;
}
.faq-question svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 240px; padding: 0 22px 20px; }
.faq-answer p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 90px 0;
  text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, var(--primary-light) 0%, var(--primary) 45%, var(--dark) 100%);
}
.final-cta h2 { color: var(--white); margin-bottom: 12px; }
.final-cta p { color: #BFE0E0; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); padding: 70px 0 24px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand p { color: #7FA3B3; font-size: 0.85rem; margin-top: 6px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: var(--white); font-size: 0.88rem; letter-spacing: 0.5px; margin-bottom: 6px; }
.footer-links a {
  color: #7FA3B3;
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent-soft); }
.footer-address { color: #5D8493; font-size: 0.8rem; margin-top: 6px; }

.fda-disclaimer {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fda-disclaimer p {
  color: #5D8493;
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #5D8493; font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #5D8493; font-size: 0.8rem; text-decoration: none; }
.footer-legal a:hover { color: var(--accent-soft); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1,25,36,0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
  padding: 24px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
}
.modal-box h3 { margin-bottom: 16px; }
.modal-box p { font-size: 0.9rem; margin-bottom: 12px; color: var(--primary); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-points { align-items: center; }
  .hero-cta { display: flex; flex-direction: column; align-items: center; }
  .trust-row { justify-content: center; }
  .hero-media { order: -1; margin-bottom: 20px; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .price-card-single { padding: 40px 26px 32px; }

  .ingredients-inner { grid-template-columns: 1fr; text-align: center; }
  .ingredient-list { grid-template-columns: 1fr; text-align: left; }
  .ingredients-media { order: -1; }

  .guarantee-inner { flex-direction: column; text-align: center; padding: 40px 30px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; align-items: center; text-align: center; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 30px;
    gap: 18px;
    border-bottom: 1px solid rgba(40,208,203,0.15);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }

  .problem-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
