:root {
  --navy: #071225;
  --navy-2: #0d1b33;
  --ink: #0a1325;
  --muted: #68758c;
  --line: #d8e0ec;
  --soft: #f3f6fb;
  --gold: #f6bd2b;
  --gold-2: #f59e0b;
  --green: #059669;
  --orange-red: #f97316;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 24, 48, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(246, 189, 43, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #edf2f8 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 18, 37, 0.91);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(246, 189, 43, 0.22);
}

.brand strong,
.phone-top strong {
  display: block;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.brand small,
.phone-top small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.nav-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--navy) !important;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(246, 189, 43, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: 52px;
  padding: 76px max(40px, calc((100vw - 1180px) / 2)) 86px;
  color: var(--white);
  background: #071225;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(0deg, rgba(7, 18, 37, 0.42), rgba(7, 18, 37, 0));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.58;
}

.hero-photo {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.99), rgba(7, 18, 37, 0.88), rgba(7, 18, 37, 0.74)),
    radial-gradient(circle at 78% 18%, rgba(246, 189, 43, 0.3), transparent 24%),
    linear-gradient(135deg, #0c2144, #071225 58%, #111827);
}

.photo-glow {
  position: absolute;
  right: 5%;
  top: 12%;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  border: 1px solid rgba(246, 189, 43, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 189, 43, 0.2), transparent 64%);
  animation: pulseGlow 6s ease-in-out infinite;
}

.scale-mark {
  position: absolute;
  right: 8%;
  top: 18%;
  width: clamp(180px, 22vw, 360px);
  height: clamp(180px, 22vw, 360px);
  opacity: 0.13;
  transform: rotate(-8deg);
  animation: drift 9s ease-in-out infinite;
}

.scale-mark span,
.scale-mark span::before,
.scale-mark span::after {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.scale-mark span {
  left: 48%;
  top: 14%;
  width: 4%;
  height: 72%;
  border-radius: 999px;
}

.scale-mark span::before {
  left: -420%;
  top: 10%;
  width: 880%;
  height: 4%;
  border-radius: 999px;
}

.scale-mark span::after {
  left: -220%;
  bottom: 0;
  width: 480%;
  height: 5%;
  border-radius: 999px;
}

.hero-content,
.phone-shell {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 13px 22px;
  border-radius: 17px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  flex-direction: column;
  align-items: flex-start;
  color: var(--navy);
  background: linear-gradient(135deg, #ffd65c, #f59e0b);
  box-shadow: 0 18px 42px rgba(246, 189, 43, 0.24);
}

.button.primary b {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(7, 18, 37, 0.68);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.phone-shell {
  width: min(390px, 100%);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border-radius: 24px;
  background: var(--navy);
}

.app-icon img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.membership-card {
  margin: 14px 0;
  padding: 18px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #102445, #081428);
}

.membership-card > span {
  display: block;
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 950;
}

.membership-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.membership-card em,
.membership-card small {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-style: normal;
  font-weight: 900;
  color: #9de7c9;
  background: rgba(5, 150, 105, 0.12);
}

.membership-card small {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.stats span {
  padding: 14px 8px;
  border-radius: 18px;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.stats b {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-2);
  font-size: 22px;
}

.case-card {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid rgba(216, 224, 236, 0.75);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.case-card.urgent {
  border-top: 5px solid var(--green);
}

.case-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.court {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 35px;
  border-radius: 12px;
  font-weight: 950;
  font-size: 13px;
}

.pun {
  color: #065f46;
  background: #ecfdf5;
}

.shc {
  color: #9a3412;
  background: #ffedd5;
}

.case-line b {
  color: var(--green);
}

.case-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.22;
}

.case-card p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.case-card small {
  display: inline-flex;
  margin-top: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green);
  background: #e8fbf3;
  font-weight: 950;
}

.section,
.download-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0 0;
}

.aim {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: start;
}

.section h2,
.download-section h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section p,
.download-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.section-heading.centered {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.feature-grid article,
.coverage-card,
.preview-card,
.download-card,
.steps li {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(16, 35, 67, 0.08);
}

.feature-grid article {
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-grid article:hover,
.coverage-card:hover,
.preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 189, 43, 0.46);
  box-shadow: 0 24px 65px rgba(16, 35, 67, 0.14);
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.feature-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.feature-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.app-gallery {
  position: relative;
}

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

.preview-card {
  overflow: hidden;
  padding: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.preview-card h3 {
  margin: 20px 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.preview-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.mini-phone {
  min-height: 445px;
  padding: 16px;
  border: 1px solid rgba(216, 224, 236, 0.78);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 2%, rgba(246, 189, 43, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 253, 0.97));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mini-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 26, 50, 0.98), rgba(7, 18, 37, 0.98)),
    radial-gradient(circle at 86% 28%, rgba(246, 189, 43, 0.2), transparent 28%);
  box-shadow: 0 12px 28px rgba(7, 18, 37, 0.16);
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--gold);
  flex: 0 0 auto;
  box-shadow: 0 9px 18px rgba(246, 189, 43, 0.22);
}

.mini-icon svg {
  width: 22px;
  height: 22px;
}

.mini-icon path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-status {
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, #102445, #081428),
    radial-gradient(circle at 88% 30%, rgba(246, 189, 43, 0.24), transparent 28%);
}

.mini-status strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.mini-status small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.mini-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 12px;
}

