
:root{
  --navy:#0b3558;
  --navy-dark:#082944;
  --blue:#17679b;
  --blue-soft:#eaf4fb;
  --ink:#111b27;
  --muted:#5e6b78;
  --line:#dce5ec;
  --surface:#ffffff;
  --surface-soft:#f5f9fc;
  --max:1500px;
  --radius:22px;
  --shadow:0 14px 40px rgba(9,42,70,.09);
  --accent:#A34A44;
  --accent-dark:#873A36;
  --accent-soft:#F8EEEE;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
section[id]{scroll-margin-top:100px}

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

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:104px;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(11,53,88,.08);
  backdrop-filter:blur(12px);
}
.header-inner{
  width:min(calc(100% - 64px),1660px);
  height:100%;
  margin:auto;
  display:flex;
  align-items:center;
  gap:42px;
}
.brand{
  flex:0 1 510px;
  min-width:330px;
  display:flex;
  align-items:center;
}
.brand img{
  display:block;
  width:min(100%,490px);
  height:76px;
  object-fit:contain;
  object-position:left center;
}
.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:38px;
  white-space:nowrap;
}
.main-nav>a{
  font-size:17px;
  font-weight:700;
  transition:color .2s ease;
}
.main-nav>a:not(.nav-cta):hover{color:var(--blue)}
.main-nav .nav-cta{
  padding:17px 25px;
  border-radius:10px;
  background:var(--navy);
  color:#fff;
}
.main-nav .nav-cta:hover{background:var(--navy-dark)}
.menu-button{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  padding:10px 14px;
  border-radius:8px;
  font-weight:700;
}

/* HERO */
.hero{
  position:relative;
  min-height:650px;
  overflow:hidden;
  background:#eef4f8;
}
.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:58% 50%;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.99) 0%,
    rgba(255,255,255,.97) 23%,
    rgba(255,255,255,.78) 38%,
    rgba(255,255,255,.20) 57%,
    rgba(255,255,255,0) 72%
  );
}
.hero-inner{
  position:relative;
  z-index:2;
  width:min(calc(100% - 80px),var(--max));
  min-height:650px;
  margin:auto;
  display:flex;
  align-items:center;
}
.hero-copy{
  width:min(690px,48%);
  padding:55px 0 60px;
}
.eyebrow{
  margin:0 0 20px;
  color:var(--blue);
  font-size:14px;
  font-weight:800;
  letter-spacing:.17em;
}
.hero h1{
  margin:0;
  color:var(--navy);
  font-size:clamp(52px,4.6vw,78px);
  line-height:1.04;
  letter-spacing:-.045em;
  font-weight:800;
}
.hero .lead{
  max-width:650px;
  margin:34px 0 34px;
  font-size:23px;
  line-height:1.5;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  min-height:60px;
  padding:0 28px;
  border-radius:10px;
  font-weight:800;
}
.button.primary{
  background:var(--navy);
  color:#fff;
}
.button.primary:hover{background:var(--navy-dark)}
.cta-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent);
  font-weight:800;
  font-size:17px;
  white-space:nowrap;
}
.cta-link span{
  display:inline-block;
  transition:transform .18s ease;
}
.cta-link:hover{color:var(--accent-dark)}
.cta-link:hover span{transform:translateX(3px)}

/* GENERAL SECTIONS */
.section{padding:92px 0}
.section-heading{max-width:790px;margin-bottom:44px}
.section-heading h2,
.about-copy h2,
.contact-section h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px,3vw,52px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.section-heading .intro{
  margin:20px 0 0;
  color:var(--muted);
  font-size:19px;
}
.heading-row{
  max-width:none;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:50px;
}
.heading-note{
  max-width:450px;
  margin:0 0 5px;
  color:var(--muted);
  font-size:18px;
}

