:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f7fbfa;
  --surface: #ffffff;
  --surface-soft: #f7faf9;
  --line: #e3ece8;
  --text: #071425;
  --muted: #4f5d6f;
  --green: #08b864;
  --green-dark: #069b53;
  --green-soft: #eaf8f1;
  --navy: #071425;
  --shadow: 0 24px 60px rgba(4, 22, 35, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #fff;
  color: var(--text);
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 104px, 1150px);
  margin: 0 auto;
  min-height: 102px;
  padding: 18px 0;
  background: #fff;
}

.brand-link img {
  width: min(285px, 58vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 54px;
  align-items: center;
  min-height: 780px;
  padding: 44px max(52px, calc((100vw - 1150px) / 2)) 40px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f8fffd 0%, #effaf5 48%, #e8f8f0 100%);
}

.hero-copy {
  display: grid;
  gap: 26px;
  max-width: 570px;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(3.45rem, 6vw, 5.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  color: var(--green);
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-text {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.11rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(8, 184, 100, 0.23);
  font-size: 1.08rem;
  font-weight: 900;
}

.header-button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.98rem;
}

.hero-button {
  min-width: 270px;
}

.whatsapp-glyph,
.cta-whatsapp {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: #fff;
}

.whatsapp-glyph::before,
.cta-whatsapp::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-18deg);
}

.whatsapp-glyph::after,
.cta-whatsapp::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 7px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-35deg);
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.lock-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 12px;
  border: 2px solid var(--muted);
  border-radius: 3px;
  opacity: 0.8;
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -9px;
  width: 7px;
  height: 9px;
  border: 2px solid var(--muted);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.phone-wrap {
  display: grid;
  justify-items: center;
  position: relative;
  min-width: 0;
}

.phone-mockup {
  width: min(420px, 100%);
  padding: 10px;
  border: 5px solid #111723;
  border-radius: 54px;
  background: #171b23;
  box-shadow:
    0 28px 80px rgba(8, 28, 38, 0.21),
    inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.phone-screen {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: 654px;
  overflow: hidden;
  border-radius: 44px;
  background: #fbfcfc;
}

.phone-status,
.wa-topbar,
.wa-input {
  display: flex;
  align-items: center;
}

.phone-status {
  justify-content: space-between;
  padding: 17px 22px 7px;
  font-size: 0.88rem;
}

.phone-bars {
  width: 62px;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #0b111a 0 42px, transparent 42px 48px, #0b111a 48px 62px);
}

.wa-topbar {
  gap: 10px;
  padding: 6px 18px 16px;
}

.wa-topbar div {
  display: grid;
  line-height: 1.15;
}

.wa-topbar div span {
  color: #7e8b88;
  font-size: 0.78rem;
}

.wa-back {
  width: 13px;
  height: 13px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(45deg);
}

.wa-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--green);
}

.wa-avatar::before {
  content: "";
  width: 17px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.wa-menu {
  margin-left: auto;
  color: #263441;
  letter-spacing: 1px;
}

.wa-chat {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(248, 250, 250, 0.8), rgba(255, 255, 255, 0.96)),
    #f9fbfa;
}

.wa-message {
  width: fit-content;
  max-width: 78%;
  margin: 0;
  padding: 12px 13px;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(6, 21, 37, 0.08);
  font-size: 0.9rem;
  line-height: 1.35;
}

.wa-message span {
  display: block;
  margin-top: 4px;
  color: #7f8c87;
  font-size: 0.72rem;
  text-align: right;
}

.wa-message.user {
  justify-self: end;
  background: #ddffd9;
}

.wa-message.bot {
  background: #fff;
}

.phone-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.phone-products article {
  display: grid;
  grid-template-rows: 98px minmax(48px, auto) auto;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 17px rgba(6, 21, 37, 0.1);
}

.phone-products strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.72rem;
  line-height: 1.25;
}

.phone-products b {
  font-size: 0.84rem;
  font-weight: 600;
}

.racket-visual {
  position: relative;
  display: block;
  width: 42px;
  height: 92px;
  margin: 0 auto;
}

.racket-visual::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 32px;
  height: 52px;
  border: 3px solid #c5cac8;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(6, 21, 37, 0.12);
}