.mini-search {
  margin-bottom: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: #7a8598;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.mini-tabs b,
.mini-tabs span {
  padding: 11px 6px;
  border: 1px solid var(--line);
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  background: var(--white);
}

.mini-tabs b {
  color: var(--white);
  background: var(--navy);
}

.mini-case {
  margin-top: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  box-shadow: 0 10px 22px rgba(16, 35, 67, 0.06);
}

.mini-case.green {
  border-top: 4px solid var(--green);
}

.mini-case em {
  display: inline-flex;
  margin-right: 8px;
  padding: 6px 9px;
  border-radius: 10px;
  color: #065f46;
  background: #ecfdf5;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.mini-case strong {
  color: var(--green);
}

.mini-case p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.input-row,
.setting-line,
.payment-box,
.mini-note {
  margin-top: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(16, 35, 67, 0.04);
}

.mini-phone button {
  width: 100%;
  margin-top: 13px;
  padding: 15px;
  border: 0;
  border-radius: 16px;
  color: var(--navy);
  background: var(--gold);
  font: inherit;
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(246, 189, 43, 0.22);
}

.mini-note {
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.mini-note.success {
  color: var(--green);
  background: #ecfdf5;
}

.setting-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.setting-line span {
  color: var(--gold-2);
  text-align: right;
}

.payment-box {
  display: grid;
  gap: 4px;
  color: var(--white);
  background: var(--navy);
}

.payment-box small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.payment-box strong {
  color: var(--gold);
  font-size: 22px;
}

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

.coverage-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.coverage-card::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -74px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  opacity: 0.13;
}

.punjab-card::after {
  background: #059669;
}

.sindh-card::after {
  background: #f97316;
}

.islamabad-card::after {
  background: #2563eb;
}

.court-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  border-radius: 22px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 35, 67, 0.16);
}

.court-logo img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.court-logo b {
  position: absolute;
  right: -12px;
  bottom: -9px;
  padding: 5px 8px;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.coverage-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.coverage-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
}

.coverage-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.coverage-card li {
  display: flex;
  gap: 10px;
  color: #34445f;
  font-weight: 760;
  line-height: 1.45;
}

.coverage-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 5px rgba(246, 189, 43, 0.14);
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 210px;
  padding: 28px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 950;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.steps span {
  color: var(--muted);
  line-height: 1.6;
}

.download-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: center;
  margin-top: 96px;
  margin-bottom: 76px;
  padding: 48px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 18, 37, 0.96), rgba(13, 27, 51, 0.93)),
    radial-gradient(circle at 80% 24%, rgba(246, 189, 43, 0.32), transparent 28%);
  box-shadow: var(--shadow);
}

.download-section p {
  color: rgba(255, 255, 255, 0.76);
}

.download-card {
  padding: 26px;
  color: var(--ink);
  text-align: center;
}

.download-card img {
  width: 86px;
  height: 86px;
  margin-bottom: 14px;
  border-radius: 24px;
}

.download-card h3 {
  margin-bottom: 6px;
  font-size: 26px;
}

.download-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
}

.whatsapp-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 26px max(40px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(-12px, 10px, 0) rotate(-5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .phone-shell {
    justify-self: start;
  }

  .aim,
  .download-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .preview-grid,
  .coverage-grid,
  .steps ol {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .section,
  .download-section {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .nav {
    min-height: auto;
    gap: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 12px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 42px 14px 58px;
    gap: 34px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-copy,
  .section p,
  .download-section p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .button.primary {
    align-items: center;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .phone-shell {
    width: 100%;
    border-radius: 30px;
  }

  .feature-grid,
  .preview-grid,
  .coverage-grid,
  .steps ol {
    grid-template-columns: 1fr;
  }

  .mini-phone {
    min-height: auto;
  }

  .coverage-card {
    min-height: auto;
  }

  .download-section {
    padding: 28px;
  }

  .footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}
