/* ── Core & Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #2C2416;
  font-family: 'Inter', sans-serif;
  color: #2C2416;
  line-height: 1.5;
}

/* ── Hero ──────────────────────────────────────────────── */

.frame {
  width: 1440px;
  height: 900px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2C2416 25%, rgba(44,36,22,0.3) 100%);
}

.navbar {
  position: absolute;
  top: 40px;
  left: 120px;
  right: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #B8954A;
}

.menu span {
  margin: 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang {
  color: white;
}

.btn-primary {
  background: linear-gradient(135deg, #B5911C, #9D7A26);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.hero-text {
  position: absolute;
  top: 250px;
  left: 120px;
  width: 540px;
  color: white;
  z-index: 5;
}

.hero-text h1 {
  font-size: 72px;
  line-height: 88px;
  font-weight: 700;
  margin: 0;
}

.hero-text p {
  font-size: 20px;
  line-height: 32px;
  margin-top: 24px;
  color: #D4C7B5;
}

.btn-white {
  margin-top: 32px;
  padding: 14px 30px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  background: white;
  color: #2C2416;
  cursor: pointer;
}

.rating {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #D4C7B5;
  font-size: 20px;
}

/* Dashboard mockup in hero */
.dashboard {
  position: absolute;
  top: 180px;
  right: 120px;
  width: 480px;
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 40px 60px rgba(0,0,0,0.3);
  z-index: 5;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.red    { background: #FF6467; }
.yellow { background: #FDC700; }
.green  { background: #05DF72; }

.url {
  background: white;
  padding: 6px 18px;
  border-radius: 14px;
  font-size: 14px;
  color: #635547;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.stat {
  background: #F9FAFB;
  padding: 16px;
  border-radius: 16px;
  width: 30%;
}

.label {
  font-size: 14px;
  color: #635547;
}

.stat h3 {
  margin: 6px 0;
  font-size: 20px;
}

.positive {
  color: #4EBA74;
  font-weight: 600;
  font-size: 14px;
}

.performance {
  background: #FBF8F0;
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
}

.perf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs span {
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 12px;
  margin-left: 8px;
  background: white;
  cursor: pointer;
}

.tabs .active {
  background: linear-gradient(135deg, #B8954A, #D4B575);
  color: white;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-top: 20px;
}

.bars div {
  flex: 1;
  background: linear-gradient(180deg, #B8954A, #D4B575);
  border-radius: 12px 12px 0 0;
}

/* ── Features ───────────────────────────────────────────── */

.features-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 100px 104px;
}

.features-container {
  max-width: 1304px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.badge {
  background: #FFF8E7;
  border: 1px solid rgba(184,149,74,0.3);
  border-radius: 9999px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.35px;
  color: #2C2416;
  margin: 0;
}

.features-heading span {
  color: #968778;
}

.features-subtitle {
  max-width: 768px;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #6B5D4F;
  margin: 16px auto 0;
}

.features-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.features-row {
  display: flex;
  gap: 30px;
}

.feature-card {
  flex: 1;
  background: #FDFBF6;
  border: 1px solid #FAF5E8;
  border-radius: 24px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 257px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.45px;
  color: #2C2416;
  margin: 0;
}

.feature-text {
  font-size: 16px;
  line-height: 26px;
  color: #897F6C;
  margin: 0;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(180deg, #C4A563 0%, #B8954A 100%);
}

.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(180deg, #D4B575 0%, #C4A563 100%);
}

/* ── All-in-one Dashboard ───────────────────────────────── */

.dashboard-section {
  width: 1440px;
  margin: 0 auto;
  padding: 0 103px 100px;
}

.dashboard-card {
  width: 1304px;
  background: linear-gradient(90deg, #2C2416 0%, rgba(44,36,22,0.9) 30%, rgba(44,36,22,0.6) 100%), #FBF8F0;
  border: 1px solid #EAE3D5;
  border-radius: 24px;
  padding: 49px 49px 1px;
}

.dashboard-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 132px;
}

.dashboard-left {
  width: 579px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dashboard-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.4px;
  color: #FFFFFF;
  margin: 0;
}

.dashboard-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #D4C7B5;
  margin: 0;
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dashboard-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.check-circle {
  width: 24px;
  height: 24px;
  background: #B8954A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: bold;
}

.dashboard-list-item span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #D4C7B5;
}

.dashboard-preview {
  width: 495px;
  background: #FFFFFF;
  border: 1px solid #EAE3D5;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.browser-dots {
  height: 45px;
  background: #F5F1E8;
  border-bottom: 1px solid #EAE3D5;
  display: flex;
  align-items: center;
  padding-left: 24px;
}

.dots-group {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #D4C7B5;
  border-radius: 50%;
}

.preview-body {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats-row {
  display: flex;
  gap: 16px;
}

.stat-box {
  flex: 1;
  background: linear-gradient(180deg, #FFF8E7 0%, #F5F1E8 100%);
  border: 1px solid #EAE3D5;
  border-radius: 12px;
  padding: 17px;
  min-height: 90px;
}

.stat-label {
  font-size: 14px;
  color: #6B5D4F;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #2C2416;
}

.chart-container {
  height: 128px;
  background: #FFF8E7;
  border-radius: 12px;
  padding: 0 16px 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 4px 4px 0 0;
}

.bar-1 { height: 38.4%; }
.bar-2 { height: 62.4%; }
.bar-3 { height: 48%;   }
.bar-4 { height: 76.8%; }
.bar-5 { height: 57.6%; }
.bar-6 { height: 86.4%; }
.bar-7 { height: 72%;   }
/* ── Success Stories Section ───────────────────────────────── */

.success-section {
  width: 1440px;
  height: 869px;          /* ≈868.75px */
  margin: 0 auto;
  background: #FBF8F0;
  position: relative;
}

.success-container {
  position: relative;
  width: 1304px;
  height: 100%;
  margin: 0 auto;
  padding: 110px 104px 0;
}

.success-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 759px;
  margin: 0 auto;
  text-align: center;
}

.success-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -1.24px;
  color: #2C2416;
  margin: 0;
}

.success-header p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
  color: #6B5D4F;
  margin: 0;
}

.testimonial-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;        /* ≈ top 284px - header area */
  gap: 92px;
}

.testimonial-image-container {
  position: relative;
  width: 560px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.testimonial-content {
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.4px;
  color: #2C2416;
  margin: 0;
}

.testimonial-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: -0.44px;
  color: #6B5D4F;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #2C2416;
}

.author-role {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #6B5D4F;
}

.author-location {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #A89885;
}

.stats-row-highlight {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
}

.stat-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 90px;
}

.stat-value-highlight {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.4px;
  color: #B8954A;
}

.stat-label-highlight {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #6B5D4F;
  margin-top: 4px;
}
/* ── Onboarding / Get Started Section ───────────────────────────────── */

.onboarding-section {
  width: 1440px; /* or 1512px as per spec, adjust if needed */
  margin: 0 auto;
  background: #2C2416; /* dark background as in the screenshot */
  color: white;
  padding: 100px 48px;
  position: relative;
}

.onboarding-container {
  max-width: 1416px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 1304px;
}

.section-header .badge {
  /* Reuse your existing badge style, or override */
  background: #FFF8E7;
  border: 1px solid rgba(184,149,74,0.3);
  border-radius: 9999px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.35px;
  color: #2C2416; /* wait, on dark bg? adjust to white if needed */
  margin: 0;
}

.section-header h2 span {
  color: #968778;
}

.subtitle {
  max-width: 768px;
  font-size: 18px;
  line-height: 28px;
  color: #D4C7B5; /* lighter for dark bg */
  margin: 0;
}

.steps-wrapper {
  position: relative;
  width: 1304px;
  height: 345px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #ECE9E3;
  border-radius: 9999px;
  z-index: 0;
}

.steps-grid {
  display: flex;
  justify-content: space-between;
  gap: 39px;
  width: 100%;
  z-index: 1;
}

.step-card {
  width: 298px;
  background: #FDFBF6;
  border: 1px solid rgba(250,245,232,0.5);
  border-radius: 24px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #2C2416;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* make icon white if needed */
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.45px;
  margin: 0;
}

.step-card p {
  font-size: 16px;
  line-height: 26px;
  color: #6B5D4F;
  margin: 0;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta-wrapper p {
  font-size: 18px;
  line-height: 28px;
  color: #6B5D4F;
  margin: 0;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 20px;
  background: #383023;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #4A4135;
}
/* ── Final CTA Section ───────────────────────────────── */

.cta-section {
  width: 1440px;
  height: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #B8954A 0%, #C4A563 50%, #D4B575 100%);
}

.cta-bg-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2C2416 0%, rgba(44,36,22,0.9) 30%, rgba(44,36,22,0.6) 100%),
              radial-gradient(circle at 20% 80%, rgba(0,0,0,0.05) 0.08%, transparent 0.08%),
              radial-gradient(circle at 80% 20%, rgba(0,0,0,0.05) 0.09%, transparent 0.09%);
  mix-blend-mode: multiply;
}

.cta-blur-left,
.cta-blur-right {
  position: absolute;
  width: 384px;
  height: 384px;
  background: rgba(255,255,255,0.1);
  filter: blur(64px);
  border-radius: 50%;
}

.cta-blur-left  { left: 137px; top: 605px; }
.cta-blur-right { right: 137px; top: 40px; }

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1176px;
  margin: 0 auto;
  padding: 180px 0 100px;
  text-align: center;
}

.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 40px;
}

.star-icon {
  font-size: 16px;
}

.cta-heading {
  font-size: 72px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: -1.68px;
  margin: 0 0 32px;
}

.cta-heading br { display: block; }

.cta-subtitle {
  max-width: 768px;
  margin: 0 auto 48px;
  font-size: 24px;
  line-height: 39px;
  color: rgba(255,255,255,0.9);
}

.email-form {
  display: flex;
  align-items: center;
  max-width: 672px;
  margin: 0 auto 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 8px;
  gap: 16px;
}

.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.email-icon {
  margin-right: 12px;
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
}

.email-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.start-trial-btn {
  padding: 18px 32px;
  background: white;
  color: #2C2416;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  cursor: pointer;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
}

.secondary-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}
.features-section,
.dashboard-section,
.success-section,
.onboarding-section,
.cta-section {
  padding: 100px 0;
}
.frame { padding-bottom: 80px; }
.footer { padding-top: 80px; }
.schedule-demo-btn {
  padding: 16px 32px;
  background: white;
  color: #2C2416;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 9999px;
  cursor: pointer;
}

.contact-sales {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.trusted-logos {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 70px;
}

.trusted-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  font-size: 24px;
  font-weight: 700;
  color: white;
  opacity: 0.8;
}
/* ── Footer ──────────────────────────────────────────────── */

.footer {
  width: 1440px;
  margin: 0 auto;
  background: #FBF8F0;
  color: #6B5D4F;
  padding: 80px 104px 0;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1304px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 80px;
}

.footer-brand {
  max-width: 403px;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #B8954A;
  margin-bottom: 16px;
}

.brand-desc {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-item .icon {
  font-size: 18px;
  min-width: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 12px;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-link:hover {
  opacity: 0.9;
}

.footer-links-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 145px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  color: #383023;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: #6B5D4F;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #B8954A;
}

.footer-bottom {
  border-top: 1px solid rgba(223, 212, 197, 0.4);
  padding: 25px 104px;
}

.footer-bottom-container {
  max-width: 1304px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6B5D4F;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  color: #6B5D4F;
  text-decoration: none;
}

.legal-links a:hover {
  color: #B8954A;
}