*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #1B2E4B;
  --navy-deep: #0E1B2E;
  --navy-soft: #243A5C;
  --teal: #00897B;
  --teal-dark: #006B60;
  --teal-light: #2AAFA1;
  --teal-pale: #E6F4F2;
  --gold: #C8922A;
  --gold-light: #E0AE49;
  --gold-pale: #FBF1DC;
  --offwhite: #F8F9FA;
  --warm: #FAF7F2;
  --warm-deep: #F4EFE5;
  --slate: #444444;
  --muted: #6B7785;
  --muted-soft: #9BA5B0;
  --line: #E2E7EE;
  --line-soft: #EFF2F6;
  --paper: #FFFFFF;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --accent: 'Playfair Display', Georgia, serif;
/*
  --container: 1180px;
  --container-narrow: 920px;
*/
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(27, 46, 75, 0.05), 0 2px 6px rgba(27, 46, 75, 0.04);
  --shadow-md: 0 4px 14px rgba(27, 46, 75, 0.07), 0 12px 32px rgba(27, 46, 75, 0.08);
  --shadow-card: 0 16px 40px rgba(27, 46, 75, 0.10);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
/* ════════════════════════════════════════════════════════

   HERO

   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 1100px 600px at 100% 0%, rgba(0, 137, 123, 0.20), transparent 60%), radial-gradient(ellipse 800px 500px at 0% 100%, rgba(200, 146, 42, 0.10), transparent 60%);
  color: white;
/*  padding: 96px 28px 88px;*/
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 520px;
  height: 520px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><path d='M30 100 L80 50 L130 100 V140 H30 V100 Z M30 140 H130' fill='none' stroke='%2300897B' stroke-width='1.4' opacity='0.18'/></svg>");
  background-size: 160px 160px;
  background-repeat: repeat;
  pointer-events: none;
  transform: rotate(-3deg);
  opacity: 0.55;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 13px;
  background: rgba(0, 137, 123, 0.18);
  border: 1px solid rgba(0, 137, 123, 0.30);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 175, 161, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(42, 175, 161, 0);
  }
}
.hero h1 {
/*  font-family: var(--sans);*/
  font-size: clamp(40px, 5.4vw, 68px);
/*  font-weight: 800;*/
  line-height: 50px;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 28px;
}
.hero h1 .it {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: -1.4px;
  display: block;
  margin-top: 6px;
}
.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--teal);
  color: white;
  border-radius: 999px;
  font-family: var(--sans);
 
  letter-spacing: -0.1px;
  transition: all .15s ease;
  box-shadow: 0 12px 32px rgba(0, 137, 123, 0.30);
}
.hero-cta .arrow {
  transition: transform .15s ease;
}
.hero-cta:hover .arrow {
  transform: translateX(3px);
}
/* ════════════════════════════════════════════════════════

   INTRO STRIP — bridge between hero and sections

   ════════════════════════════════════════════════════════ */
.intro-strip {
  background: #EEF1F5;
  padding: 56px 0px;
  border-bottom: 1px solid var(--line);
}
.intro-strip-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.intro-strip-quote-mark {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 84px;
  line-height: 0.7;
  color: var(--teal);
  letter-spacing: -2px;
}
.intro-strip-text {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.4px;
}
.intro-strip-text strong {
  font-family: 'Spartan';
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(200, 146, 42, 0.30) 60%);
  padding: 0 2px;
}
/* ════════════════════════════════════════════════════════

   ALTERNATING SECTIONS — the heart of the page

   ════════════════════════════════════════════════════════ */
.diff-section {
/*  padding: 96px 28px;*/
  position: relative;
}
.diff-section.alt-bg {
  background: #EEF1F5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diff-inner {
/*  max-width: var(--container);*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Reverse the order on every other section */
.diff-section:nth-child(odd) .diff-inner {
  direction: rtl;
}
.diff-section:nth-child(odd) .diff-inner > * {
  direction: ltr;
}
.diff-content {}
.diff-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.diff-num {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -1px;
}
.diff-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #59c0ab;
  text-transform: uppercase;
}
.diff-title {
/*
  font-family: var(--sans);
  font-size: clamp(30px, 3.8vw, 44px);

  font-weight: 800;*/
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 22px;
}
.diff-title .it {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.8px;
}
.diff-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate);
}
.diff-body p {
  margin-bottom: 18px;
}
.diff-body p:last-child {
  margin-bottom: 0;
}
.diff-body strong {
  color: var(--navy);
  font-weight: 700;
}
/* Visual block — placeholder for real photography, brand-coloured fallback */
.diff-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background-color: var(--navy);
}
.diff-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.18), transparent 50%), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><path d='M28 88 L70 46 L112 88 V124 H28 V88 Z M28 124 H112' fill='none' stroke='white' stroke-width='1.2' opacity='0.20'/></svg>");
  background-size: auto, 160px 160px;
}
/* Vignette overlay — gives the gradient a more "photo-like" quality */
.diff-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
/* Different gradient per section so each feels distinct */
.diff-visual.v1 {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
}
.diff-visual.v2 {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
}
.diff-visual.v3 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
}
.diff-visual.v4 {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
}
.diff-visual.v5 {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal-dark) 100%);
}
/* Stat card overlaid on the visual block - gives each section a memorable beat */
.diff-visual-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: white;
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.20);
  z-index: 3;
  max-width: 280px;
}
.diff-visual-card-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.diff-visual-card-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.diff-visual-card-text .it {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}
/* Bottom-right anchor variant (for some sections) */
.diff-visual-card.anchor-right {
  left: auto;
  right: 24px;
  text-align: right;
}
/* Top-right anchor variant */
.diff-visual-card.anchor-top {
  bottom: auto;
  top: 24px;
}
/* ════════════════════════════════════════════════════════

   QUOTE BREAK — between sections, magazine-style pull-out

   ════════════════════════════════════════════════════════ */