/* AUDIENCE */
.audience-section{background:#fff}
.audience-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}
.audience-card{
  position:relative;
  min-height:190px;
  padding:34px 18px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  text-align:center;
  border-right:1px solid var(--line);
  transition:background .2s ease,transform .2s ease;
}
.audience-card:last-child{border-right:0}
.audience-card:hover{background:var(--surface-soft)}
.audience-card .icon{
  min-height:48px;
  display:flex;
  align-items:center;
  color:var(--blue);
  font-size:42px;
  line-height:1;
  letter-spacing:.08em;
}
.audience-card .heart{color:#428b83}
.audience-card .people{color:#bf8c4d}
.audience-card .group{color:#718f3b;font-size:31px}
.audience-card .deer{color:#82603d}
.audience-card strong{
  color:var(--navy);
  font-size:18px;
}
.badge{
  position:absolute;
  top:15px;
  right:15px;
  padding:4px 8px;
  border-radius:6px;
  color:#fff;
  background:var(--blue);
  font-size:11px;
  font-weight:800;
}

/* DATES */
.dates-section{background:var(--surface-soft)}
.date-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}
.date-card{
  min-height:330px;
  display:grid;
  grid-template-columns:47% 53%;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
}
.date-card img{
  width:100%;
  height:100%;
  min-height:330px;
  object-fit:cover;
}
.date-copy{
  padding:36px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.date-copy .date{
  margin:0 0 12px;
  color:var(--blue);
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.date-copy h3{
  margin:0 0 15px;
  color:var(--navy);
  font-size:27px;
  line-height:1.12;
}
.date-copy p:not(.date){
  margin:0;
  color:var(--muted);
  font-size:17px;
}
.date-copy a{
  margin-top:auto;
  padding-top:24px;
  color:var(--navy);
  font-weight:800;
}

/* COURSES */
.courses-section{background:#fff}
.course-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
}
.course-card{
  min-height:310px;
  padding:30px 26px;
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.course-card>span{
  color:var(--blue);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
}
.course-card h3{
  margin:48px 0 14px;
  color:var(--navy);
  font-size:22px;
  line-height:1.18;
}
.course-card p{margin:0;color:var(--muted)}
.course-card a{
  margin-top:auto;
  padding-top:25px;
  color:var(--navy);
  font-weight:800;
}
.course-card.featured{
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
}
.course-card.featured>span,
.course-card.featured h3,
.course-card.featured p,
.course-card.featured a{color:#fff}

/* KURSORT-TEASER */
.kursort-teaser-section{
  padding:56px 3.2%;
}
.kursort-teaser{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:stretch;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.kursort-teaser-image{
  flex:0 0 24%;
  max-width:24%;
  height:160px;
}
.kursort-teaser-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.kursort-teaser-copy{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:16px 40px;
}
.kursort-teaser-copy .eyebrow{margin:0 0 6px}
.kursort-teaser-copy h3{
  margin:0 0 5px;
  color:var(--navy);
  font-size:20px;
  line-height:1.3;
}
.kursort-teaser-copy p{
  margin:0 0 6px;
  color:var(--muted);
  font-size:15px;
  line-height:1.5;
}
.kursort-teaser-copy a{
  color:var(--navy);
  font-weight:800;
  font-size:15px;
}
.kursort-teaser-copy a:hover{color:var(--navy-dark)}
@media(max-width:700px){
  .kursort-teaser-section{
    padding-left:20px;
    padding-right:20px;
  }
}

/* ABOUT */
.about-section{background:#fff}
.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:75px;
  align-items:center;
}
.about-image{
  overflow:hidden;
  border-radius:var(--radius);
}
.about-image img{
  width:100%;
  height:500px;
  object-fit:cover;
}
.about-copy>p:not(.eyebrow){
  margin:26px 0;
  color:var(--muted);
  font-size:19px;
}
.facts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:34px;
}
.facts span{
  padding-top:18px;
  border-top:2px solid var(--blue);
  color:var(--muted);
}
.facts b{
  display:block;
  margin-bottom:5px;
  color:var(--navy);
}

/* CONTACT */
.contact-section{
  padding:92px 0;
  background:var(--navy);
  color:#fff;
}
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:start;
}
.contact-section .eyebrow.light{color:#b9dff4}
.contact-section h2{color:#fff}
.contact-section p{
  max-width:590px;
  color:#dce8f1;
  font-size:18px;
}
.contact-link{
  display:block;
  width:max-content;
  margin-top:12px;
  font-size:21px;
  font-weight:800;
}
#contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
#contact-form input,
#contact-form select,
#contact-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.28);
  border-radius:9px;
  outline:0;
  background:#fff;
  color:var(--ink);
  padding:16px 17px;
}
#contact-form textarea{grid-column:1/-1;resize:vertical}
#contact-form button{
  grid-column:1/-1;
  min-height:56px;
  border:0;
  border-radius:9px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
#contact-form button:hover{background:var(--accent-dark)}
#contact-form button:disabled{opacity:.6;cursor:default}
.hp-field{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden}
.privacy-note{
  grid-column:1/-1;
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:#c3d6e4;
}
.privacy-note a{color:#fff;text-decoration:underline}
.privacy-note a:hover{color:var(--accent-soft)}
#form-note{
  grid-column:1/-1;
  margin:0;
  padding:14px 16px;
  border-radius:9px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.28);
  font-size:15px;
  line-height:1.5;
  color:#fff;
}
#form-note.error{
  background:rgba(163,74,68,.25);
  border-color:rgba(163,74,68,.6);
}

/* FOOTER */
.site-footer{
  padding:28px max(40px,calc((100% - var(--max))/2));
  display:flex;
  justify-content:space-between;
  gap:30px;
  background:#07243c;
  color:#d7e3ec;
  font-size:14px;
}
.site-footer div{display:flex;gap:22px;flex-wrap:wrap}
.site-footer b{color:#fff}

/* LEGAL PAGES (Impressum/Datenschutz) */
.legal-page{padding:70px 0 100px}
.legal-container{max-width:760px}
.legal-container h1{margin:0 0 36px;color:var(--navy);font-size:clamp(34px,3.6vw,48px);line-height:1.1;letter-spacing:-.03em}
.legal-container h2{margin:40px 0 14px;color:var(--navy);font-size:22px;line-height:1.25}
.legal-container h2:first-of-type{margin-top:0}
.legal-container p{margin:0 0 16px;color:var(--muted);font-size:16px;line-height:1.7}
.legal-container a{color:var(--navy);font-weight:700;text-decoration:underline}
.legal-container a:hover{color:var(--navy-dark)}
@media(max-width:600px){
  .legal-page{padding:48px 0 64px}
  .legal-container h1{font-size:30px}
}

/* BETRIEBLICHE ERSTE HILFE – CTA statt eigenem Formular */
.lp-cta-form-link{display:flex;align-items:center;justify-content:center;min-height:160px}
@media(max-width:900px){.lp-cta-form-link{min-height:0;padding-top:8px}}

/* TABLET */
@media (max-width:1200px){
  .site-header{height:88px}
  .header-inner{width:min(calc(100% - 40px),var(--max));gap:20px}
  .brand{flex-basis:370px;min-width:260px}
  .brand img{width:360px;height:64px}
  .main-nav{gap:20px}
  .main-nav>a{font-size:15px}
  .main-nav .nav-cta{padding:14px 18px}
  .hero,.hero-inner{min-height:590px}
  .hero-copy{width:54%}
  .course-grid{grid-template-columns:repeat(3,1fr)}
  .course-card:nth-child(4),.course-card:nth-child(5){min-height:270px}
}

/* MOBILE NAV + LAYOUT */
@media (max-width:900px){
  .container,.hero-inner{width:min(calc(100% - 36px),var(--max))}
  .site-header{height:76px}
  .header-inner{width:calc(100% - 28px)}
  .brand{flex:1;min-width:0}
  .brand img{width:min(300px,72vw);height:58px}
  .menu-button{display:block}
  .main-nav{
    display:none;
    position:absolute;
    top:76px;
    left:0;
    right:0;
    margin:0;
    padding:18px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow:0 14px 30px rgba(9,42,70,.12);
  }
  .main-nav.open{display:flex}
  .main-nav>a{padding:14px 8px}
  .main-nav .nav-cta{text-align:center;margin-top:8px}
  .hero{
    min-height:720px;
    display:flex;
    align-items:flex-end;
  }
  .hero-image{
    height:47%;
    top:0;
    bottom:auto;
    object-position:62% 50%;
  }
  .hero-shade{
    background:linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.15) 31%,
      rgba(255,255,255,.98) 47%,
      #fff 58%
    );
  }
  .hero-inner{
    min-height:720px;
    align-items:flex-end;
  }
  .hero-copy{
    width:100%;
    padding:355px 0 48px;
  }
  .hero h1{font-size:clamp(43px,11vw,64px)}
  .hero .lead{font-size:19px;margin:24px 0 28px}
  .section{padding:68px 0}
  .section-heading{margin-bottom:30px}
  .heading-row{display:block}
  .heading-note{margin-top:16px}
  .audience-grid{grid-template-columns:1fr 1fr}
  .audience-card{min-height:145px;border-bottom:1px solid var(--line)}
  .audience-card:nth-child(2n){border-right:0}
  .audience-card:last-child{grid-column:1/-1}
  .date-grid{grid-template-columns:1fr}
  .date-card{min-height:0}
  .course-grid{grid-template-columns:1fr 1fr}
  .about-grid,.contact-grid{grid-template-columns:1fr;gap:42px}
  .about-image img{height:390px}
  .kursort-teaser{
    flex-direction:column;
  }
  .kursort-teaser-image{
    flex:none;
    max-width:100%;
    width:100%;
    height:170px;
  }
  .kursort-teaser-copy{
    padding:24px 24px 28px;
  }
}

@media (max-width:600px){
  .container,.hero-inner{width:calc(100% - 30px)}
  .brand img{width:min(245px,70vw);height:52px}
  .menu-button{font-size:14px}
  .hero{min-height:680px}
  .hero-inner{min-height:680px}
  .hero-image{height:43%;object-position:63% center}
  .hero-copy{padding:310px 0 40px}
  .eyebrow{font-size:11px;letter-spacing:.14em;margin-bottom:14px}
  .hero h1{font-size:42px}
  .hero .lead{font-size:17px}
  .button{width:100%;justify-content:space-between}
  .section-heading h2,.about-copy h2,.contact-section h2{font-size:34px}
  .audience-grid{grid-template-columns:1fr}
  .audience-card,.audience-card:nth-child(2n){border-right:0}
  .audience-card:last-child{grid-column:auto}
  .date-card{grid-template-columns:1fr}
  .date-card img{height:220px;min-height:0}
  .date-copy{padding:26px}
  .date-copy a{margin-top:20px}
  .course-grid{grid-template-columns:1fr}
  .course-card{min-height:235px}
  .course-card h3{margin-top:34px}
  .kursort-teaser-image{height:140px}
  .kursort-teaser-copy{padding:22px 20px 24px}
  .kursort-teaser-copy p{font-size:14px}
  .about-image img{height:300px}
  .facts{grid-template-columns:1fr}
  #contact-form{grid-template-columns:1fr}
  #contact-form textarea,#contact-form button{grid-column:auto}
  .site-footer{padding:25px 20px;flex-direction:column}
}

/* MASTER LANDINGPAGES */
.backlink{display:inline-block;margin-bottom:28px;color:var(--navy);font-size:13px;font-weight:800}
.lp-hero{position:relative;min-height:610px;overflow:hidden;background:#eef4f8}
.lp-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.lp-hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.99),rgba(255,255,255,.94) 35%,rgba(255,255,255,.35) 60%,transparent 78%)}
.lp-hero-inner{position:relative;z-index:2;min-height:610px;display:flex;align-items:center}
.lp-hero-copy{width:min(650px,50%)}
.lp-hero h1,.course-hero h1{margin:0;color:var(--navy);font-size:clamp(46px,4.3vw,70px);line-height:1.04;letter-spacing:-.045em}
.lp-hero-copy>p:not(.eyebrow){font-size:21px;line-height:1.55;margin:26px 0 30px}
.lp-intro-grid,.lp-place-grid,.course-content-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:90px;align-items:start}
.lp-intro h2,.lp-practice h2,.lp-place h2,.course-content-grid h2{margin:0;color:var(--navy);font-size:clamp(34px,3vw,52px);line-height:1.08;letter-spacing:-.035em}
.lp-copy p,.lp-practice p{color:var(--muted);font-size:18px;line-height:1.7;margin-top:0}
.lp-offers{background:var(--surface-soft)}
.lp-offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.lp-offer-grid article{min-height:360px;padding:32px;border-radius:18px;background:#fff;border:1px solid var(--line);display:flex;flex-direction:column}
.lp-offer-grid article>span{color:var(--blue);font-size:12px;font-weight:800;letter-spacing:.09em}
.lp-offer-grid h3{font-size:24px;line-height:1.18;color:var(--navy);margin:30px 0 14px}
.lp-offer-grid p{color:var(--muted);line-height:1.6;margin:0}
.lp-meta{margin-top:auto;padding-top:28px;display:flex;flex-direction:column;border-top:1px solid var(--line)}
.lp-meta b{color:var(--navy)}.lp-meta small{color:var(--muted);margin-top:3px}
.lp-offer-grid a{margin-top:22px;color:var(--navy);font-weight:800}
.lp-practice{background:#fff}
.lp-practice-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:75px;align-items:center}
.lp-practice-image{height:470px;border-radius:22px;overflow:hidden}
.lp-practice-image img{width:100%;height:100%;object-fit:cover}
.lp-practice ul{padding-left:20px;color:var(--navy);line-height:1.9}
.lp-trust{padding:0 0 88px;background:#fff}
.lp-trust-grid{display:grid;grid-template-columns:repeat(3,1fr);border-block:1px solid var(--line)}
.lp-trust-grid>div{padding:30px;text-align:center;border-right:1px solid var(--line)}
.lp-trust-grid>div:last-child{border:0}.lp-trust-grid strong,.lp-trust-grid span{display:block}.lp-trust-grid strong{font-size:20px;color:var(--navy)}.lp-trust-grid span{font-size:14px;color:var(--muted);margin-top:5px}
.lp-place{background:var(--blue-soft)}
.lp-place-options{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.lp-place-options article{padding:30px;border-radius:18px;background:#fff}.lp-place-options h3{margin-top:0;color:var(--navy);font-size:22px}.lp-place-options p{color:var(--muted);line-height:1.6}.lp-place-options a{font-weight:800;color:var(--navy)}
.lp-cta{padding:90px 0;background:var(--navy);color:#fff}
.lp-cta-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:90px}.lp-cta .eyebrow{color:#b9dff4}.lp-cta h2{font-size:clamp(36px,3vw,52px);line-height:1.08;margin:0 0 22px}.lp-cta p{color:#dce8f1;font-size:18px}.lp-cta-grid>div>a{display:block;width:max-content;margin-top:9px;font-weight:800}
.course-hero{padding:75px 0;background:var(--surface-soft)}
.course-hero-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:70px;align-items:center}.course-hero-grid>div>p:not(.eyebrow){font-size:20px;color:var(--muted);line-height:1.6;margin:25px 0 30px}.course-hero-grid>img{width:100%;height:470px;object-fit:cover;border-radius:22px}
.course-facts{background:var(--navy);color:#fff}.course-fact-grid{display:grid;grid-template-columns:repeat(4,1fr)}.course-fact-grid>div{padding:25px 20px;border-right:1px solid rgba(255,255,255,.18)}.course-fact-grid>div:last-child{border:0}.course-fact-grid small,.course-fact-grid strong{display:block}.course-fact-grid small{color:#b9d0e0}.course-fact-grid strong{margin-top:4px}
.topic-list{border-top:1px solid var(--line)}.topic-list>div{display:grid;grid-template-columns:.8fr 1.2fr;gap:30px;padding:21px 0;border-bottom:1px solid var(--line)}.topic-list b{color:var(--navy)}.topic-list span{color:var(--muted)}
@media(max-width:900px){.lp-hero-copy{width:70%}.lp-intro-grid,.lp-place-grid,.course-content-grid,.lp-practice-grid,.lp-cta-grid,.course-hero-grid{grid-template-columns:1fr;gap:38px}.lp-offer-grid{grid-template-columns:1fr}.lp-place-options{grid-template-columns:1fr 1fr}.course-fact-grid{grid-template-columns:1fr 1fr}.course-hero-grid>img{height:380px}}
@media(max-width:600px){.lp-hero{min-height:650px}.lp-hero>img{height:42%;object-position:center}.lp-hero-shade{background:linear-gradient(180deg,transparent 0%,rgba(255,255,255,.15) 30%,#fff 46%)}.lp-hero-inner{min-height:650px;align-items:flex-end}.lp-hero-copy{width:100%;padding:300px 0 45px}.lp-hero h1,.course-hero h1{font-size:42px}.lp-place-options,.lp-trust-grid,.course-fact-grid{grid-template-columns:1fr}.lp-trust-grid>div{border-right:0;border-bottom:1px solid var(--line)}.course-hero{padding:50px 0}.course-hero-grid>img{height:280px}.topic-list>div{grid-template-columns:1fr;gap:5px}}

/* BETRIEBE & BEHÖRDEN – konkrete Angebotsstruktur */
.lp-offer-grid-five{grid-template-columns:repeat(3,1fr)}
.lp-offer-grid-five article:nth-child(4),.lp-offer-grid-five article:nth-child(5){min-height:330px}
.lp-offer-grid-five .featured-offer{background:var(--navy);border-color:var(--navy)}
.lp-offer-grid-five .featured-offer span,.lp-offer-grid-five .featured-offer h3,.lp-offer-grid-five .featured-offer p,.lp-offer-grid-five .featured-offer a{color:#fff}
.legal-note{margin:22px 0 0;color:var(--muted);font-size:12px;line-height:1.5}
@media(max-width:900px){.lp-offer-grid-five{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.lp-offer-grid-five{grid-template-columns:1fr}}

/* WARMER AKZENTFARBE (Warmrot) */
.eyebrow{color:#A34A44!important;}
.audience-card .audience-icon{color:#A34A44!important;border-color:#E8CFCB!important;}
.audience-card:hover .audience-icon{background:#F8EEEE!important;}

/* =========================================================
   ZIELGRUPPEN – KOMPAKTE BILDKARTEN (Startseite)
   ========================================================= */
.audience-grid-visual{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  align-items:stretch;
  gap:14px;
}
.audience-card-visual{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:visible;
  border:1px solid #d9e3ec;
  border-radius:18px;
  background:#fff;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(9,50,83,.035);
}
.audience-card-visual .audience-image{
  width:100%;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:17px 17px 0 0;
  background:#eef4f8;
}
.audience-card-visual .audience-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.audience-card-visual .audience-icon{
  position:relative;
  z-index:3;
  width:68px;
  height:68px;
  margin:-34px auto 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #d8e3ed;
  border-radius:50%;
  background:#fff;
  box-shadow:0 5px 14px rgba(9,50,83,.10);
}
.audience-card-visual .audience-icon svg{
  width:38px;
  height:38px;
  fill:none;
  stroke:#0d4e87;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.audience-card-visual .audience-content{
  display:flex;
  flex:1;
  flex-direction:column;
  align-items:center;
  padding:0 18px 22px;
  text-align:center;
}
.audience-card-visual .audience-content h3{
  min-height:54px;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0b3558;
  font-size:20px;
  line-height:1.15;
  font-weight:800;
}
.audience-card-visual .audience-content p{
  margin:4px 0 18px;
  color:#394a59;
  font-size:15px;
  line-height:1.48;
}
.audience-card-visual .audience-link{
  margin-top:auto;
  padding-top:8px;
  color:#073e70;
  font-size:15px;
  line-height:1;
  font-weight:800;
  letter-spacing:.01em;
}
.audience-card-visual .audience-link b{
  display:inline-block;
  margin-left:5px;
  font-size:20px;
  transition:transform .18s ease;
}
.audience-card-visual:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(9,50,83,.08);
}
.audience-card-visual:hover .audience-link b{transform:translateX(3px)}
.audience-card-visual .badge{
  z-index:5;
  top:12px;
  right:12px;
}
.audience-custom{
  margin-top:26px;
}
.audience-custom strong{
  font-weight:800;
  color:#0b3558;
}
@media(max-width:1100px){
  .audience-grid-visual{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:650px){
  .audience-grid-visual{grid-template-columns:1fr}
  .audience-card-visual .audience-content h3{min-height:auto;margin-bottom:6px}
  .audience-card-visual .audience-content p{margin-bottom:14px}
}

/* =========================================================
   KURSANGEBOT (#kurse) – konsolidierte finale Fassung
   (ersetzt drei frühere, sich gegenseitig überschreibende
   Zwischenstände aus der Entwicklungshistorie; Werte 1:1
   aus dem zuvor gerenderten Endergebnis übernommen)
   ========================================================= */
#kurse{
  background:#f3f7fa;
  padding-top:62px;
  padding-bottom:62px;
}
#kurse .section-heading{
  margin-bottom:30px;
}
#kurse .section-heading h2{
  color:#0b3558;
}
#kurse .section-heading p{
  color:#5f7080;
}
#kurse .course-grid{
  align-items:stretch;
  gap:18px;
}
#kurse .course-card{
  position:relative;
  background:#fff;
  border:1px solid #cbdbe7;
  box-shadow:0 10px 28px rgba(11,53,88,.07);
  border-radius:20px;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height:0;
  height:300px;
  padding:24px 27px 23px;
}
#kurse .course-card:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 34px rgba(11,53,88,.12);
  border-color:#9fc1d9;
}
#kurse .course-number{
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  color:#0d67a5;
  margin-bottom:10px;
}
#kurse .course-icon{
  width:54px;height:54px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 0 16px;
  background:#f5f9fc;
  border:1px solid #c8dce9;
}
#kurse .course-icon svg{
  width:32px;height:32px;fill:none;stroke:#0d67a5;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}
#kurse .course-card h3{
  margin:0 0 10px;
  color:#0b3558;
  font-size:22px;
  line-height:1.12;
  font-weight:800;
}
#kurse .course-card p{
  color:#5e6f7f;
  margin:0;
  font-size:16px;
  line-height:1.45;
}
#kurse .course-link{
  margin-top:auto;
  padding-top:12px;
  color:#0969a8;
  font-weight:800;
  font-size:17px;
}
#kurse .course-link:hover{
  color:#0b3558;
}
#kurse .course-card.highlight{
  background:#0b4169;
  border-color:#0b4169;
  box-shadow:0 14px 32px rgba(11,65,105,.18);
}
#kurse .course-card.highlight .course-number,
#kurse .course-card.highlight h3,
#kurse .course-card.highlight p,
#kurse .course-card.highlight .course-link{
  color:#fff;
}
#kurse .course-card.highlight .course-number{
  opacity:.9;
}
#kurse .course-card.highlight p{
  opacity:.92;
}
#kurse .course-card.highlight .course-icon{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.4);
}
#kurse .course-card.highlight .course-icon svg{stroke:#fff}
@media(max-width:1100px){
  #kurse .course-card{height:320px}
}
@media(max-width:900px){
  #kurse .course-card{height:auto;min-height:285px}
}
@media(max-width:600px){
  #kurse{padding-top:46px;padding-bottom:48px}
  #kurse .course-card{
    height:auto;
    min-height:0;
    padding:22px;
    border-radius:17px;
  }
  #kurse .course-icon{width:50px;height:50px;margin-bottom:13px}
  #kurse .course-icon svg{width:29px;height:29px}
}

