/* ========== GLOBAL RESET / BASE ========== */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #EFEAE6; /* soft beige hero background */
  color: #212529;           /* your chosen body/headline color */
  line-height: 1.4;
}

/* Utility colors (so we stay consistent across sections later) */
:root {
  --text-main: #212529;
  --bg-hero: #EFEAE6;
  --brand-red: #c0000b;
  --white: #ffffff;
}

/* Centered brand strip (separate from hero) */
.brand-center{
  width:100%;
  background-color: var(--bg-hero);
  padding: 16px 16px 24px;           /* subtle, tighter than hero */
}

.brand-center-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  justify-content:center;            /* center the brand */
}

.brand-center .brand-block{
  display:flex;
  flex-direction:column;
  align-items:center;                /* center logo + wordmark */
  text-align:center;
  gap:8px;
}

/* Optional fine-tuning; inherits your existing styles otherwise */
.brand-center .brand-logo{
  max-height:150px;                  /* matches your current size */
  width:auto;
  object-fit:contain;
}

.brand-center .datascan-wordmark{
  /* uses your existing typography/colors */
  /* override only if you want it slightly larger in this strip */
  /* font-size: 30px; */
}

/* Mobile: nothing special needed—already centered */
@media (max-width: 900px){
  .brand-center{ padding: 14px 16px 20px; }
}


/* Limit page width */
.hero {
  width: 100%;
  background-color: var(--bg-hero);
  padding: 40px 16px 80px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ========== TOP ROW (logo + phone) ========== */
.hero-top-row {
  display: flex;
  justify-content: center; 
  align-items: center; 
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* left cluster: logo + DATASCAN */
.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;   
  text-align: center; 
  gap: 8px;
}

/* logo file (you will provide in /assets) */
.brand-logo {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}

/* wordmark "DATASCAN" */
.datascan-wordmark {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.35em; /* spreads letters like in screenshot */
  color: var(--brand-red);  /* deep/navy tone */
  text-transform: uppercase;
  line-height: 1.1;
}

/* phone badge on right */
.call-badge {
  background-color: var(--brand-red);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 16px;
  border-radius: 6px;
  display: inline-block;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  margin-left: auto;    
}

/* ========== BODY GRID (left text / right image) ========== */
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center; 
  align-items: flex-start;  
}

/* left column */
.hero-copy {
  max-width: 560px;
}

/* headline */
.hero-heading {
  margin: 0 0 16px;
  font-size: 62px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-main);
}

/* paragraph under headline */
.hero-desc {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.5;
}

.hero-desc strong {
  font-weight: 600;
  color: var(--text-main);
}

/* ========== KPI ROW (3 stats) ========== */
.kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.kpi-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 110px;
  flex: 1 1 110px;
  max-width: 140px;
}

/* circular % badge */
/* Outer ring */
.kpi-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* shadow under the whole badge */
  box-shadow: 0 8px 16px rgba(0,0,0,0.07);
  margin-bottom: 8px;
  position: relative;
}

/* Inner white bubble */
.kpi-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--text-main);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}
/* 40% ring (40% solid red, 60% light/red-fade) */
.kpi-40 {
  background: conic-gradient(
    var(--brand-red) 0deg,
    var(--brand-red) calc(360deg * 0.40),
    rgba(192,0,11,0.15) calc(360deg * 0.40),
    rgba(192,0,11,0.15) 360deg
  );
}

/* 30% ring */
.kpi-30 {
  background: conic-gradient(
    var(--brand-red) 0deg,
    var(--brand-red) calc(360deg * 0.30),
    rgba(192,0,11,0.15) calc(360deg * 0.30),
    rgba(192,0,11,0.15) 360deg
  );
}

/* 35% ring */
.kpi-35 {
  background: conic-gradient(
    var(--brand-red) 0deg,
    var(--brand-red) calc(360deg * 0.35),
    rgba(192,0,11,0.15) calc(360deg * 0.35),
    rgba(192,0,11,0.15) 360deg
  );
}



.kpi-value {
  display: block;
}

.kpi-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

/* ========== CTA BUTTON ========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background-color: var(--brand-red);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 20px;
  border-radius: 6px;
  min-width: 260px;
  box-shadow: 0 16px 32px rgba(192,0,11,0.3); /* subtle red-tinted glow */
}


.cta-icon {
  font-size: 18px;
  line-height: 1;
}

/* ========== RIGHT COLUMN VISUAL ========== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right column video should look like your card image */
.hero-video {
  width: 100%;
  max-width: 500px;                  /* match .hero-image width */
  height: auto;
  display: block;

  background-color: #ffffff;         /* same card look as image */
  border: 2px solid rgba(192,0,11,0.2);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  padding: 16px;                     /* same breathing room */
  object-fit: cover;                 /* keep video neatly cropped inside */
}



