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

:root {
  --navy: #0A2A51;
  --green: #4CAF50;
  --soft: #F5F7FA;
  --header: #F8F6F5;
  --bg: #FCFBF9;
  --text: #333333;
  --white: #FFFFFF;
  --line: #E0E0E0;
  --muted: #6B7280;

  --shadow: 0 20px 60px rgba(10, 42, 81, .10);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0A2A51;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand img {
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: .94rem;
  color: var(--white);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.7rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 750;
  transition: .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(76, 175, 80, .22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(.96);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

/* TYPOGRAFIE */

.eyebrow {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green);
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: -.035em;
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  line-height: .96;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.25;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: #4B5563;
  max-width: 720px;
}

/* HERO */

.hero {
  padding: 76px 0 54px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 750;
  color: var(--navy);
  margin: -10px 0 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.micro {
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.micro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* HERO PRODUCT STAGE */

.product-stage {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
  background: linear-gradient(
    145deg,
    #eef5ef 0%,
    #f7f3ed 55%,
    #dfe9f0 100%
  );
  overflow: hidden;
  box-shadow: var(--shadow);
}

.course-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 26%,
      rgba(76, 175, 80, .18),
      transparent 30%
    ),
    linear-gradient(
      160deg,
      transparent 50%,
      rgba(10, 42, 81, .06) 50.2%,
      transparent 51%
    );
}

.phone {
  position: absolute;
  left: 12%;
  top: 7%;
  width: 55%;
  height: 86%;
  border: 10px solid #0b1119;
  border-radius: 44px;
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(10, 42, 81, .28);
  padding: 22px 16px;
  color: white;
  transform: rotate(-4deg);
}

.phone-notch {
  width: 34%;
  height: 18px;
  background: #05080d;
  border-radius: 0 0 14px 14px;
  margin: -22px auto 18px;
}

.phone-logo {
  text-align: center;
  font-weight: 800;
  letter-spacing: .14em;
}

.phone-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 16px;
  margin-top: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat {
  background: rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 12px;
}

.stat b {
  font-size: 1.3rem;
  display: block;
}

.trend {
  height: 95px;
  margin-top: 14px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  background: linear-gradient(
    168deg,
    transparent 0 42%,
    var(--green) 42.5% 44%,
    transparent 44.5%
  );
}

.stage-note {
  position: absolute;
  right: 6%;
  bottom: 9%;
  width: 34%;
  background: rgba(255, 255, 255, .92);
  padding: 18px;
  border-radius: 16px;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(10, 42, 81, .14);
}

/* BENEFITS */

.benefit-strip {
  padding: 24px 0 72px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  min-height: 116px;
}

.benefit-icon {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 9px;
}

/* ALLGEMEINE SEKTIONEN */

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.center {
  text-align: center;
  margin-inline: auto;
}

.center .lead {
  margin-inline: auto;
}

/* PROBLEM */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.questions {
  display: grid;
  gap: 12px;
}

.question {
  padding: 18px 20px;
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(10, 42, 81, .05);
  font-weight: 650;
  color: var(--navy);
}

/* FLOW */

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 48px;
}

.flow-step {
  text-align: center;
  padding: 22px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font-weight: 800;
  color: var(--navy);
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.3rem;
  z-index: 2;
}

/* PRODUKT STORIES */

.stories {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.story {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.story:nth-child(even) {
  grid-template-columns: 1.15fr .85fr;
}

.story:nth-child(even) .story-visual {
  order: 2;
}

.screen-placeholder {
  min-height: 320px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--navy), #123e72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.screen-placeholder::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  right: -70px;
  top: -60px;
}

.screen-placeholder strong {
  position: relative;
  font-size: 1.25rem;
}

/* BRAND MOMENT */

.brand-moment {
  background: var(--navy);
  color: white;
  text-align: center;
}

.brand-moment h2 {
  color: white;
}

.brand-moment .eyebrow {
  color: #7bd57e;
}

/* TESTER */

.tester-panel {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}

.tester-panel h2 {
  color: white;
  margin-bottom: 12px;
}

.tester-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: #E7EEF6;
}

/* ÜBER UNS */

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.founder-visual {
  min-height: 430px;
  border-radius: 26px;
  background: linear-gradient(145deg, #e8eee4, #ceddcc);
  display: flex;
  align-items: end;
  padding: 28px;
  color: var(--navy);
  font-weight: 800;
}

.founder-visual span {
  background: rgba(252, 251, 249, .92);
  padding: 14px 18px;
  border-radius: 12px;
}

/* FINAL CTA */

.final-cta {
  text-align: center;
  padding: 110px 0;
}

/* FOOTER */

.site-footer {
  background: var(--navy);
  color: white;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
}

.footer-logo {
  height: 64px;
  margin-bottom: 18px;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 12px;
}

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

.footer-links a {
  text-decoration: none;
  color: #DBE5F0;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-top: 38px;
  padding-top: 20px;
  color: #BAC7D5;
  font-size: .85rem;
}

/* UNTERSEITEN */

.page-hero {
  padding: 88px 0 52px;
}

.page-hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  max-width: 980px;
}

.content-narrow {
  width: min(840px, calc(100% - 40px));
  margin: auto;
}

.story-section {
  padding: 55px 0;
  border-top: 1px solid var(--line);
}

.quote-card {
  background: var(--navy);
  color: white;
  padding: 34px;
  border-radius: 22px;
  margin: 36px 0;
}

.quote-card strong {
  font-size: 1.35rem;
}

.beliefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.belief {
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 24px;
}

/* FORMULAR */

.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.field label {
  display: block;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 7px;
}

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: white;
}