.quote-break {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 700px 400px at 50% 50%, rgba(0, 137, 123, 0.18), transparent 60%);
  color: white;
/*  padding: 80px 28px;*/
  position: relative;
  overflow: hidden;
}
.quote-break::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 700px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><path d='M40 130 L100 70 L160 130 V180 H40 V130 Z M40 180 H160' fill='none' stroke='%2300897B' stroke-width='1.2' opacity='0.10'/></svg>");
  background-size: 200px 200px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.6;
}
.quote-break-inner {
  position: relative;
  z-index: 2;
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
}
.quote-break-mark {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 84px;
  line-height: 0.4;
  color: var(--teal-light);
  margin-bottom: 32px;
}
.quote-break-text {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.3;
  color: white;
  letter-spacing: -0.8px;
  margin-bottom: 28px;
}
.quote-break-attribution {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
/* ════════════════════════════════════════════════════════

   THE ADVANTAGE — bullet list redesigned as card grid

   ════════════════════════════════════════════════════════ */
.advantage {
  background: #EEF1F5;
/*  padding: 96px 28px;*/
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.advantage-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.advantage-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.advantage-eyebrow {
  color: #59c0ab;
  text-transform: uppercase;
margin-bottom: 10px;
	
	    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3.25px;
}
.advantage-title {
/*
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
*/
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 16px;
}
.advantage-title .it {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}
.advantage-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 0;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  cursor: default;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 46, 75, 0.20);
  background: var(--navy);
  border-color: var(--navy);
}
.adv-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: #59c0ab;
  margin-bottom: 22px;
  transition: background .25s ease, color .25s ease;
}
.adv-card:hover .adv-icon {
  background: var(--teal);
  color: white;
}
.adv-card-title {
/*  font-family: var(--sans);*/
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color .25s ease;
}
.adv-card:hover .adv-card-title {
  color: white;
}
.adv-card-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate);
  transition: color .25s ease;
}
.adv-card:hover .adv-card-text {
  color: rgba(255, 255, 255, 0.78);
}
/* Optional fifth card spanning two columns (since we have 5 not 6) */
.adv-card.span-2 {
  grid-column: span 2;
}
/* ════════════════════════════════════════════════════════

   FINAL CTA

   ════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 800px 400px at 100% 0%, rgba(0, 137, 123, 0.22), transparent 60%), radial-gradient(ellipse 600px 300px at 0% 100%, rgba(200, 146, 42, 0.14), transparent 60%);
  color: white;
  padding: 96px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
	    border-bottom: 1px solid rgba(248, 249, 250, 0.08);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -60px;
  width: 480px;
  height: 480px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><path d='M30 100 L80 50 L130 100 V140 H30 V100 Z M30 140 H130' fill='none' stroke='%2300897B' stroke-width='1.4' opacity='0.16'/></svg>");
  background-size: 160px 160px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.55;
  transform: rotate(-3deg);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
/*  font-family: var(--sans);*/
  font-size: clamp(34px, 4.4vw, 50px);