/* ========== RESPONSIVE ========== */



  /* On mobile we can choose image-first or text-first.
     Screenshot shows text first, so we KEEP text first.
     If you ever want image first, add: order: -1; to .hero-visual */

     /* Keep things tidy on small screens */
@media (max-width: 900px) {

  .hero-body {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-bottom: 0;                /* already stacking; no extra gap needed */
  }
  .hero-video {
    max-width: 100%;
  }
}
  .hero-visual {
    margin-bottom: 24px;
  }

  .hero-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .call-badge {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    margin-left: auto; 
  }

  .datascan-wordmark {
    font-size: 22px;
    letter-spacing: 0.3em;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .kpi-row {
    gap: 16px;
  }

  .cta-button {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 24px 16px 48px;
  }

  .hero-heading {
    font-size: 24px;
  }

  .kpi-card {
    max-width: 110px;
    flex: 1 1 100px;
  }

  .hero-image {
    width: 320px;
  }
}
/* =============================== */
/* SECTION: SOLUTIONS              */
/* =============================== */

.solutions {
  background-color: var(--bg-hero); /* same light background for smooth flow */
  padding: 60px 16px 80px;
  color: var(--text-main);
}

.solutions-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* --- Heading + subheading --- */
.solutions-head {
  max-width: 800px;
  margin: 0 auto 40px;
}

.solutions-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0 0 16px;
}

.solutions-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(33,37,41,0.8); /* softer than full black */
  margin: 0;
}

/* --- Grid of 3 cards --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 40px auto 0;
}

/* Individual card */
.solution-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 24px 40px rgba(0,0,0,0.07);
  padding: 24px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon wrapper (circular bg behind icon) */
.solution-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(192,0,11,0.08); /* faint brand red tint */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

/* The <img> inside icon */
.solution-icon img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

/* Label (SELF-SCAN / SAAS / FULLY OUTSOURCED) */
.solution-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

/* Description text */
.solution-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
  max-width: 260px;
}

/* --- Responsive behavior --- */
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .solutions {
    padding: 48px 16px 64px;
  }

  .solutions-title {
    font-size: 24px;
  }

  .solutions-desc {
    font-size: 15px;
  }
}
/* =============================== */
/* SECTION: LEAD FORM              */
/* =============================== */

.leadform-section {
  background-color: var(--bg-hero); /* same beige backdrop so flow is smooth */
  padding: 60px 16px 80px;
  color: var(--text-main);
  text-align: center;
}

.leadform-inner {
  max-width: 800px;
  margin: 0 auto;
}

.leadform-title {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

/* The form card container */
.leadform-card {
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 24px 40px rgba(0,0,0,0.07);
  padding: 24px 24px 32px;
  text-align: left;
}

/* Rows (2 columns on desktop, stack on mobile) */
.leadform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Full width field row override */
.field-full {
  grid-column: 1 / 3;
}

/* Field wrapper */
.leadform-field {
  display: flex;
  flex-direction: column;
}

/* Accessibility helper for labels we don't visually show */
.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;
}

/* Standard inputs */
.leadform-input {
  width: 100%;
  border-radius: 6px;
  border: 2px solid rgba(33,37,41,0.4); /* dark grey-blue border */
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  padding: 12px 14px;
  color: var(--text-main);
  outline: none;
}

.leadform-input:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(192,0,11,0.15);
}

/* PHONE FIELD: country code + number side by side */
.phone-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.phone-code-select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;

  background-color: #fff;
  border: 2px solid rgba(33,37,41,0.4);
  border-radius: 6px 0 0 6px;
  border-right: 0;
  padding: 12px 10px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-main);
  min-width: 110px;
  outline: none;
}

.phone-code-select:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(192,0,11,0.15);
}

.phone-number-input {
  flex: 1;
  border: 2px solid rgba(33,37,41,0.4);
  border-radius: 0 6px 6px 0;
  border-left: 0;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-main);
  outline: none;
}

.phone-number-input:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(192,0,11,0.15);
}

/* Disclaimer text */
.leadform-disclaimer {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(33,37,41,0.7);
  text-align: center;
  margin: 16px 0 20px;
}

/* Submit button */
.leadform-submit {
  display: block;
  width: 100%;
  background-color: var(--brand-red);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(192,0,11,0.3);
  text-align: center;
}