/* =========================================================
   TRAINING NACH UMFELD – 2x2 FADENKREUZ-PANEL (Startseite)
   ========================================================= */
.adaptation-redesign{
  padding:78px 3.2% 68px;
  background:#fff;
}
.adaptation-layout{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr);
  gap:72px;
  align-items:center;
}
.adaptation-copy{
  max-width:650px;
}
.adaptation-copy .eyebrow{
  margin-bottom:22px;
}
.adaptation-copy h2{
  margin:0 0 26px;
  color:#0b3f68;
  font-size:clamp(2.25rem,3.55vw,4rem);
  line-height:1.08;
  letter-spacing:-.035em;
}
.adaptation-copy > p:not(.eyebrow){
  margin:0 0 22px;
  color:#607286;
  font-size:clamp(1rem,1.35vw,1.22rem);
  line-height:1.65;
}

.adaptation-feature-panel{
  overflow:hidden;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border:1px solid #cfe0ec;
  border-radius:28px;
  background:#f4f9fd;
  box-shadow:0 12px 32px rgba(13,63,104,.07);
}
.adaptation-feature{
  min-height:190px;
  padding:30px 36px 28px;
}
.adaptation-feature:nth-child(odd){
  border-right:1px solid #cfe0ec;
}
.adaptation-feature:nth-child(-n+2){
  border-bottom:1px solid #cfe0ec;
}
.target-mark{
  position:relative;
  width:62px;
  height:62px;
  display:block;
  margin-bottom:20px;
  border-radius:50%;
  background:#e7f2fb;
}
.target-mark::before,
.target-mark::after{
  content:"";
  position:absolute;
  background:#0d6fb8;
}
.target-mark::before{
  left:12px; right:12px; top:30px; height:2px;
}
.target-mark::after{
  top:12px; bottom:12px; left:30px; width:2px;
}
.target-mark > span{
  position:absolute;
  left:17px; top:17px;
  width:28px; height:28px;
  border:2px solid #0d6fb8;
  border-radius:50%;
}
.target-mark > span::before{
  content:"";
  position:absolute;
  left:7px; top:7px;
  width:10px; height:10px;
  border:2px solid #0d6fb8;
  border-radius:50%;
  background:#f4f9fd;
}
.adaptation-feature h3{
  margin:0;
  color:#0b3f68;
  font-size:1.5rem;
  line-height:1.2;
}
.adaptation-feature i{
  display:block;
  width:34px;
  height:3px;
  margin:16px 0 20px;
  background:#A34A44;
}
.adaptation-feature p{
  margin:0;
  max-width:270px;
  color:#607286;
  font-size:1.03rem;
  line-height:1.55;
}

