:root {
  --bg-primary: #000000;
  --bg-elevated: #07101c;
  --bg-elevated-2: #0c1625;
  --bg-soft: rgba(11, 20, 33, 0.72);
  --text-primary: #f5fbff;
  --text-secondary: #9cb4c9;
  --text-muted: #6f879d;
  --border: rgba(89, 140, 187, 0.24);
  --accent: #11f3d9;
  --accent-2: #3aa3ff;
  --accent-3: #8b5cf6;
  --danger: #ff4d6d;
  --success: #57f287;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --container: 1180px;
  --transition: 220ms ease;
  --font-stack: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 15% 20%, rgba(17, 243, 217, 0.12), transparent 0 28%),
    radial-gradient(circle at 85% 12%, rgba(58, 163, 255, 0.16), transparent 0 24%),
    linear-gradient(180deg, #000000 0%, #000000 40%, #02060d 100%);
  font-family: var(--font-stack);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 163, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 163, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 78%);
  pointer-events: none;
  z-index: -1;
}

body.blog-page::before {
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 92%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-kicker,
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-intro,
.hero-subhead,
.problem p,
.footer-copy p,
.blog-intro,
.post-meta,
.blog-excerpt,
.post-content p,
.post-content li {
  color: var(--text-secondary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-shell {
  min-height: 5.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 2.95rem;
  height: 2.95rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 243, 217, 0.16), rgba(17, 243, 217, 0.02));
  box-shadow:
    0 0 0 1px rgba(17, 243, 217, 0.24),
    0 10px 24px rgba(17, 243, 217, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.94rem;
  color: var(--text-secondary);
  transition: color var(--transition), transform var(--transition);
  transform-origin: center;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  animation: wiggle 0.45s ease;
  transform: scale(1.08);
}

@keyframes wiggle {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.06) rotate(-1deg); }
  50% { transform: scale(1.08) rotate(1.1deg); }
  75% { transform: scale(1.06) rotate(-0.7deg); }
  100% { transform: scale(1.08) rotate(0deg); }
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.phone-link,
.footer-email {
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.footer-email {
  display: block;
  margin-top: 0.7rem;
  color: var(--text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #63e8ff);
  color: #041118;
  box-shadow: 0 14px 34px rgba(17, 243, 217, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(17, 243, 217, 0.3);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(17, 243, 217, 0.4);
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-grid,
.hero-glow {
  position: absolute;
  pointer-events: none;
}

.hero-grid {
  inset: auto -10% 10% -10%;
  height: 20rem;
  background:
    linear-gradient(rgba(17, 243, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 243, 217, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(1000px) rotateX(76deg);
  transform-origin: top;
  opacity: 0.55;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.hero-glow-a {
  width: 26rem;
  height: 26rem;
  background: rgba(17, 243, 217, 0.18);
  top: 5rem;
  left: -6rem;
}

.hero-glow-b {
  width: 30rem;
  height: 30rem;
  background: rgba(58, 163, 255, 0.14);
  right: -8rem;
  bottom: 3rem;
}

/* Logo blend fix */
.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2.35rem;
  width: min(100%, 28rem);
  isolation: isolate;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 16%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(17, 243, 217, 0.28) 0%,
      rgba(17, 243, 217, 0.14) 26%,
      rgba(17, 243, 217, 0.06) 42%,
      rgba(0, 0, 0, 0) 72%
    );
  filter: blur(26px);
  z-index: 0;
  pointer-events: none;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -5% -6%;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #000000 0%,
      rgba(0, 0, 0, 0.92) 6%,
      rgba(0, 0, 0, 0.18) 18%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0.18) 82%,
      rgba(0, 0, 0, 0.92) 94%,
      #000000 100%
    ),
    linear-gradient(
      180deg,
      #000000 0%,
      rgba(0, 0, 0, 0.86) 7%,
      rgba(0, 0, 0, 0.18) 19%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0) 74%,
      rgba(0, 0, 0, 0.24) 84%,
      rgba(0, 0, 0, 0.88) 94%,
      #000000 100%
    ),
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0) 48%,
      rgba(0, 0, 0, 0.08) 60%,
      rgba(0, 0, 0, 0.32) 74%,
      rgba(0, 0, 0, 0.82) 100%
    );
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 18.75rem);
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  mix-blend-mode: lighten;
  clip-path: inset(10% 5% 9% 5%);
  filter:
    brightness(1.04)
    contrast(1.06)
    drop-shadow(0 0 22px rgba(17, 243, 217, 0.18))
    drop-shadow(0 14px 40px rgba(17, 243, 217, 0.12));
  user-select: none;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-subhead {
  font-size: 1.11rem;
  max-width: 64ch;
  margin-bottom: 1.7rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-pill i {
  color: var(--accent);
}

.glass {
  background: linear-gradient(180deg, rgba(12, 22, 37, 0.82), rgba(7, 16, 28, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-stage {
  display: grid;
  gap: 1rem;
}

.stage-card,
.feature-card,
.step-card,
.proof-card,
.price-card,
.contact-form,
.blog-card,
.post-card {
  padding: 1.4rem;
}

.dashboard-card {
  position: relative;
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -35% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 243, 217, 0.14), transparent 60%);
}

.stage-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.stage-top p,
.message-time,
.form-note,
.footer-meta,
.post-date {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stage-icon,
.feature-icon,
.blog-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(17, 243, 217, 0.12);
  color: var(--accent);
  font-size: 1.2rem;
}

.badge {
  margin-left: auto;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge.success {
  background: rgba(87, 242, 135, 0.15);
  color: var(--success);
}

.stage-body h3,
.blog-card h3,
.post-card h1,
.post-card h2 {
  margin-bottom: 0.55rem;
}

.stage-body p {
  color: var(--text-secondary);
}

.stage-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.stage-list li,
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stage-list span,
.price-list span {
  color: var(--text-muted);
}

.message-card {
  display: grid;
  gap: 0.9rem;
}

.message-bubble {
  max-width: 28rem;
  padding: 1.15rem;
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.02rem;
}

.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.reply-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 243, 217, 0.12);
  border: 1px solid rgba(17, 243, 217, 0.25);
  color: var(--accent);
  font-weight: 700;
}

.reply-pill.muted {
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.feature-grid,
.steps-grid,
.proof-grid,
.pricing-grid,
.blog-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid,
.steps-grid,
.proof-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.feature-card h3,
.step-card h3,
.proof-card h3,
.blog-card h3 {
  margin: 1rem 0 0.55rem;
}

.feature-card p,
.step-card p,
.proof-card p,
.blog-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.step-card {
  text-align: center;
}

.step-number {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #63e8ff);
  color: #061016;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(17, 243, 217, 0.2);
}

.proof-head {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.proof-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(17, 243, 217, 0.09);
}

.accent-border {
  border-color: rgba(17, 243, 217, 0.28);
}

.pricing-note {
  color: var(--accent);
  font-weight: 700;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-header h3 {
  margin-bottom: 0.35rem;
  font-size: 1.4rem;
}

.price-header p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.price-main {
  margin-bottom: 1.1rem;
}

.price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.featured {
  border-color: rgba(17, 243, 217, 0.4);
  box-shadow: 0 24px 70px rgba(17, 243, 217, 0.12);
  transform: translateY(-10px);
}

.featured-tag,
.blog-label {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(17, 243, 217, 0.13);
  color: var(--accent);
}

.accordion {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(6, 11, 18, 0.7);
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.accordion-header {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  padding: 1.2rem 1.2rem;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), color var(--transition);
}

.accordion-header::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.accordion-header[aria-expanded="true"]::after {
  content: "−";
}

.accordion-header:hover,
.accordion-header:focus-visible {
  background: rgba(255, 255, 255, 0.03);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.accordion-body p {
  padding: 0 1.2rem 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.thanks-card {
  text-align: center;
}

.thanks-logo {
  width: min(100%, 14rem);
  margin: 0 auto 1.35rem;
  filter:
    drop-shadow(0 0 22px rgba(17, 243, 217, 0.14))
    drop-shadow(0 10px 30px rgba(17, 243, 217, 0.1));
}

.site-footer {
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(5, 9, 14, 0.2), rgba(5, 9, 14, 0.88));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.footer-phone {
  display: inline-block;
  margin-top: 1rem;
}

.contact-form label,
.contact-form fieldset,
.message-field {
  border: 0;
  padding: 0;
  margin: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label span,
.contact-methods legend,
.message-field span {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form textarea {
  min-height: 8rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(17, 243, 217, 0.45);
  box-shadow: 0 0 0 4px rgba(17, 243, 217, 0.12);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.15rem 0 1.2rem;
}

.method-pill {
  position: relative;
}

.method-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.method-pill span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

.method-pill input:checked + span {
  color: var(--accent);
  border-color: rgba(17, 243, 217, 0.35);
  background: rgba(17, 243, 217, 0.1);
}

.method-pill span:hover {
  transform: translateY(-1px);
}

.message-field {
  display: block;
  margin-bottom: 1.2rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-link {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px) scale(1.04);
}

.social-link.youtube {
  background: #ff0033;
  box-shadow: 0 14px 28px rgba(255, 0, 51, 0.24);
}

.social-link.instagram {
  background: linear-gradient(135deg, #ffd600 0%, #ff7a00 25%, #ff0069 50%, #d300c5 75%, #7638fa 100%);
  box-shadow: 0 14px 28px rgba(211, 0, 197, 0.18);
}

.social-link.facebook {
  background: #1877f2;
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.18);
}

.blog-hero {
  padding: 6rem 0 3rem;
}

.blog-grid {
  margin-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.blog-card .blog-link {
  color: var(--accent);
  font-weight: 700;
}

.blog-label {
  background: rgba(58, 163, 255, 0.12);
  color: #8ecbff;
}

.post-shell {
  padding: 3rem 0 5rem;
}

.post-card {
  max-width: 900px;
  margin: 0 auto;
}

.post-content ul {
  padding-left: 1.2rem;
}

.back-link {
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

#problem,
#package,
#how-it-works,
#pricing,
#faq,
#contact {
  scroll-margin-top: 8rem;
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1rem 0;
  }

  .site-nav,
  .header-actions {
    justify-self: start;
  }

  .hero-layout,
  .footer-grid,
  .feature-grid,
  .steps-grid,
  .proof-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .section,
  .blog-hero,
  .post-shell {
    padding: 4.7rem 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 0.85rem;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero-logo-wrap {
    width: min(100%, 22rem);
    margin-bottom: 1.7rem;
  }

  .hero-logo {
    width: min(100%, 14.2rem);
    clip-path: inset(9% 4% 8% 4%);
  }

  .hero-cta,
  .trust-strip,
  .contact-methods,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}