/* =========================================================
   INQA-Coaching Handwerk — CogniCore brand world
   Builds on cc-tokens.css
   ========================================================= */

* { box-sizing: border-box; }
body { margin: 0; background: var(--cc-bg); color: var(--cc-fg-1); }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--cc-r-md);
  font-family: var(--cc-font-display); font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background var(--cc-dur-fast) var(--cc-ease-out),
              border-color var(--cc-dur-fast) var(--cc-ease-out),
              transform var(--cc-dur-fast) var(--cc-ease-out);
}
.btn:active { transform: translateY(1px); }
/* halte die Button-Schrift weiß, auch gegen die globale a:hover-Regel des Design-Systems */
.btn--primary, .btn--accent, .btn--ghost-light,
.btn--primary:hover, .btn--accent:hover, .btn--ghost-light:hover { color: #fff; }
.btn--primary { background: var(--cc-blue); }
.btn--primary:hover { background: var(--cc-blue-700); }
.btn--accent { background: var(--cc-orange); }
.btn--accent:hover { background: var(--cc-orange-600); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn .ico { width: 18px; height: 18px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: var(--cc-fs-meta); letter-spacing: var(--cc-tracking-eyebrow);
  text-transform: uppercase; font-weight: var(--cc-w-semi); color: var(--cc-orange);
  margin: 0 0 12px; display: block;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(244,246,250,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cc-line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1180px; margin: 0 auto; }
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand img.logo { height: 30px; }
.nav__brand .sep { width: 1px; height: 26px; background: var(--cc-line-strong); }
.nav__brand img.inqa { height: 30px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--cc-blue); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; opacity: .06; }
.hero__bg img { position: absolute; right: -180px; bottom: -220px; width: 760px; max-width: none; }
.hero__inner {
  position: relative; max-width: 1180px; margin: 0 auto; padding: 84px 24px 92px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center;
}
.hero h1 { color: #fff; font-size: 60px; line-height: 1.04; letter-spacing: -.022em; font-weight: 700; margin: 0 0 20px; }
.hero h1 em { font-style: normal; color: var(--cc-orange); }
.hero__lede { font-size: 19px; line-height: 1.55; color: var(--cc-fg-on-blue-2); max-width: 560px; margin: 0 0 30px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero carousel panel */
.hero__panel { background: #fff; border-radius: var(--cc-r-lg); box-shadow: var(--cc-shadow-3); padding: 16px; }
.carousel { position: relative; user-select: none; }
.carousel__track { overflow: hidden; border-radius: var(--cc-r-md); }
.carousel__track img { width: 100%; display: none; }
.carousel__track img.active { display: block; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px;
  border-radius: 999px; background: #fff; border: 1px solid var(--cc-line); cursor: pointer;
  box-shadow: var(--cc-shadow-2); display: flex; align-items: center; justify-content: center;
  color: var(--cc-blue); z-index: 5; transition: border-color var(--cc-dur-fast);
}
.carousel__btn:hover { border-color: var(--cc-blue); }
.carousel__btn .ico { width: 20px; height: 20px; }
.carousel__prev { left: -14px; } .carousel__next { right: -14px; }
.carousel__dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.carousel__dots span { width: 8px; height: 8px; border-radius: 999px; background: var(--cc-line-strong); cursor: pointer; transition: background var(--cc-dur-fast); }
.carousel__dots span.active { background: var(--cc-orange); }

/* ---------- Section ---------- */
.section { padding: 88px 0; }
.section--surface { background: var(--cc-bg); }
.section--white { background: var(--cc-surface); }
.section__head { max-width: 760px; margin: 0 0 44px; }
.section__head h2 { font-size: 40px; line-height: 1.1; letter-spacing: -.018em; font-weight: 700; color: var(--cc-blue); margin: 0 0 12px; }
.section__head p { color: var(--cc-fg-2); font-size: 17px; line-height: 1.55; margin: 0; }
.rule { height: 1px; background: var(--cc-line); border: 0; margin: 0 0 44px; max-width: 760px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--cc-line); border-radius: var(--cc-r-lg);
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--cc-dur-base) var(--cc-ease-out), transform var(--cc-dur-base) var(--cc-ease-out);
}
.card:hover { box-shadow: var(--cc-shadow-2); transform: translateY(-2px); }
.card__ico { width: 44px; height: 44px; border-radius: var(--cc-r-md); background: var(--cc-blue); color: #fff; display: flex; align-items: center; justify-content: center; }
.card__ico .ico { width: 22px; height: 22px; }
.card h3 { margin: 4px 0 0; font-size: 20px; font-weight: 700; color: var(--cc-blue); }
.card p { color: var(--cc-fg-2); margin: 0; font-size: 15px; line-height: 1.55; }

/* ---------- Funding stats band (navy) ---------- */
.stats { background: var(--cc-blue); color: #fff; position: relative; overflow: hidden; }
.stats__bg { position: absolute; inset: 0; opacity: .07; pointer-events: none; }
.stats__bg img { position: absolute; right: -140px; top: -160px; width: 540px; max-width: none; }
.stats__inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 80px 24px; }
.stats__head { max-width: 740px; margin-bottom: 40px; }
.stats__head h2 { color: #fff; font-size: 36px; line-height: 1.12; letter-spacing: -.015em; font-weight: 700; margin: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); padding-top: 28px; gap: 0; }
.stat { padding: 0 28px; border-right: 1px solid rgba(255,255,255,.18); }
.stat:first-child { padding-left: 0; } .stat:last-child { border-right: none; padding-right: 0; }
.stat__num { font-family: var(--cc-font-display); font-weight: 700; font-size: 68px; line-height: .95; letter-spacing: -.025em; color: #fff; }
.stat__num em { font-style: normal; font-size: 32px; color: var(--cc-orange); vertical-align: super; }
.stat__num .accent { color: var(--cc-orange); }
.stat__label { font-family: var(--cc-font-display); font-weight: 600; font-size: 14px; color: var(--cc-fg-on-blue-2); margin-top: 10px; line-height: 1.4; }

/* ---------- Process strip ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; padding-top: 8px; }
.process__line { position: absolute; left: 30px; right: 30px; top: 30px; height: 2px; background: linear-gradient(90deg, var(--cc-blue) 0%, var(--cc-orange) 70%, var(--cc-line-strong) 100%); z-index: 0; }
.process__step { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.process__dot { width: 60px; height: 60px; border-radius: 999px; background: #fff; border: 2px solid var(--cc-blue); display: flex; align-items: center; justify-content: center; font-family: var(--cc-font-display); font-weight: 700; font-size: 20px; color: var(--cc-blue); }
.process__step.is-active .process__dot { background: var(--cc-orange); border-color: var(--cc-orange); color: #fff; }
.process__days { font-family: var(--cc-font-display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--cc-fg-3); }
.process__step h3 { margin: 0; font-size: 18px; color: var(--cc-blue); font-weight: 700; }
.process__step p { margin: 0; color: var(--cc-fg-2); font-size: 14px; line-height: 1.5; }

/* ---------- About (beige) ---------- */
.section--beige { background: var(--cc-beige); }
.about { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.about__card { background: var(--cc-blue); color: #fff; border-radius: var(--cc-r-lg); padding: 28px; }
.about__avatar { width: 64px; height: 64px; border-radius: 999px; background: var(--cc-orange); color: #fff; font-family: var(--cc-font-display); font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about__card h3 { color: #fff; font-size: 19px; margin: 0 0 4px; }
.about__card .role { color: var(--cc-fg-on-blue-2); font-size: 14px; margin: 0 0 4px; }
.about__card .org { color: #6B7FA8; font-size: 13px; margin: 8px 0 0; }
.about__card .id { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); font-size: 12px; letter-spacing: .06em; color: #6B7FA8; }
.about__text h2 { font-size: 34px; line-height: 1.12; letter-spacing: -.015em; color: var(--cc-blue); margin: 0 0 16px; }
.about__text p { color: var(--cc-fg-2); font-size: 16px; line-height: 1.6; margin: 0 0 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; font-family: var(--cc-font-display); background: #EEF1F7; color: var(--cc-blue); }
.tag--navy { background: var(--cc-blue); color: #fff; }

/* ---------- CTA band ---------- */
.cta { background: var(--cc-blue); color: #fff; position: relative; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; opacity: .06; pointer-events: none; }
.cta__bg img { position: absolute; right: -120px; bottom: -160px; width: 480px; max-width: none; }
.cta__inner { position: relative; max-width: 760px; margin: 0 auto; padding: 84px 24px; text-align: center; }
.cta h2 { color: #fff; font-size: 40px; line-height: 1.1; letter-spacing: -.018em; font-weight: 700; margin: 0 0 14px; }
.cta h2 em { font-style: normal; color: var(--cc-orange); }
.cta p { color: var(--cc-fg-on-blue-2); font-size: 17px; line-height: 1.55; margin: 0 auto 30px; max-width: 540px; }

/* ---------- Footer ---------- */
.foot { background: var(--cc-blue-deep); color: var(--cc-fg-on-blue-2); padding: 56px 0 26px; }
.foot__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.foot__brand img { height: 32px; margin-bottom: 16px; }
.foot__brand p { color: #6B7FA8; font-size: 14px; max-width: 340px; line-height: 1.55; margin: 0; }
.foot__logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.foot__chip { background: #fff; border-radius: var(--cc-r-md); padding: 12px 16px; display: flex; align-items: center; }
.foot__chip img { height: 40px; width: auto; display: block; }
.foot__chip--bmas img { height: 46px; }
.foot__legal { max-width: 1180px; margin: 36px auto 0; padding: 18px 24px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: #6B7FA8; }
.foot__legal a { color: var(--cc-fg-on-blue-2); text-decoration: none; border: 0; }
.foot__legal a:hover { color: var(--cc-orange); }
.foot__legal .cookie-link { background: none; border: 0; padding: 0; font: inherit; color: var(--cc-fg-on-blue-2); cursor: pointer; }
.foot__legal .cookie-link:hover { color: var(--cc-orange); }
.foot__legal .sub { font-size: 11px; opacity: .8; max-width: 620px; }

/* ---------- Hero fact panel ---------- */
.factpanel { background: #fff; border-radius: var(--cc-r-lg); box-shadow: var(--cc-shadow-3); padding: 28px; display: flex; flex-direction: column; gap: 6px; }
.factpanel__title { font-family: var(--cc-font-display); font-weight: 700; font-size: 18px; color: var(--cc-blue); margin: 0 0 8px; }
.factpanel__list { list-style: none; padding: 0; margin: 0; }
.factpanel__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-top: 1px solid var(--cc-line); }
.factpanel__list li:first-child { border-top: 0; }
.factpanel__list .label { font-family: var(--cc-font-display); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--cc-fg-3); }
.factpanel__list .value { font-family: var(--cc-font-display); font-weight: 700; font-size: 18px; color: var(--cc-fg-1); text-align: right; }
.factpanel__list .value .accent { color: var(--cc-orange); }
.factpanel__link { margin-top: 10px; font-family: var(--cc-font-display); font-weight: 700; font-size: 14px; color: var(--cc-orange); text-decoration: none; border: 0; display: inline-flex; align-items: center; gap: 6px; }
.factpanel__link:hover { color: var(--cc-orange-600); }

/* ---------- Pillar credential badge ---------- */
.pillar__cred { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; padding: 5px 11px; border-radius: 999px; background: #EEF1F7; color: var(--cc-fg-2); font-family: var(--cc-font-display); font-weight: 600; font-size: 11px; letter-spacing: .03em; }
.pillar__cred .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--cc-orange); }

/* ---------- Gestaltungsfeld pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar { background: #fff; border: 1px solid var(--cc-line); border-radius: var(--cc-r-lg); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.pillar__badge { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding: 6px 12px; border-radius: 999px; background: var(--cc-blue); color: #fff; font-family: var(--cc-font-display); font-weight: 600; font-size: 12px; letter-spacing: .04em; }
.pillar__badge .num { color: var(--cc-orange); }
.pillar h3 { margin: 4px 0 0; font-size: 23px; font-weight: 700; color: var(--cc-blue); line-height: 1.2; }
.pillar > p { color: var(--cc-fg-2); font-size: 15px; line-height: 1.55; margin: 0; }
.pillar ul { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 12px; }
.pillar li { display: flex; gap: 12px; align-items: flex-start; color: var(--cc-fg-2); font-size: 15px; line-height: 1.5; }
.pillar li .ico { flex-shrink: 0; width: 20px; height: 20px; color: var(--cc-orange); margin-top: 1px; }
.pillar li b { color: var(--cc-fg-1); font-weight: 600; }

/* ---------- Problem → Ansatz ---------- */
.solve { border: 1px solid var(--cc-line); border-radius: var(--cc-r-lg); overflow: hidden; background: #fff; }
.solve__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--cc-line); }
.solve__row:first-child { border-top: 0; }
.solve__problem, .solve__fix { padding: 20px 24px; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.solve__problem { color: var(--cc-fg-2); background: var(--cc-surface-2); }
.solve__fix { color: var(--cc-fg-1); font-weight: 600; }
.solve__problem .ico { flex-shrink: 0; width: 19px; height: 19px; color: var(--cc-fg-3); margin-top: 1px; }
.solve__fix .ico { flex-shrink: 0; width: 19px; height: 19px; color: var(--cc-orange); margin-top: 1px; }
.solve__head { display: grid; grid-template-columns: 1fr 1fr; }
.solve__head span { padding: 12px 24px; font-family: var(--cc-font-display); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--cc-fg-3); background: var(--cc-blue); color: #fff; }
.solve__head span:first-child { background: var(--cc-blue-700); }

/* ---------- Result cards ---------- */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.result { background: #fff; border: 1px solid var(--cc-line); border-radius: var(--cc-r-md); padding: 22px; display: flex; gap: 12px; align-items: flex-start; }
.result .ico { flex-shrink: 0; width: 22px; height: 22px; color: var(--cc-green); margin-top: 1px; }
.result p { margin: 0; color: var(--cc-fg-1); font-size: 15px; line-height: 1.45; font-weight: 600; }

/* ---------- Why CogniCore lead-in ---------- */
.why { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.why__text p { color: var(--cc-fg-2); font-size: 16px; line-height: 1.65; margin: 0 0 14px; }
.why__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.why__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--cc-fg-1); font-size: 15px; font-weight: 600; line-height: 1.45; }
.why__list .ico { flex-shrink: 0; width: 20px; height: 20px; color: var(--cc-orange); margin-top: 1px; }

/* ---------- Eligibility check ---------- */
.eligible { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.eligible__head h2 { font-size: 34px; line-height: 1.12; letter-spacing: -.015em; color: var(--cc-blue); margin: 0 0 14px; }
.eligible__head p { color: var(--cc-fg-2); font-size: 16px; line-height: 1.6; margin: 0 0 20px; }
.eligible__note { font-size: 13px; color: var(--cc-fg-3); line-height: 1.5; }
.checklist { background: #fff; border: 1px solid var(--cc-line); border-radius: var(--cc-r-lg); padding: 28px; display: flex; flex-direction: column; gap: 0; }
.checklist li { list-style: none; display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--cc-line); }
.checklist li:first-child { border-top: 0; padding-top: 0; }
.checklist li:last-child { padding-bottom: 0; }
.checklist .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px; background: var(--cc-green); color: #fff; display: flex; align-items: center; justify-content: center; }
.checklist .tick .ico { width: 16px; height: 16px; }
.checklist b { color: var(--cc-fg-1); font-weight: 600; font-size: 15px; }
.checklist span { display: block; color: var(--cc-fg-3); font-size: 13px; margin-top: 2px; }

/* ---------- Coach with photo ---------- */
.about__media { display: flex; flex-direction: column; gap: 16px; }
.about__photo { width: 100%; border-radius: var(--cc-r-lg); display: block; box-shadow: var(--cc-shadow-2); }
.about__id { background: var(--cc-blue); color: #fff; border-radius: var(--cc-r-md); padding: 16px 18px; font-family: var(--cc-font-display); }
.about__id b { display: block; font-size: 15px; font-weight: 700; }
.about__id span { font-size: 12px; color: var(--cc-fg-on-blue-2); letter-spacing: .04em; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq__item { border-top: 1px solid var(--cc-line); }
.faq__item:last-child { border-bottom: 1px solid var(--cc-line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--cc-font-display); font-weight: 700; font-size: 18px; color: var(--cc-blue); }
.faq__q .ico { flex-shrink: 0; width: 22px; height: 22px; color: var(--cc-orange); transition: transform var(--cc-dur-base) var(--cc-ease-out); }
.faq__item.open .faq__q .ico { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--cc-dur-slow) var(--cc-ease-in-out); }
.faq__a p { color: var(--cc-fg-2); font-size: 15px; line-height: 1.65; margin: 0 0 22px; max-width: 70ch; }
.faq__item.open .faq__a { max-height: 320px; }

/* ---------- Phone CTA helper ---------- */
.cta__phone { margin-top: 18px; font-family: var(--cc-font-display); color: var(--cc-fg-on-blue-2); font-size: 15px; }
.cta__phone a { color: #fff; font-weight: 700; border: 0; text-decoration: none; }
.cta__phone a:hover { color: var(--cc-orange); }
.hero__phone { margin-top: 16px; font-family: var(--cc-font-display); font-size: 14px; color: var(--cc-fg-on-blue-2); }
.hero__phone a { color: #fff; font-weight: 700; border: 0; text-decoration: none; }
.hero__phone a:hover { color: var(--cc-orange); }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 64px 24px 84px; }
.legal h1 { font-size: 40px; line-height: 1.1; letter-spacing: -.018em; color: var(--cc-blue); margin: 0 0 10px; }
.legal__intro { color: var(--cc-fg-2); font-size: 16px; line-height: 1.6; margin: 0 0 8px; }
.legal h2 { font-size: 20px; font-weight: 700; color: var(--cc-blue); margin: 32px 0 10px; }
.legal p, .legal li { color: var(--cc-fg-2); font-size: 15px; line-height: 1.7; margin: 0 0 10px; }
.legal ul { padding-left: 20px; margin: 0 0 10px; }
.legal a { color: var(--cc-blue-500); }
.legal a:hover { color: var(--cc-orange); }
.legal .meta { background: #fff; border: 1px solid var(--cc-line); border-left: 4px solid var(--cc-orange); border-radius: var(--cc-r-md); padding: 22px 24px; margin-bottom: 8px; }
.legal .meta p { color: var(--cc-fg-1); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--cc-font-display); font-weight: 600; font-size: 14px; color: var(--cc-fg-2); text-decoration: none; }
.legal__back:hover { color: var(--cc-blue); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr; gap: 24px; }
  .stat { border-right: 0; padding: 0 0 24px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .process { grid-template-columns: 1fr; }
  .process__line { display: none; }
  .about { grid-template-columns: 1fr; gap: 28px; }
  .foot__inner { grid-template-columns: 1fr; gap: 32px; }
  .pillars { grid-template-columns: 1fr; }
  .eligible { grid-template-columns: 1fr; gap: 28px; }
  .results { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 28px; }
  .solve__row, .solve__head { grid-template-columns: 1fr; }
  .solve__head span:first-child { display: none; }
  .solve__problem { border-bottom: 1px solid var(--cc-line); }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 36px; }
  .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .carousel__prev { left: 4px; } .carousel__next { right: 4px; }
}