.adaptation-cta{
  max-width:1400px;
  margin:48px auto 0;
  padding:22px 28px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  border:1px solid #E8CFCB;
  border-radius:20px;
  background:#F8EEEE;
}
.target-mark-small{
  width:54px;
  height:54px;
  margin:0;
  background:#fff;
  box-shadow:0 6px 18px rgba(13,63,104,.07);
}
.target-mark-small::before{left:10px;right:10px;top:26px}
.target-mark-small::after{top:10px;bottom:10px;left:26px}
.target-mark-small > span{
  left:14px;top:14px;width:26px;height:26px;
}
.target-mark-small > span::before{
  left:7px;top:7px;width:8px;height:8px;background:#fff;
}
.adaptation-cta-copy h3{
  margin:0 0 4px;
  color:#0b3f68;
  font-size:1.35rem;
}
.adaptation-cta-copy p{
  margin:0;
  color:#607286;
}
.adaptation-cta .btn{
  white-space:nowrap;
}

@media(max-width:1000px){
  .adaptation-layout{
    grid-template-columns:1fr;
    gap:40px;
  }
  .adaptation-copy{
    max-width:800px;
  }
}
@media(max-width:700px){
  .adaptation-redesign{
    padding:52px 20px 48px;
  }
  .adaptation-feature-panel{
    grid-template-columns:1fr;
    border-radius:20px;
  }
  .adaptation-feature{
    min-height:0;
    padding:26px 24px;
    border-right:0 !important;
    border-bottom:1px solid #cfe0ec;
  }
  .adaptation-feature:last-child{
    border-bottom:0;
  }
  .target-mark{
    width:54px;height:54px;margin-bottom:16px;
  }
  .target-mark::before{left:10px;right:10px;top:26px}
  .target-mark::after{top:10px;bottom:10px;left:26px}
  .target-mark > span{left:14px;top:14px;width:26px;height:26px}
  .adaptation-cta{
    margin-top:30px;
    padding:20px;
    grid-template-columns:1fr;
  }
  .adaptation-cta .btn{
    grid-column:1;
    width:100%;
    justify-content:center;
  }
}

