:root {
  --bg: #F8F8F8;
  --card: #FFFFFF;
  --gold: #F3C617;
  --text: #1B1D1A;
  --muted: #6F7270;
  --stroke: #DDDDDD;
  --card-stroke: #E5E5E5;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.top-bar {
  max-width: 1240px;
  margin: 28px auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: auto;
  height: 64px;
}

.page {
  padding: 0 24px 60px;
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
}

.hero-copy {
  padding-top: 6px;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-family: 'Kalam', cursive;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.9px;
  margin-bottom: -25px;
}

h1 {
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -2.4px;
  max-width: 590px;
}

.lede {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 20px;
  max-width: 590px;
}

.benefits {
  list-style: none;
  font-size: 18px;
  display: grid;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 28px;
  padding: 18px;
  background: linear-gradient(145deg, #ffffff, #f7f8f5);
  border-radius: 18px;
  border: 1px solid var(--card-stroke);
}

.benefits li {
  color: var(--text);
  font-weight: 500;
  font-family: 'Gotham Book', 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  padding-left: 24px;
  position: relative;
}

.benefits strong {
  font-weight: 800;
}

.benefits li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.contact {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.contact-item {
  display: flex;
  gap: 6px;
  align-items: baseline;
  color: var(--muted);
}

.contact-item .label {
  color: var(--text);
  font-weight: 700;
}

.contact-item a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-item a:hover {
  border-color: var(--muted);
}

.signature-block {
  margin-top: 12px;
}

.signature-block .name {
  font-size: 1.1rem;
  font-weight: 700;
}

.signature-block .role {
  color: var(--muted);
  margin-top: -6px;
}

.signature {
  font-family: 'Kalam', cursive;
  font-size: 1.8rem;
  color: var(--text);
  margin-top: 6px;
}

.author-tag {
  font-family: 'Kalam', cursive;
  font-weight: 700;
  color: #6F7270;
  margin-top: 190px;
  font-size: 1.08rem;
}

.content-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.content-hero {
  display: grid;
  gap: 10px;
  margin: 10px 0 26px;
}

.content-hero h1 {
  font-size: 38px;
  letter-spacing: -1.6px;
}

.content-hero .lede {
  max-width: 780px;
  color: var(--muted);
}

.content-card {
  background: var(--card);
  border: 1px solid var(--card-stroke);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.content-card h2 {
  font-size: 1.15rem;
}

.content-card p {
  color: var(--muted);
}

.content-list {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.content-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--card-stroke);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.14), 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 34px;
  align-self: start;
  max-width: 600px;
  width: 100%;
}

.form-header h2 {
  text-align: center;
  font-size: 1.55rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.form-header p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.valuation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.help-trigger {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: #f5f5f5;
  color: var(--text);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.help-trigger:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 198, 23, 0.2);
  transform: translateY(-1px);
}

.help-card {
  display: none;
  padding: 14px;
  border: 1px solid var(--stroke);
  background: #fdfbf4;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.help-card.is-visible {
  display: block;
}

input,
textarea {
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: #fbfbfb;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #b7bab8;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 198, 23, 0.2);
}

.primary-btn {
  margin-top: 6px;
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(243, 198, 23, 0.35);
}

.primary-btn:disabled,
.primary-btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.status-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at 18% 18%, rgba(243, 198, 23, 0.16), transparent 34%),
    radial-gradient(circle at 78% 6%, rgba(14, 124, 77, 0.14), transparent 32%),
    rgba(9, 23, 15, 0.6);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.status-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.status-overlay[data-state="loading"] .status-modal {
  display: none;
}

.status-overlay[data-state="loading"] .status-loading {
  display: grid;
}