/*  font-weight: 800;*/
  letter-spacing: -1.6px;
  line-height: 1.0;
  color: white;
  margin-bottom: 22px;
}
.final-cta h2 .it {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: -1.2px;
}
.final-cta p {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: var(--teal);
  color: white;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15.5px;
 
  letter-spacing: -0.1px;
  transition: all .15s ease;
  box-shadow: 0 12px 32px rgba(0, 137, 123, 0.30);
}
.final-cta-primary .arrow {
  transition: transform .15s ease;
}
.final-cta-primary:hover .arrow {
  transform: translateX(3px);
}
.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
 
  letter-spacing: -0.1px;
  transition: all .15s ease;
}
.final-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
/* ════════════════════════════════════════════════════════

   FOOTER (matches live site)

   ════════════════════════════════════════════════════════ */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-block {
  max-width: 320px;
}
.footer-logo {
  display: block;
  margin-bottom: 6px;
}
.footer-logo img {
  height: 36px;
  width: auto;
}
.footer-tag {

  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--teal-light);
  margin-bottom: 22px;
  letter-spacing: -0.1px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
}
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact {
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: opacity .15s;
}
.footer-contact:hover {
  opacity: 0.78;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color .15s;
  line-height: 1.4;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  /*  border-top: 1px solid rgba(255,255,255,0.10);*/
  /*  padding-top: 28px;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
/* ════════════════════════════════════════════════════════

   RESPONSIVE

   ════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero {
    padding: 72px 24px 64px;
  }
  .hero h1 {
    letter-spacing: -1.6px;
  }
  .hero-lead {
    font-size: 17px;
  }
  .intro-strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
  .intro-strip-quote-mark {
    font-size: 64px;
  }
  .intro-strip-text {
    font-size: 21px;
  }
  .diff-section {
    padding: 64px 24px;
  }
  .diff-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Disable RTL reversal on mobile — image always above content */
  .diff-section:nth-child(odd) .diff-inner {
    direction: ltr;
  }
  .diff-section:nth-child(odd) .diff-content {
    order: 2;
  }
  .diff-section:nth-child(odd) .diff-visual {
    order: 1;
  }
  .diff-num {
    font-size: 26px;
  }
  .diff-title {
    letter-spacing: -1px;
  }
  .diff-visual {
    aspect-ratio: 16 / 10;
  }
  .quote-break {
    padding: 64px 24px;
  }
  .advantage {
    padding: 72px 24px;
  }
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .adv-card.span-2 {
    grid-column: span 2;
  }
  .adv-card {
    padding: 28px 24px;
  }
  .final-cta {
    padding: 72px 24px;
  }
}
@media (max-width: 640px) {
  .nav-inner {
    padding: 0 18px;
  }
  .nav-cta {
    padding: 9px 16px;
    font-size: 13px;
  }
  .logo-img {
    height: 32px;
  }
  .hero {
    padding: 56px 18px 48px;
  }
  .hero h1 {
    letter-spacing: -1.2px;
    line-height: 1.05;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-cta {
    padding: 14px 24px;
    font-size: 14.5px;
  }
  .intro-strip {
    padding: 40px 18px;
  }
  .intro-strip-quote-mark {
    font-size: 56px;
  }
  .intro-strip-text {
    font-size: 22px;
    line-height: 1.4;
  }
  .diff-section {
    padding: 56px 18px;
  }
  .diff-eyebrow-row {
    gap: 10px;
    margin-bottom: 16px;
  }
  .diff-num {
    font-size: 22px;
  }
  .diff-eyebrow {
    font-size: 10px;
    letter-spacing: 1.6px;
  }
  .diff-title {
    letter-spacing: -0.6px;
    margin-bottom: 16px;
  }
  .diff-body {
    font-size: 15.5px;
    line-height: 1.6;
  }
  .diff-body p {
    margin-bottom: 14px;
  }
  .diff-visual {
    aspect-ratio: 4 / 3;
  }
  .diff-visual-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
    max-width: none;
  }
  .diff-visual-card.anchor-right {
    left: 14px;
    right: 14px;
    text-align: left;
  }
  .diff-visual-card.anchor-top {
    top: 14px;
    bottom: auto;
  }
  .diff-visual-card-eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
  }
  .diff-visual-card-text {
    font-size: 13.5px;
  }
  .quote-break {
    padding: 48px 18px;
  }
  .quote-break-mark {
    font-size: 64px;
    margin-bottom: 24px;
  }
  .quote-break-text {
    font-size: 20px;
    letter-spacing: -0.3px;
    line-height: 1.35;
  }
  .quote-break-attribution {
    font-size: 12px;
  }
  .advantage {
    padding: 56px 18px;
  }
  .advantage-header {
    margin-bottom: 36px;
  }
  .advantage-title {
    letter-spacing: -0.8px;
    margin-bottom: 12px;
  }
  .advantage-lead {
    font-size: 15.5px;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .adv-card.span-2 {
    grid-column: span 1;
  }
  .adv-card {
    padding: 24px 22px;
  }
  .adv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }
  .adv-card-title {
/*    font-size: 16px;*/
  }
  .adv-card-text {
/*    font-size: 14px;*/
  }
  .final-cta {
    padding: 64px 18px;
  }
  .final-cta h2 {
    letter-spacing: -1px;
  }
  .final-cta p {
    font-size: 15.5px;
  }
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .final-cta-primary, .final-cta-secondary {
    justify-content: center;
  }
  .footer-inner {
    padding: 0 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}