/* =========================================================
   LERNPROZESS / TIMELINE — aktuell ungenutzt (kein
   passendes HTML auf der Seite). Bewusst vollständig
   erhalten (inkl. beider Farb-Layer der Entwicklungs-
   historie) für einen späteren Einsatz.
   ========================================================= */
.timeline-method{
  padding-top:56px;
  padding-bottom:58px;
}
.timeline-layout{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:64px;
  align-items:start;
}
.timeline-heading{
  max-width:none;
  margin-bottom:0;
}
.timeline-heading h2{
  margin-bottom:14px;
}
.timeline-intro{
  margin:0;
  max-width:900px;
  color:#607286;
  font-size:clamp(1rem,1.35vw,1.2rem);
  line-height:1.6;
}

.learning-timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  padding-top:0;
}
.learning-timeline::before{
  content:"";
  position:absolute;
  left:12.5%;
  right:12.5%;
  top:26px;
  height:0;
  border-top:2px dashed #0b3558;
}
.learning-timeline::after{
  display:none;
}

.timeline-step{
  position:relative;
  min-width:0;
  padding:0 26px 0 24px;
}
.timeline-step:first-child{
  padding-left:10px;
}
.timeline-step:last-child{
  padding-right:10px;
}
.step-label{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:6px 14px;
  margin:0 0 28px 0;
  border-radius:4px;
  background:#0d6fb8;
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
}
.timeline-step-final .step-label{
  background:#0b3f68;
}
.timeline-dot{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  margin:0 auto 22px;
  border-radius:50%;
  background:#0b3558;
  color:#fff;
  font-size:1.05rem;
  font-weight:800;
  box-sizing:border-box;
}
.timeline-step-final .timeline-dot{
  background:#0d6fb8;
}
.step-copy{
  padding-right:0;
  text-align:center;
}
.step-copy h3{
  margin:0 0 14px;
  color:#0b3f68;
  font-size:clamp(1.15rem,1.55vw,1.5rem);
  line-height:1.18;
}
.step-copy h3::after{
  content:"";
  display:block;
  width:34px;
  height:2px;
  margin:15px auto 0;
  background:#0d6fb8;
}
.step-copy p{
  margin:0;
  color:#607286;
  line-height:1.55;
  font-size:.98rem;
}