.leadform-submit:hover {
  filter: brightness(1.05);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .leadform-row {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .leadform-card {
    padding: 20px 20px 28px;
  }

  .leadform-title {
    font-size: 24px;
    text-align: center;
  }
}
/* =============================== */
/* SECTION: WHY ALTAVANT           */
/* =============================== */

.whyaltavant-section {
  background-color: var(--bg-hero); /* same beige tone for continuity */
  padding: 60px 16px 80px;
  color: var(--text-main);
  text-align: center;
}

.whyaltavant-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Title at the top */
.whyaltavant-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0 0 32px;
  text-align: center;
}

/* The 2-column layout under the heading */
.whyaltavant-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* LEFT CARD: floating white box with shadow */
.whyaltavant-card {
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  box-shadow: 0 24px 40px rgba(0,0,0,0.07);
  padding: 24px 24px 28px;
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.whyaltavant-card strong {
  font-weight: 700;
  color: var(--text-main);
}

.whyaltavant-text {
  margin: 0;
}

/* RIGHT SIDE IMAGE */
.whyaltavant-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyaltavant-image {
  max-width: 100%;
  height: auto;
  width: 420px;
  object-fit: contain;

  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.04)
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  padding: 16px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .whyaltavant-body {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .whyaltavant-card {
    order: 1;
  }

  .whyaltavant-visual {
    order: 2;
  }

  .whyaltavant-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .whyaltavant-section {
    padding: 48px 16px 64px;
  }

  .whyaltavant-card {
    font-size: 14px;
    line-height: 1.5;
    padding: 20px 20px 24px;
    backdrop-filter: blur(3px);

  }

  .whyaltavant-image {
    width: 320px;
    border-radius: 14px;
    padding: 14px;
  }
}
/* =============================== */
/* SECTION: RESULTS / PROOF        */
/* =============================== */

.results-section {
  background-color: var(--bg-hero); /* same beige background */
  padding: 60px 16px 80px;
  color: var(--text-main);
  text-align: center;
}

.results-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Heading + description */
.results-head {
  max-width: 900px;
  margin: 0 auto 40px;
}

.results-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0 0 16px;
}

.results-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(33,37,41,0.8);
  margin: 0;
}

/* KPI 3-column layout */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* in screenshot, there are thin dividers, not big gaps */
  max-width: 1080px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  background-color: #ffffff;
}

/* Each card */
.results-card {
  background-color: #ffffff;
  padding: 24px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* subtle right-side divider for desktop, except last card */
  border-right: 1px solid rgba(0,0,0,0.08);
}

.results-card:last-child {
  border-right: none;
}

/* KPI ring (outer donut) */
.results-kpi-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;

  /* We'll generate the progress fill with conic-gradient in modifier classes */
  box-shadow: 0 8px 16px rgba(0,0,0,0.07);
  position: relative;
  background-color: transparent;
}

/* Inner white bubble with % number */
.results-kpi-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--text-main);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.results-kpi-value {
  display: block;
}

/* KPI headline and description */
.results-kpi-head {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  text-align: center;
  max-width: 240px;
  margin-bottom: 8px;
}

.results-kpi-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-main);
  max-width: 260px;
  text-align: center;
}

/* Donut fill colors using your brand red */
.kpi-red-40 {
  background: conic-gradient(
    var(--brand-red) 0deg,
    var(--brand-red) calc(360deg * 0.40),
    rgba(192,0,11,0.15) calc(360deg * 0.40),
    rgba(192,0,11,0.15) 360deg
  );
}

.kpi-red-30 {
  background: conic-gradient(
    var(--brand-red) 0deg,
    var(--brand-red) calc(360deg * 0.30),
    rgba(192,0,11,0.15) calc(360deg * 0.30),
    rgba(192,0,11,0.15) 360deg
  );
}

.kpi-red-35 {
  background: conic-gradient(
    var(--brand-red) 0deg,
    var(--brand-red) calc(360deg * 0.35),
    rgba(192,0,11,0.15) calc(360deg * 0.35),
    rgba(192,0,11,0.15) 360deg
  );
}