.racket-visual::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 56px;
  width: 6px;
  height: 34px;
  border-radius: 999px;
  background: #1b2028;
}

.wa-input {
  gap: 12px;
  padding: 12px 18px 20px;
  border-top: 1px solid #eef2f0;
  background: #fff;
}

.wa-input p {
  flex: 1;
  margin: 0;
  color: #97a09d;
}

.input-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #9ca5a2;
  border-radius: 5px;
}

.mic-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green);
}

.how-section {
  padding: 52px max(52px, calc((100vw - 1150px) / 2)) 62px;
  background: #fff;
  text-align: center;
}

.how-section h2 {
  margin-bottom: 48px;
  font-size: 1.45rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.step-grid article {
  display: grid;
  justify-items: center;
}

.step-grid p {
  max-width: 220px;
  margin-bottom: 0;
  color: var(--muted);
}

.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  color: var(--green);
}

.chat-icon {
  border: 3px solid currentColor;
  border-radius: 24px;
}

.chat-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-12deg);
  background: #fff;
}

.chat-icon i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.chat-icon {
  grid-template-columns: repeat(3, 6px);
  gap: 8px;
}

.sparkle-icon i {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

.sparkle-icon i::before,
.sparkle-icon i::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.sparkle-icon i::before {
  left: 10px;
  top: 0;
  width: 4px;
  height: 24px;
}

.sparkle-icon i::after {
  left: 0;
  top: 10px;
  width: 24px;
  height: 4px;
}

.sparkle-icon i:nth-child(1) {
  left: 20px;
  top: 12px;
}

.sparkle-icon i:nth-child(2) {
  right: 8px;
  top: 0;
  transform: rotate(45deg) scale(0.5);
}

.sparkle-icon i:nth-child(3) {
  left: 6px;
  bottom: 8px;
  transform: rotate(45deg) scale(0.58);
}

.bag-icon {
  width: 62px;
  height: 56px;
  margin-top: 8px;
  border: 3px solid currentColor;
  border-radius: 6px 6px 12px 12px;
}

.bag-icon::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -16px;
  width: 26px;
  height: 24px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.cta-section {
  display: grid;
  justify-items: center;
  padding: 46px 20px 58px;
  background:
    linear-gradient(135deg, #f8fffd 0%, #effaf5 55%, #eaf8f1 100%);
  text-align: center;
}

.cta-whatsapp {
  width: 55px;
  height: 55px;
  margin-bottom: 16px;
  color: var(--green);
}

.cta-section h2 {
  margin-bottom: 12px;
  font-size: 1.95rem;
}

.cta-section p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-button {
  min-width: 265px;
}

.cta-section small {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 104px, 1150px);
  margin: 0 auto;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
}

.legal-body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, #f8fffd 0%, #effaf5 54%, #eaf8f1 100%);
}

.legal-main {
  padding: 54px 20px 72px;
}

.legal-layout {
  display: grid;
  gap: 28px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.legal-copy {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.legal-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.legal-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(4, 22, 35, 0.08);
}

.legal-card h2 {
  margin-bottom: 0;
  font-size: 1.16rem;
}

.legal-card address,
.legal-card p {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.legal-card a {
  color: var(--green-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.legal-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #cde9da;
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
}

.demo-chat-panel,
.demo-results-panel,
.demo-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.demo-body {
  min-height: 100vh;
}

.demo-header {
  padding-bottom: 18px;
}

.demo-hero {
  width: min(100% - 40px, 1180px);
  margin: 0 auto 18px;
  padding: 24px;
}

.demo-hero-copy {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.demo-hero-copy h1 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.04;
}

.demo-hero-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.demo-hero-chips,
.demo-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-chip,
.demo-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.demo-chip.is-success {
  border-color: #cde9da;
  background: #eaf8f1;
  color: var(--green-dark);
}

.demo-filter-pill {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  background: #eef4ff;
  color: #2c4c9c;
  font-size: 0.84rem;
  font-weight: 900;
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding-bottom: 40px;
}

.demo-chat-panel {
  display: grid;
  grid-template-rows: auto minmax(360px, 46vh) auto auto;
  gap: 16px;
  min-width: 0;
  padding: 22px;
}

.demo-chat-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.demo-bot-mark,
.message-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-dark);
  background: #e6f8ef;
}

.demo-bot-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 900;
}