.timeline-goal{
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:48px;
  padding:18px 24px;
  border:1px solid #c9deed;
  border-radius:12px;
  background:#f5faff;
}
.goal-mark{
  flex:0 0 46px;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid #d2e2ee;
  border-radius:50%;
  background:#fff;
  color:#0d6fb8;
  font-size:1.45rem;
  font-weight:800;
  box-shadow:0 6px 18px rgba(13,63,104,.08);
}
.goal-mark svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.timeline-goal p{
  margin:0;
  color:#607286;
  font-size:1.05rem;
}
.timeline-goal strong{
  color:#0b3f68;
}

@media (max-width: 800px){
  .timeline-method{
    padding-top:42px;
    padding-bottom:44px;
  }
  .timeline-layout{
    grid-template-columns:1fr;
    gap:36px;
  }
  .timeline-heading{
    margin-bottom:0;
  }
  .learning-timeline{
    display:block;
    padding-left:64px;
  }
  .learning-timeline::before{
    left:22px;
    right:auto;
    top:22px;
    bottom:22px;
    height:auto;
    border-top:0;
    border-left:2px dashed #0b3558;
  }
  .timeline-step,
  .timeline-step:first-child,
  .timeline-step:last-child{
    position:relative;
    padding:0 0 34px 0;
  }
  .timeline-step:last-child{
    padding-bottom:6px;
  }
  .step-label{
    margin-bottom:12px;
  }
  .timeline-dot{
    position:absolute;
    left:-64px;
    top:0;
    margin:0;
    width:44px;
    height:44px;
    font-size:.92rem;
  }
  .step-copy{
    text-align:left;
  }
  .step-copy h3{
    margin-bottom:10px;
  }
  .step-copy h3::after{
    margin:10px 0 0;
  }
  .step-copy p{
    max-width:32rem;
  }
  .timeline-goal{
    margin-top:30px;
    padding:16px;
    align-items:flex-start;
  }
  .goal-mark{
    flex-basis:40px;
    width:40px;
    height:40px;
  }
}