/* Responsive rules */
@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: 1fr;
    box-shadow: 0 20px 32px rgba(0,0,0,0.07);
  }

  .results-card {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .results-card:last-child {
    border-bottom: none;
  }

  .results-title {
    font-size: 24px;
  }

  .results-desc {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .results-section {
    padding: 48px 16px 64px;
  }

  .results-kpi-head {
    font-size: 14px;
  }

  .results-kpi-text {
    font-size: 13px;
  }
}
/* =============================== */
/* SECTION: GLOBAL STATS / SCALE   */
/* =============================== */

.stats-section {
  background-color: var(--brand-red); /* full-width red band, on brand */
  padding: 40px 16px 48px;
  color: var(--white);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Grid wrapper box with white borders like the screenshot */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: transparent;

  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 4px;

  overflow: hidden;
}

/* Each stat cell */
.stat-cell {
  padding: 24px 16px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* cell borders */
  border-right: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

/* remove right border for last col in each row */
.stat-cell:nth-child(3),
.stat-cell:nth-child(6) {
  border-right: none;
}

/* remove bottom border for last row */
.stat-cell:nth-child(4),
.stat-cell:nth-child(5),
.stat-cell:nth-child(6) {
  border-bottom: none;
}

/* top row: icon + number */
.stat-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 8px;
}

/* icon placeholder style */
.stat-icon {
  font-size: 28px;
  line-height: 1;
  display: inline-block;
  color: var(--white);
}

/* bold number text */
.stat-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

/* label under number */
.stat-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  max-width: 200px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Recalculate borders for 2-column layout */

  .stat-cell {
    border-right: 1px solid rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }

  /* right column cells in 2-col layout shouldn't have right border */
  .stat-cell:nth-child(2),
  .stat-cell:nth-child(4),
  .stat-cell:nth-child(6) {
    border-right: none;
  }

  /* bottom row cells shouldn't have bottom border */
  .stat-cell:nth-child(5),
  .stat-cell:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }

  .stat-cell:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 14px;
  }
}
/* image version of icons */
.stat-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* =============================== */
/* SECTION: ALTAVANT OFFERS        */
/* =============================== */

.offers-section {
  background-color: #ffffff; /* clean white band to break from red stats above */
  padding: 60px 16px 80px;
  color: var(--text-main);
  text-align: center;
  font-family: inherit;
}

.offers-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Heading + paragraph */
.offers-head {
  max-width: 900px;
  margin: 0 auto 40px;
}

.offers-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0 0 16px;
}

.offers-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(33,37,41,0.8);
  margin: 0;
}

/* Main body layout: text left / image right */
.offers-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 32px;
}

/* LEFT SIDE TEXT */
.offers-left {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-main);
}

/* Each block (Ease of Use / Efficiency / Agility) */
.offers-block {
  margin-bottom: 24px;
}

.offers-block-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

/* Bullets */
.offers-list {
  margin: 0;
  padding-left: 18px; /* indent bullets */
  list-style-type: disc;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-main);
}

.offers-list li {
  margin-bottom: 6px;
}

.offers-list strong {
  font-weight: 600;
  color: var(--text-main);
}

/* Footnote under list */
.offers-footnote {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  margin: 8px 0 0;
}

/* RIGHT SIDE IMAGE */
.offers-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offers-image {
  max-width: 100%;
  height: auto;
  width: 420px;
  object-fit: contain;

  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  padding: 16px;
}

/* CTA BUTTON AT BOTTOM */
.offers-cta-wrap {
  text-align: center;
}

.offers-cta-btn {
  display: inline-block;
  background-color: var(--brand-red);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(192,0,11,0.3);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.offers-cta-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 20px 40px rgba(192,0,11,0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .offers-body {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .offers-right {
    order: 2;
  }

  .offers-left {
    order: 1;
  }

  .offers-title {
    font-size: 24px;
  }

  .offers-desc {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .offers-section {
    padding: 48px 16px 64px;
  }

  .offers-block-heading {
    font-size: 15px;
  }

  .offers-list {
    font-size: 14px;
  }

  .offers-footnote {
    font-size: 14px;
  }

  .offers-image {
    width: 320px;
    border-radius: 14px;
    padding: 14px;
  }
}
/* =============================== */
/* SECTION: LOCATION / MAP         */
/* =============================== */

.location-section {
  background-color: var(--bg-hero); /* soft beige/grey we used in earlier sections */
  padding: 60px 16px 80px;
  color: var(--text-main);
  text-align: center;
  font-family: inherit;
}

.location-inner {
  max-width: 900px;
  margin: 0 auto;
}

.location-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0 0 16px;
}

.location-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(33,37,41,0.8);
  max-width: 800px;
  margin: 0 auto 20px;
}

.location-address {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0 0 24px;
}

/* Map container */
.location-map-wrap {
  position: relative;
  width: 100vw;                /* full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;          /* pull it out of container constraints */
  margin-right: -50vw;
  border: none;
  border-radius: 0;            /* full bleed (no rounded corners) */
  box-shadow: none;
  margin-top: 32px;
  border-top-left-radius: 12px;
border-top-right-radius: 12px;
overflow: hidden;
}

.location-map {
  width: 100%;
  height: 360px;               /* adjust height as you prefer */
  border: 0;
  display: block;
}






/* Responsive tweaks */
@media (max-width: 480px) {
  .location-section {
    padding: 48px 16px 64px;
  }

  .location-title {
    font-size: 24px;
  }

  .location-desc {
    font-size: 15px;
  }

  .location-address {
    font-size: 14px;
  }

  .location-map {
    height: 220px;
  }
}