.field input:focus {
  outline: 3px solid rgba(76, 175, 80, .14);
  border-color: var(--green);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-note {
  padding: 16px;
  border-radius: 12px;
  background: var(--soft);
  font-size: .9rem;
  color: #56606c;
}

/* LEGAL */

.legal-main {
  padding: 78px 0;
}

.legal-section,
.privacy-section,
.info {
  margin-top: 38px;
}

.legal-section h2,
.privacy-section h2,
.info h2 {
  font-size: 1.5rem;
}

.contact-box,
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.notice {
  background: #eef8ef;
  border-left: 4px solid var(--green);
  padding: 16px 18px;
  border-radius: 10px;
}

.meta,
.hint {
  color: var(--muted);
  font-size: .9rem;
}

.legal-main ul {
  padding-left: 22px;
}

.legal-main p,
.legal-main li {
  line-height: 1.75;
}

/* =====================================================
   RESPONSIVE – TABLET & MOBILE
   ===================================================== */

@media (max-width: 850px) {

  .container {
    width: min(100% - 28px, var(--max));
  }

  /* HEADER */

  .site-header {
    background: var(--navy);
  }

  .site-header .nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 72px;
    gap: 12px;
    background: transparent;
  }

  .site-header .brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: auto;
  }

  .site-header .brand img {
    display: block;
    width: auto;
    height: 45px;
    max-width: 90px;
  }

  /* Header CTA auf Mobile bewusst ausblenden */
  .site-header .nav-cta {
    display: none;
  }

  /* Hamburger */

  .site-header .nav-toggle {
    display: inline-flex;
    visibility: visible;
    opacity: 1;

    flex: 0 0 44px;
    width: 44px;
    height: 44px;

    margin: 0 0 0 auto;
    padding: 0;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 9px;

    background: transparent;
    color: var(--white);

    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  /* Mobile Navigation */

  .site-header .nav-links {
    display: none;

    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1000;

    margin: 0;
    padding: 12px;

    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;

    box-shadow: 0 14px 30px rgba(0, 0, 0, .20);

    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-header .nav-links.open {
    display: flex;
  }

  .site-header .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 14px;

    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
  }

  .site-header .nav-links a:hover,
  .site-header .nav-links a:focus,
  .site-header .nav-links a[aria-current="page"] {
    color: var(--green);
    background: rgba(255, 255, 255, .06);
  }

  /* HERO */

  .hero {
    padding-top: 46px;
  }

  .hero-grid,
  .problem-grid,
  .about-teaser {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .product-stage {
    min-height: 470px;
  }

  .phone {
    width: 62%;
    left: 8%;
    height: 84%;
  }

  .stage-note {
    width: 40%;
    right: 5%;
  }

  /* BENEFITS */

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FLOW */

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

  .flow-step:not(:last-child)::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -21px;
    transform: translateX(50%);
  }

  /* PRODUCT STORIES */

  .story,
  .story:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .story:nth-child(even) .story-visual {
    order: 0;
  }

  /* TESTER */

  .tester-panel {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  /* ABOUT */

  .founder-visual {
    min-height: 320px;
  }

  /* FOOTER */

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


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 520px) {

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-sub {
    font-size: 1.65rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

  .product-stage {
    min-height: 400px;
    border-radius: 24px;
  }

  .phone {
    width: 70%;
    height: 84%;
    left: 3%;
    border-width: 7px;
    border-radius: 34px;
  }

  .stage-note {
    width: 43%;
    font-size: .78rem;
    padding: 12px;
  }

  .section {
    padding: 68px 0;
  }

  .tester-panel {
    padding: 26px 22px;
    border-radius: 22px;
  }

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

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

  .form-card {
    padding: 22px;
  }

  .page-hero {
    padding: 58px 0 38px;
  }

  .legal-main {
    padding: 54px 0;
  }
}

/* =====================================================
   SPRINT 2.2 – PREMIUM VISUAL POLISH
   ===================================================== */

/* TYPOGRAFIE */

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-weight: 800;
}

h2 {
  max-width: 900px;
}

p {
  margin-top: 0;
}

.lead {
  line-height: 1.65;
}


/* BUTTONS */

.btn {
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: .95rem;
  letter-spacing: -.01em;
}

.btn-primary {
  box-shadow: 0 10px 28px rgba(76, 175, 80, .20);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(76, 175, 80, .26);
}

.btn-secondary:hover {
  border-color: rgba(10, 42, 81, .35);
  background: rgba(10, 42, 81, .035);
}


/* BENEFIT CARDS */

.benefit {
  position: relative;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 42, 81, .12);
  box-shadow: 0 18px 45px rgba(10, 42, 81, .08);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 12px;
  background: rgba(76, 175, 80, .10);
}