/* Warmrot-Farblayer für die Timeline (zwei Entwicklungsstände,
   unverändert erhalten – ohne aktives HTML nicht am Bildschirm
   verifizierbar, siehe Kommentar oben) */
.learning-timeline::before{background:var(--accent)!important}
.learning-timeline::after{
  border-top-color:var(--accent)!important;
  border-right-color:var(--accent)!important;
}
.step-label{
  background:#fff!important;color:var(--accent-dark)!important;
  border:1px solid #eadbc9;border-radius:999px!important;
}
.timeline-step-final .step-label{background:#fff!important;color:var(--accent-dark)!important}
.timeline-dot{border-color:var(--accent)!important}
.timeline-step-final .timeline-dot{background:var(--accent)!important}
.step-copy h3::after{background:var(--accent)!important}
.timeline-goal{
  border-color:#eadbc9!important;
  background:linear-gradient(90deg,var(--accent-soft),#f5faff 58%,#f5faff)!important;
}
.goal-mark{color:var(--accent-dark)!important;border-color:#eadbc9!important}

.learning-timeline::before{background:#A34A44!important;}
.learning-timeline::after{
  border-top-color:#A34A44!important;
  border-right-color:#A34A44!important;
}
.step-label{
  color:#873A36!important;
  border-color:#E8CFCB!important;
  background:#fff!important;
}
.timeline-dot{border-color:#A34A44!important;}
.timeline-step-final .timeline-dot{background:#A34A44!important;}
.step-copy h3::after{background:#A34A44!important;}
.timeline-goal{
  background:#f5faff!important;
  border-color:#c9deed!important;
}
.goal-mark{color:#0d6fb8!important;border-color:#d2e2ee!important;}

/* =========================================================
   ÜBER-UNS-BEREICH — aktuell ungenutzt (kein passendes
   HTML auf der Seite). Bewusst vollständig erhalten für
   den späteren inhaltlichen Ausbau dieses Bereichs.
   ========================================================= */
.about-complete{background:#fff;padding:88px 0 92px;scroll-margin-top:115px}
.about-top{display:grid;grid-template-columns:.95fr 1.05fr .95fr;gap:56px;align-items:start}
.about-photo{height:500px;border-radius:20px;overflow:hidden}
.about-photo img{width:100%;height:100%;object-fit:cover;display:block}
.about-intro h2,.about-method h2,.about-tailored h2{font-size:42px;line-height:1.08;color:#0b3558;margin:12px 0 24px}
.about-intro p{font-size:18px;line-height:1.65;color:#607080;margin:0 0 18px}
.about-intro .about-lead{font-size:20px;color:#40566a}
.about-intro .eyebrow{margin-bottom:0}
.about-intro .eyebrow::after{content:"";display:block;width:28px;height:2px;margin:14px 0 20px;background:var(--accent)}
.about-intro h2{margin-bottom:0}
.about-intro h2::after{content:"";display:block;width:28px;height:2px;margin:20px 0 24px;background:var(--accent)}
.about-points{display:flex;flex-direction:column}
.about-point{display:flex;gap:18px;padding:22px 0}
.about-point+.about-point{border-top:1px solid #d9e3ec}
.about-point:first-child{padding-top:2px}
.about-point-icon{flex:0 0 54px;width:54px;height:54px;border-radius:50%;border:1px solid #d8e3ed;background:#fff;display:flex;align-items:center;justify-content:center}
.about-point-icon svg{width:26px;height:26px;fill:none;stroke:#0d4e87;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.about-point h3{margin:0 0 6px;font-size:18px;line-height:1.25;color:#0b3558}
.about-point p{margin:0;font-size:15px;line-height:1.5;color:#607080}
.about-claim{margin-top:30px;padding-top:24px;border-top:2px solid #0d67a5;display:flex;flex-direction:column;gap:7px}
.about-claim strong{font-size:26px;line-height:1.2;color:#0b3558}
.about-claim span{font-size:15px;color:#607080}
.about-method{margin-top:72px}
.about-method-heading{max-width:650px;margin-bottom:30px}
.method-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid #d9e3ec;border-radius:18px;overflow:hidden}
.method-grid article{padding:28px 26px;min-height:205px}
.method-grid article+article{border-left:1px solid #d9e3ec}
.method-grid article>span{font-size:13px;font-weight:800;letter-spacing:.08em;color:#0d67a5}
.method-grid h3{font-size:21px;color:#0b3558;margin:26px 0 10px}
.method-grid p{font-size:15px;line-height:1.55;color:#607080;margin:0}
.about-tailored{display:grid;grid-template-columns:1.05fr .95fr;gap:72px;margin-top:74px;padding-top:66px;border-top:1px solid #d9e3ec;align-items:start}
.tailored-copy p:not(.eyebrow){font-size:18px;line-height:1.65;color:#607080}
.tailored-facts{display:grid;grid-template-columns:1fr 1fr;border-top:2px solid #0d67a5}
.tailored-facts article{padding:22px 18px 22px 0;border-bottom:1px solid #d9e3ec;display:flex;flex-direction:column;gap:7px}
.tailored-facts article:nth-child(even){padding-left:20px;border-left:1px solid #d9e3ec}
.tailored-facts strong{font-size:18px;color:#0b3558}
.tailored-facts span{font-size:15px;line-height:1.45;color:#607080}
.about-cta{margin-top:62px;padding:28px 32px;background:#f2f7fa;border-radius:18px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.about-cta strong{font-size:21px;color:#0b3558}
.about-cta p{margin:6px 0 0;color:#607080}
.about-cta .button{white-space:nowrap}
@media(max-width:900px){
 .about-complete{padding:58px 0 64px;scroll-margin-top:78px}
 .about-top,.about-tailored{grid-template-columns:1fr;gap:32px}
 .about-photo{height:380px}
 .about-intro h2,.about-method h2,.about-tailored h2{font-size:34px}
 .method-grid{grid-template-columns:1fr 1fr}
 .method-grid article:nth-child(3){border-left:0;border-top:1px solid #d9e3ec}
 .method-grid article:nth-child(4){border-top:1px solid #d9e3ec}
 .about-tailored{margin-top:52px;padding-top:48px}
}
@media(max-width:600px){
 .about-complete{padding-top:46px}
 .about-photo{height:300px;border-radius:16px}
 .about-intro h2,.about-method h2,.about-tailored h2{font-size:31px}
 .about-intro .about-lead,.about-intro p,.tailored-copy p:not(.eyebrow){font-size:16px}
 .about-claim strong{font-size:23px}
 .about-method{margin-top:46px}
 .method-grid{grid-template-columns:1fr}
 .method-grid article{min-height:0;padding:23px}
 .method-grid article+article{border-left:0;border-top:1px solid #d9e3ec}
 .method-grid h3{margin:13px 0 7px}
 .tailored-facts{grid-template-columns:1fr}
 .tailored-facts article:nth-child(even){padding-left:0;border-left:0}
 .about-cta{margin-top:42px;padding:24px;flex-direction:column;align-items:flex-start}
}