.demo-chat-header h1 {
  margin-bottom: 2px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.demo-chat-header p {
  margin-bottom: 0;
  color: var(--muted);
}

.demo-reset {
  min-height: 38px;
  margin-left: auto;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}

.demo-messages {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.message-row {
  display: grid;
  grid-template-columns: 28px minmax(0, auto);
  gap: 10px;
  align-items: start;
  max-width: min(720px, 100%);
}

.message-row.user {
  justify-self: end;
  grid-template-columns: minmax(0, auto) 28px;
}

.message-row.user .message-icon {
  grid-column: 2;
  grid-row: 1;
}

.message-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

.message-row p {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.message-row.user p {
  grid-column: 1;
  grid-row: 1;
  background: #ddf7ea;
  border-color: #bee9d0;
}

.demo-section-block,
.demo-card {
  display: grid;
  gap: 10px;
}

.demo-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.demo-section-head span {
  font-weight: 900;
}

.demo-section-head small,
.demo-muted {
  color: var(--muted);
}

.demo-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-prompts button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #cde9da;
  border-radius: 999px;
  background: #f1fbf6;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-prompts-inline {
  flex-direction: column;
}

.demo-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 10px;
}

.demo-input input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.demo-input button {
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.demo-results-panel {
  display: grid;
  gap: 14px;
  align-self: start;
  min-width: 0;
  padding: 18px;
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.results-head h2 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.results-head span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e6f8ef;
  color: var(--green-dark);
  font-weight: 900;
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-card {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.result-card:last-child {
  border-bottom: 0;
}

.result-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.result-card-head span,
.result-card p,
.result-attributes span {
  color: var(--muted);
}

.result-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.result-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-attributes span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f7f9fb;
  font-size: 0.82rem;
}

.result-attributes b {
  color: var(--text);
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-meta span,
.result-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0f4f2;
  font-size: 0.82rem;
}

.result-meta strong {
  background: #e6f8ef;
  color: var(--green-dark);
}

.result-actions {
  display: flex;
}

.result-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 220px;
  color: var(--muted);
  text-align: center;
}

.empty-state strong,
.empty-state span {
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .site-header,
  .demo-hero,
  .demo-shell,
  .site-footer {
    width: min(100% - 24px, 720px);
  }

  .hero-section,
  .step-grid,
  .demo-shell {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding: 42px 24px 54px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .phone-mockup {
    width: min(390px, 100%);
  }

  .how-section {
    padding: 46px 24px 56px;
  }

  .step-grid {
    gap: 42px;
  }

  .legal-main {
    padding: 42px 24px 58px;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 18px 0 20px;
  }

  .brand-link img {
    width: min(270px, 100%);
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-section {
    gap: 36px;
    padding: 36px 18px 44px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.75;
  }

  .whatsapp-button {
    width: 100%;
    min-height: 56px;
  }

  .header-button {
    width: auto;
    min-height: 44px;
  }

  .phone-mockup {
    border-width: 4px;
    border-radius: 42px;
  }

  .phone-screen {
    min-height: 610px;
    border-radius: 34px;
  }

  .phone-products {
    grid-template-columns: 1fr;
  }

  .phone-products article {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
  }

  .racket-visual {
    width: 34px;
    height: 68px;
  }

  .racket-visual::before {
    left: 4px;
    width: 26px;
    height: 40px;
  }

  .racket-visual::after {
    left: 15px;
    top: 44px;
    height: 24px;
  }

  .how-section {
    padding: 42px 18px 52px;
  }

  .cta-section {
    padding: 42px 18px 54px;
  }

  .demo-hero {
    padding: 18px;
  }

  .demo-chat-panel,
  .demo-results-panel {
    padding: 18px;
  }

  .demo-chat-panel {
    grid-template-rows: auto minmax(320px, 50vh) auto auto;
  }

  .message-row,
  .message-row.user {
    grid-template-columns: 1fr;
  }

  .message-icon,
  .message-row.user .message-icon {
    display: none;
  }

  .demo-prompts button {
    width: 100%;
  }

  .demo-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-reset {
    margin-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