/* PROBLEM CARDS */

.question {
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.question:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(10, 42, 81, .08);
}


/* TRACK – PLAY – ANALYSE – TRAIN – IMPROVE */

.flow-step {
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.flow-step:hover {
  transform: translateY(-3px);
  border-color: rgba(76, 175, 80, .45);
  box-shadow: 0 12px 32px rgba(10, 42, 81, .07);
}


/* PRODUCT STORIES */

.story {
  padding: 34px;
  border-color: rgba(10, 42, 81, .08);
  box-shadow: 0 10px 35px rgba(10, 42, 81, .045);
}


/* TESTER */

.tester-panel {
  position: relative;
  overflow: hidden;
}

.tester-panel::after {
  content: '';
  position: absolute;

  width: 300px;
  height: 300px;

  right: -130px;
  top: -160px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .10);

  pointer-events: none;
}


/* ABOUT / FOUNDER */

.founder-visual {
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(10, 42, 81, .08);
}


/* FORM */

.form-card {
  border-color: rgba(10, 42, 81, .09);
}

.field input[type="text"],
.field input[type="email"] {
  min-height: 50px;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


/* RESPONSIVE POLISH */

@media (max-width: 850px) {

  .story {
    padding: 28px;
  }
}

@media (max-width: 520px) {

  .story {
    padding: 20px;
    border-radius: 20px;
  }

  .benefit {
    min-height: auto;
  }

  .btn {
    min-height: 52px;
  }

  .lead {
    line-height: 1.6;
  }
}

/* =====================================================
   SPRINT 2.2B – HERO POLISH
   ===================================================== */

.hero {
  position: relative;
  padding: 92px 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-copy .lead {
  max-width: 650px;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-copy .eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.hero-actions {
  margin-top: 34px;
}

.hero .micro {
  margin-top: 18px;
}

/* Produktbühne */

.product-stage {
  isolation: isolate;
  border: 1px solid rgba(10, 42, 81, .06);
}

.product-stage::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: rgba(76, 175, 80, .10);
  filter: blur(2px);
  z-index: -1;
}

.product-stage::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  left: -100px;
  bottom: -120px;
  border-radius: 50%;
  border: 1px solid rgba(10, 42, 81, .08);
  z-index: -1;
}

.phone {
  transition: transform .35s ease;
}

.product-stage:hover .phone {
  transform: rotate(-2deg) translateY(-4px);
}

.stage-note {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .55);
}


/* TABLET */

@media (max-width: 850px) {

  .hero {
    padding: 58px 0 54px;
  }

  .hero-copy h1 {
    max-width: 650px;
  }
}


/* MOBILE */

@media (max-width: 520px) {

  .hero {
    padding: 42px 0 40px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 16px;
  }

  .hero-copy .eyebrow::before {
    width: 18px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
  }

  .hero-sub {
    margin-bottom: 22px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero .micro {
    margin-top: 14px;
  }
}

/* =====================================================
   SPRINT 2.3 – MOBILE BENEFIT GRID
   ===================================================== */

@media (max-width: 520px) {

  .benefit-strip {
    padding: 18px 0 54px;
  }

  .benefit {
    min-height: 180px;
    padding: 18px 16px;
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;

    font-size: 1.15rem;
    border-radius: 11px;
  }

  .benefit strong {
    display: block;
    margin-bottom: 7px;

    color: var(--navy);
    font-size: 1rem;
    line-height: 1.25;
  }

  .benefit span,
  .benefit p {
    margin: 0;

    color: var(--muted);
    font-size: .86rem;
    line-height: 1.45;
  }
}

/* =====================================================
   SPRINT 2.3 – MOBILE BENEFITS FINAL
   ===================================================== */

@media (max-width: 520px) {

  .benefit-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .benefit {
    min-width: 0;
    min-height: 170px;
    padding: 18px 15px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .benefit-icon {
    margin-bottom: 16px;
  }

  .benefit strong {
    font-size: .96rem;
    line-height: 1.25;
    margin-bottom: 7px;
  }

  .benefit p,
  .benefit span {
    font-size: .82rem;
    line-height: 1.4;
  }
}