.status-loading {
  display: none;
  align-items: center;
  justify-items: center;
  gap: 14px;
  width: min(360px, 90vw);
  padding: 28px 26px;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 241, 0.95));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.loader-ring {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0e7c4d, #1ea86a);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(14, 124, 77, 0.32);
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.loader-dash {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #1ea86a;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(0deg);
  animation: spin 0.9s linear infinite;
}

.loader-text {
  font-weight: 700;
  color: var(--text);
}

.status-modal {
  position: relative;
  width: min(560px, 100%);
  background: linear-gradient(150deg, #ffffff 0%, #f8fbf6 100%);
  border: 1px solid rgba(14, 124, 77, 0.08);
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25), 0 14px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.38s ease;
  overflow: hidden;
}

.status-sheen {
  position: absolute;
  inset: 1px;
  border-radius: 26px;
  background: radial-gradient(circle at 30% 20%, rgba(243, 198, 23, 0.18), transparent 34%),
    radial-gradient(circle at 76% 38%, rgba(14, 124, 77, 0.12), transparent 36%);
  pointer-events: none;
}

.status-layout {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.status-modal.pop {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.status-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.24s ease, border-color 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.status-close:hover {
  transform: translateY(-1px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.status-visual {
  position: relative;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
}

.status-glow {
  position: absolute;
  inset: 10px;
  background: radial-gradient(circle at 42% 35%, rgba(243, 198, 23, 0.34), rgba(14, 124, 77, 0.26));
  filter: blur(14px);
  border-radius: 32px;
  animation: pulse 3.6s ease-in-out infinite;
}

.status-emoji {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, #f3d94d, #e9b712);
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 18px 32px rgba(243, 198, 23, 0.32);
  transform: translateY(1px);
  animation: floaty 2.8s ease-in-out infinite;
  overflow: hidden;
}

.status-emoji.has-icon svg {
  width: 44px;
  height: 44px;
}

.status-emoji::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 26px;
  border: 2px solid rgba(30, 168, 106, 0.28);
  animation: pulse 2.6s ease-in-out infinite;
}

.status-body {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: 100%;
}

.status-title {
  font-size: 1.45rem;
  line-height: 1.3;
}

.status-message {
  color: var(--text);
  font-weight: 700;
  max-width: 460px;
}

.status-note {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 520px;
}

.status-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ghost-btn {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.24s ease, border-color 0.2s ease;
}

.ghost-btn:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cta-btn {
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0e7c4d, #1ea86a);
  color: #f8fff3;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 28px rgba(14, 124, 77, 0.35);
  transition: transform 0.16s ease, box-shadow 0.22s ease;
}

.cta-btn::after {
  content: '→';
  font-weight: 900;
  font-size: 0.9rem;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(14, 124, 77, 0.42);
}

.status-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 124, 77, 0.08);
  color: #0e7c4d;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(14, 124, 77, 0.16);
}

.status-steps {
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.status-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(14, 124, 77, 0.08);
  border-radius: 14px;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.status-steps li::before {
  content: '✔';
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(14, 124, 77, 0.1);
  color: #0e7c4d;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.9rem;
}

.status-overlay[data-state="success"] .status-emoji {
  background: linear-gradient(135deg, #0e7c4d, #1ea86a);
  color: #f8fff3;
  box-shadow: 0 18px 34px rgba(14, 124, 77, 0.3);
}

.status-overlay[data-state="error"] .status-emoji {
  background: linear-gradient(135deg, #c72c27, #b3261e);
  color: #fff6f5;
  box-shadow: 0 18px 34px rgba(179, 38, 30, 0.28);
}

@keyframes spin {
  to { transform: rotate(405deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(-4px); }
}

@keyframes shimmer {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  padding: 4px 2px 2px;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 6px;
  accent-color: var(--gold);
}

.checkbox-field span {
  color: var(--muted);
}

.legal-sections {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--card-stroke);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 12px;
}

.legal-card h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 4px;
}

.legal-card p {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.legal-card a {
  color: var(--text);
  font-weight: 700;
}

.footer {
  max-width: 1180px;
  margin: 70px auto 40px;
  padding: 0 24px;
  color: var(--muted);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  align-items: flex-start;
  padding: 28px 0 24px;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-logo {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

.footer-brand-copy {
  display: grid;
  gap: 2px;
}

.footer-eyebrow {
  font-family: 'Kalam', cursive;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.footer-title {
  font-weight: 800;
  color: var(--text);
  font-size: 1.1rem;
}

.footer-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-lede {
  color: var(--text);
  font-weight: 600;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #fbfbfb;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.chip:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.chip svg {
  width: 18px;
  height: 18px;
}

.chip-whatsapp {
  background: #25D366;
  border-color: #1faa56;
  color: #0c2414;
}

.chip-whatsapp:hover {
  box-shadow: 0 12px 22px rgba(37, 211, 102, 0.32);
  border-color: #189347;
}

.footer-note {
  font-size: 0.92rem;
}

.footer-nav {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-small-title {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a,
.footer-bottom-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #2b2e2b;
  background: #1f211f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #121412;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .top-bar {
    margin: 20px auto 14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .page {
    padding: 0 20px 54px;
  }

  .hero {
    gap: 42px;
    grid-template-columns: 1fr 0.94fr;
  }

  h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .lede {
    font-size: 19px;
  }

  .benefits {
    margin-top: 40px;
    margin-bottom: 22px;
  }

  .form-card {
    max-width: 560px;
    padding: 30px;
  }
}

@media (max-width: 1100px) {
  .top-bar {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 6px 0 20px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }

  h1 {
    font-size: 42px;
  }

  .lede {
    font-size: 18.5px;
    max-width: 760px;
  }

  .form-card {
    order: initial;
    margin: 0 auto;
    width: min(640px, 100%);
    padding: 30px;
  }
}

@media (max-width: 960px) {
  .hero {
    gap: 28px;
    padding: 10px 0 24px;
  }

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

  h1 {
    font-size: 40px;
  }

  .lede {
    font-size: 18px;
    max-width: 680px;
  }

  .benefits {
    margin-top: 26px;
  }

  .form-card {
    width: min(600px, 100%);
    padding: 28px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .page {
    padding: 0 16px 50px;
  }

  .form-card,
  .top-bar {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .top-bar {
    margin: 16px auto 10px;
    justify-content: center;
  }

  .logo {
    height: 54px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  h1 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .lede {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .benefits {
    font-size: 16px;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 14px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  }

  .author-tag {
    margin-top: 18px;
  }

  .form-header h2 {
    font-size: 1.35rem;
  }

  .form-header p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .valuation-form {
    gap: 14px;
  }

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

  .footer {
    margin: 50px auto 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}