:root {
    --purple: #4A0374;
    --yellow: #F9A620;
    --white: #F4F4F9;

      /* Background gradient (from your image) */
  --bg1: #4A0C4D;
  --bg2: #330941;
  --bg3: #190633;
  --lineargradient: linear-gradient(135deg, var(--bg1) 0%, var(--bg3) 70%);

    /* UI tokens */
  --text: rgba(244, 244, 249, 0.95);
  --muted: rgba(244, 244, 249, 0.75);
  --line: rgba(244, 244, 249, 0.14);

  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);

  --radius: 16px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);

  --max: 1120px;
  --padX: 1.5rem;
  --sectionY: clamp(2.25rem, 4vw, 4rem);
}

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--lineargradient);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--padX);
}

/* Header/nav styles are centralized in header.css for cross-page consistency */

/* Hero Section */
.hero {
    padding: 4rem 4rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--yellow);
}

.hero-subtitle {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-images {
    width: 300px;
}

.image-grid {
    display: grid;
    grid-template-areas:
        "understand engage"
        "connect connect";
    gap: 10px;
}

.grid-item {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.grid-item.understand,
.grid-item.engage {
    height: 100px;
}

.grid-item.connect {
    grid-area: connect;
    height: 100px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: soft-light;
}

.grid-item .action-text {
    position: absolute;
    left: 15px;
    bottom: 12px;
    color: var(--white);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.homepage-hero {
    padding: clamp(2.75rem, 5.5vw, 4.5rem) 0 clamp(2.25rem, 4.5vw, 3.5rem);
    background: var(--lineargradient);
    overflow: hidden;
    position: relative;
}

.homepage-hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 28% 34%, rgba(249, 166, 32, 0.16), transparent 30%),
        radial-gradient(circle at 72% 58%, rgba(244, 244, 249, 0.08), transparent 28%);
    opacity: 0.7;
    pointer-events: none;
    animation: hero-glow-shift 18s ease-in-out infinite alternate;
}

.homepage-hero .hero-content {
    max-width: 980px;
    padding: 0 var(--padX);
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.homepage-hero .hero-text {
    min-width: 0;
    margin: 0 auto;
}

.homepage-hero .eyebrow {
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 0.8rem;
}

.homepage-hero .hero-text h1 {
    color: var(--white);
    font-size: clamp(2.55rem, 5vw, 4.55rem);
    font-weight: 800;
    line-height: 1.03;
    max-width: 13.8ch;
    margin: 0 auto;
    animation: hero-reveal-up 720ms ease-out both;
}

.homepage-hero .hero-keyword {
    color: var(--white);
}

.homepage-hero .hero-subtitle {
    color: rgba(244, 244, 249, 0.88);
    font-size: 1.12rem;
    line-height: 1.65;
    max-width: 66ch;
    margin: 1rem auto 0;
    opacity: 1;
    animation: hero-reveal-up 720ms ease-out 140ms both;
}

.homepage-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin: 1.2rem 0 0;
    animation: hero-reveal-up 720ms ease-out 260ms both;
}

.homepage-hero .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.homepage-hero .button-primary {
    background: var(--yellow);
    color: #190633;
}

.homepage-hero .button-secondary {
    color: var(--white);
    border: 1px solid rgba(244, 244, 249, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

.homepage-hero .button-secondary:hover {
    border-color: rgba(249, 166, 32, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.homepage-hero .hero-positioning {
    max-width: 68ch;
    color: rgba(244, 244, 249, 0.7);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0.9rem auto 0;
}

@keyframes hero-glow-shift {
    from {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(2%, 1%, 0) scale(1.04);
    }
}

@keyframes hero-reveal-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trusted Partners Section */
.trusted-partners {
    background-color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.trusted-partners h2 {
    font-family: 'Inter', sans-serif;
    color: #000000;
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Specific adjustment for City logo to match other logos' visual weight */
.partner-logo[src*="City.png"] {
    height: 120px;
}

/* ---------- Quiz CTA strip ---------- */
.quiz-cta {
  background-color: #f7f5fb;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  text-align: center;      /* this centers inline/inline-flex children */
}

.quiz-cta p {
  color: #0b0b0b;
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
  padding: 0 var(--padX);
}

.quiz-button {
  background-color: var(--yellow);
  color: #0b0b0b;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem auto 0.35rem;
}

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

.homepage-quiz {
  background: #f7f5fb;
  border-top: 1px solid rgba(25, 6, 51, 0.08);
  border-bottom: 1px solid rgba(25, 6, 51, 0.08);
  padding: 1rem 0;
}

.homepage-quiz .quiz-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--padX);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  text-align: center;
}

.homepage-quiz p {
  padding: 0;
}

.homepage-quiz .quiz-lead {
  color: #190633;
  font-size: 1rem;
}

.homepage-quiz .quiz-meta {
  color: rgba(25, 6, 51, 0.7);
  font-size: 0.94rem;
}

.homepage-quiz .quiz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #190633;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(249, 166, 32, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

/* ---------- Loss Framing ---------- */
/* Risk section: light tinted block with grid cards */
.risk-section {
  background: rgba(90, 46, 138, 0.04); /* subtle branded tint */
  padding: var(--sectionY) 0;
}

.risk-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
}

/* Inner container + grid (similar to .service-columns) */
.risk-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--padX);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Card styling: clean, readable, consistent */
.risk-card {
  text-align: center;
  background: var(--card);                  /* rgba(255,255,255,0.08); translucent */
  border: 1px solid rgba(255,255,255,0.12); /* subtle outline */
  border-radius: var(--radius);             /* matches other cards */
  padding: 1.2rem 1.1rem;                   /* comfortable spacing */
  box-shadow: 0 12px 26px rgba(0,0,0,0.20); /* depth without going opaque */
}


.risk-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.risk-card h3 {
  color: var(--yellow);
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.risk-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88); /* if your base section text is on dark */
  /* If your global body text is dark, swap to:
     color: rgba(0,0,0,0.78);
  */
  line-height: 1.5;
  font-size: 0.98rem;
}

.risk-footnote {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
  padding: 0 var(--padX);
  text-align: center;
  opacity: 0.9;
  font-size: 0.98rem;
}

/* Responsive tweaks */
@media (max-width: 980px) {
  .risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .risk-grid {
    grid-template-columns: 1fr;
  }
  .risk-card {
    padding: 1rem;
  }
}


/* ---------- Video promo ---------- */
.video-feature {
  background-color: var(--white);
  padding: var(--sectionY) 0;
}

.video-feature .section-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.video-feature .video-col { width: 100%; }

.video-feature video {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  border: 1px solid rgba(0,0,0,0.08);
}

.video-feature .text-col { color: #1b0632; }

.video-feature h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
}
.video-feature p {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-top: 0.35rem;
  color: rgba(27,6,50,0.82);
}

.video-feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: #3A1C5A;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(58, 28, 90, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.video-feature-cta:hover,
.video-feature-cta:focus-visible {
  background: #4E2D79;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(58, 28, 90, 0.22);
}


/* ---------- Service Quiz Block ---------- */
.service-quiz {
  background: var(--lineargradient);
  padding: var(--sectionY) 0;
}

.service-quiz h2 {
  text-align: center;
  margin: 0 auto 0.6rem;
  padding: 0 var(--padX);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: -0.01em;
  max-width: 760px;
  line-height: 1.16;
}

.service-subheading {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  padding: 0 var(--padX);
  text-align: center;
  color: rgba(244, 244, 249, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.service-columns {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--padX);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-column {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.55rem 1.4rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.20);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-column:hover {
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(249, 166, 32, 0.48);
  box-shadow: 0 18px 36px rgba(0,0,0,0.26);
  transform: translateY(-4px);
}

.service-column h3 {
  text-align: center;
  color: var(--yellow);
  margin-bottom: 0.7rem;
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.service-description {
  color: rgba(244, 244, 249, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.service-column ul { list-style: none; }

.service-column li {
  margin-bottom: 0.65rem;
  padding-left: 1.55rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.92;
  line-height: 1.45;
}
.service-column li:before {
  content: "\2713";
  color: var(--yellow);
  position: absolute;
  left: 0;
  top: 0.03rem;
  font-weight: 900;
}

.service-proof {
  max-width: 820px;
  margin: 1.8rem auto 0;
  padding: 0 var(--padX);
  text-align: center;
  color: rgba(244, 244, 249, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.action-btn {
  background-color: var(--yellow);
  color: #0b0b0b;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.action-btn:hover { transform: translateY(-1px); }

/* ---------- Database Section ---------- */
.database-section {
  background-color: var(--white);
  padding: var(--sectionY) 0;
  text-align: center;
}

.database-section h2 {
  color: #0b0b0b;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  margin: 0 auto 1rem;
  max-width: 60ch;
  letter-spacing: -0.01em;
}

.database-button {
  display: inline-block;
  background-color: var(--yellow);
  color: #0b0b0b;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.65rem;
  transition: transform 160ms ease;
}
.database-button:hover { transform: translateY(-1px); }

.database-description {
  color: rgba(0,0,0,0.72);
  font-size: 0.98rem;
  max-width: 62ch;
  margin: 0 auto;
}

/* SOCIAL PROOF BELT */
.social-proof{
  padding: var(--sectionY) 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.social-proof h2{
  text-align: center;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

/* MARQUEE */
.marquee{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(25, 6, 51, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.marquee:before,
.marquee:after{
  content:"";
  position:absolute;
  top:0;
  width: 90px;
  height:100%;
  z-index: 2;
  pointer-events:none;
}
.marquee:before{
  left:0;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.marquee:after{
  right:0;
  background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

.marquee-track{
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1rem 1.25rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee-track{
  animation-play-state: paused;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* LOGO ITEM */
.belt-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 0.6rem 0.8rem;
}

.belt-logo img{
  height: 34px;
  width: auto;
  opacity: 1;
  filter: saturate(0.95);
}

/* City logo has more internal whitespace, so scale it up for visual parity */
.belt-logo img[src*="City.png"]{
  height: 130px;
}

/* TESTIMONIAL CARD */
.belt-card{
  min-width: 320px;
  max-width: 420px;
  background: rgba(74, 3, 116, 0.08);
  border: 1px solid rgba(74, 3, 116, 0.18);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: #190633;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-images {
    justify-self: start;
    max-width: 520px;
  }

  .video-feature .section-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .testimonial-section .section-inner{
    grid-template-columns: 1fr;
  }
  .testimonial-image{
    justify-self: start;
  }

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

}

@media (max-width: 560px) {
  .marquee:before,
  .marquee:after{
    width: 62px;
  }

  .homepage-quiz .quiz-cta-inner {
    display: grid;
    justify-items: center;
  }

  .homepage-quiz .quiz-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 1080px) {
  .homepage-hero .hero-text h1 {
    max-width: 15ch;
  }
}

@media (max-width: 760px) {
  .homepage-hero {
    padding: 2.5rem 0 2rem;
  }

  .homepage-hero .hero-text h1 {
    font-size: 2.3rem;
    max-width: 100%;
  }

  .homepage-hero .hero-subtitle {
    font-size: 1rem;
  }

  .homepage-hero .hero-actions {
    align-items: stretch;
  }

  .homepage-hero .hero-actions .button {
    flex: 1 1 220px;
  }
}

@media (max-width: 420px) {
  .homepage-hero .hero-text h1 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-hero::before,
  .homepage-hero .hero-text h1,
  .homepage-hero .hero-subtitle,
  .homepage-hero .hero-actions {
    animation: none;
  }
}

/* ========== Desktop Optimization (1920px+) ========== */
@media (min-width: 1920px) {
  :root {
    --max: 1360px;
    --padX: 2.5rem;
    --sectionY: clamp(3rem, 5vw, 5rem);
  }

  /* Hero Section */
  .hero {
    padding: 5rem 2.5rem;
  }

  .hero-content {
    max-width: 1400px;
    gap: 4rem;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .hero-images {
    width: 380px;
  }

  .image-grid {
    gap: 16px;
  }

  .grid-item.understand,
  .grid-item.engage {
    height: 140px;
  }

  .grid-item.connect {
    height: 140px;
  }

  .grid-item .action-text {
    font-size: 1.3rem;
    left: 20px;
    bottom: 16px;
  }

  .homepage-hero {
    padding: clamp(2.75rem, 5.5vw, 4.5rem) 0 clamp(2.25rem, 4.5vw, 3.5rem);
  }

  .homepage-hero .hero-content {
    max-width: 980px;
    padding: 0 var(--padX);
    display: block;
    text-align: center;
  }

  .homepage-hero .hero-text h1 {
    font-size: clamp(2.55rem, 5vw, 4.55rem);
    line-height: 1.03;
    max-width: 13.8ch;
    margin: 0 auto;
  }

  .homepage-hero .hero-subtitle {
    font-size: 1.12rem;
    margin: 1rem auto 0;
  }

  /* Trusted Partners Section */
  .trusted-partners {
    padding: 2.5rem;
  }

  .trusted-partners h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .partner-logos {
    max-width: 1400px;
    gap: 5rem;
    padding: 0 2.5rem;
  }

  .partner-logo {
    height: 55px;
  }

  .partner-logo[src*="City.png"] {
    height: 150px;
  }

  /* Quiz CTA Strip */
  .quiz-cta {
    padding: 2.5rem 0;
  }

  .quiz-cta p {
    font-size: 1.1rem;
  }

  .quiz-button {
    padding: 0.8rem 1.5rem;
    font-size: 1.05rem;
  }

  /* Risk Grid */
  .risk-section {
    padding: 5rem 0;
  }

  .risk-section h2 {
    font-size: 2rem;
    margin-bottom: 0.65rem;
  }

  .risk-grid {
    max-width: 1400px;
    padding: 0 2.5rem;
    gap: 1.75rem;
  }

  .risk-card {
    padding: 1.6rem 1.5rem;
  }

  .risk-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .risk-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .risk-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Video Feature Section */
  .video-feature {
    padding: 5rem 0;
  }

  .video-feature .section-inner {
    max-width: 1400px;
    gap: 3rem;
  }

  .video-feature h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .video-feature p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }

  /* Service Quiz Section */
  .service-quiz {
    padding: 5rem 0;
  }

  .service-quiz h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .service-columns {
    max-width: 1400px;
    padding: 0 2.5rem;
    gap: 2rem;
  }

  .service-column {
    padding: 1.9rem 1.7rem;
  }

  .service-column h3 {
    font-size: 1.38rem;
    margin-bottom: 0.8rem;
  }

  .service-column li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .action-buttons {
    gap: 1rem;
    margin-top: 2rem;
  }

  .action-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.05rem;
  }

  /* Database Section */
  .database-section {
    padding: 5rem 0;
  }

  .database-section h2 {
    font-size: 2rem;
    max-width: 65ch;
    margin-bottom: 1.5rem;
  }

  .database-button {
    padding: 0.85rem 1.75rem;
    font-size: 1.05rem;
  }

  .database-description {
    font-size: 1.1rem;
    max-width: 70ch;
  }

  /* Social Proof Section */
  .social-proof {
    padding: 5rem 0;
  }

  .social-proof h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Marquee */
  .marquee {
    border-radius: 18px;
  }

  .marquee-track {
    gap: 2rem;
    padding: 1.5rem 2rem;
  }

  .belt-logo {
    min-width: 180px;
    padding: 0.8rem 1rem;
  }

  .belt-logo img {
    height: 42px;
  }

  .belt-logo img[src*="City.png"] {
    height: 160px;
  }

  .belt-card {
    min-width: 380px;
    max-width: 480px;
    padding: 1.35rem 1.5rem;
  }
}
