:root {
  --blue: #0083c3;
  --pink: #e74378;
  --navy: #0f172a;
  --text: #475569;
  --muted: #64748b;
  --bg: #f8fafc;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --green: #22c55e;
}

.topbar .mark {
  background: linear-gradient(135deg, var(--blue), #0f172a);
}

.hero {
  background: #fff;
}

.hero--showcase {
  min-height: auto;
  padding: 64px 0 56px;
  text-align: left;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(0, 131, 195, 0.08), transparent 65%),
    radial-gradient(ellipse 50% 60% at 100% 40%, rgba(231, 67, 120, 0.05), transparent 70%),
    #fff;
}

.hero--showcase .container {
  width: min(100%, 1320px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.hero-intro {
  max-width: none;
  margin: 0;
  text-align: left;
}

.hero h1,
.hero-intro h1 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  color: var(--navy);
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--blue);
  max-width: 520px;
}

.hero-lead {
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

.hero-checks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.hero-checks li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.hero-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.btn-hero {
  padding: 16px 28px;
  font-size: 16px;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-showcase__img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 32px 64px rgba(15, 23, 42, 0.14));
}

.hero-cta {
  display: inline-flex;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 14px 32px rgba(0, 131, 195, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-cta:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.stats-bar {
  padding: 0 0 48px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.stat-card__value {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 6px;
}

.stat-card__label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  line-height: 1.35;
}

.occasions-bar {
  padding: 8px 0 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.occasions-inner {
  text-align: center;
}

.occasions-bar__rule {
  height: 1px;
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.occasions-bar__label {
  margin: 22px auto 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.occasion-tiles {
  list-style: none;
  margin: 0 auto 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  max-width: 980px;
}

.occasion-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.occasion-tile__icon {
  font-size: 26px;
  line-height: 1;
}

.occasion-tile__text {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  text-align: center;
}

.choices-section {
  padding: 72px 0 80px;
  background:
    linear-gradient(180deg, #fff 0%, var(--bg) 12%, var(--bg) 88%, #fff 100%);
}

.choices-section__head {
  margin-bottom: 36px;
}

.choices-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.choice-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.choice-panel {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  color: inherit;
  cursor: pointer;
}

.choice-panel:hover {
  opacity: 1;
}

.choice-panel:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.choice-panel--private {
  border-color: rgba(231, 67, 120, 0.22);
  box-shadow: 0 24px 60px rgba(231, 67, 120, 0.12);
}

.choice-panel--business {
  border-color: rgba(0, 131, 195, 0.22);
  box-shadow: 0 24px 60px rgba(0, 131, 195, 0.12);
}

.choice-panel--private:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 67, 120, 0.45);
  box-shadow: 0 32px 70px rgba(231, 67, 120, 0.2);
}

.choice-panel--business:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 131, 195, 0.45);
  box-shadow: 0 32px 70px rgba(0, 131, 195, 0.2);
}

.choice-panel__visual {
  position: relative;
  background: #fff;
}

.choice-panel__visual--product {
  padding: 0;
  min-height: 0;
  flex: 0 0 auto;
  background: #f8fafc;
}

.choice-panel__badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  max-width: calc(100% - 40px);
  line-height: 1.3;
}

.choice-panel__visual img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.choice-panel--private .choice-panel__visual img {
  object-position: center 20%;
}

.choice-panel__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.choice-panel--private .choice-panel__body {
  background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
}

.choice-panel--business .choice-panel__body {
  background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
}

.choice-panel__tag {
  display: inline-flex;
  width: max-content;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.choice-panel--private .choice-panel__tag {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(231, 67, 120, 0.25);
}

.choice-panel--business .choice-panel__tag {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 131, 195, 0.25);
}

.choice-panel h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--navy);
}

.choice-panel__intro {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.choice-panel__intro + .choice-panel__intro {
  margin-top: -8px;
}

.choice-panel__intro strong {
  color: var(--navy);
}

.choice-panel__checks {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.choice-panel__checks li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.4;
}

.choice-panel--private .choice-panel__checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.choice-panel--business .choice-panel__checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.choice-panel__note {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.choice-panel__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.choice-panel:hover .choice-panel__cta,
.choice-panel__cta:hover {
  transform: translateY(-2px);
}

.choice-panel__cta--private {
  background: var(--pink);
  box-shadow: 0 14px 32px rgba(231, 67, 120, 0.32);
}

.choice-panel--private:hover .choice-panel__cta--private {
  box-shadow: 0 18px 40px rgba(231, 67, 120, 0.4);
}

.choice-panel__cta--business {
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(0, 131, 195, 0.32);
}

.choice-panel--business:hover .choice-panel__cta--business {
  box-shadow: 0 18px 40px rgba(0, 131, 195, 0.4);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  color: var(--navy);
}

.section-head p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.home-section {
  padding: 72px 0;
}

.home-why {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.why-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-benefit {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.why-benefit--featured {
  border-color: rgba(231, 67, 120, 0.35);
  box-shadow: 0 16px 40px rgba(231, 67, 120, 0.12);
}

.why-benefit--featured:hover {
  border-color: rgba(231, 67, 120, 0.5);
  box-shadow: 0 22px 48px rgba(231, 67, 120, 0.18);
}

.why-benefit__media {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.why-benefit__media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.why-benefit--featured .why-benefit__media img {
  height: 220px;
}

.why-benefit__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(231, 67, 120, 0.35);
}

.why-benefit__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.why-benefit__title {
  display: block;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why-benefit__icon {
  margin-right: 4px;
}

.why-benefit__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.home-reviews {
  background: #fff;
}

.reviews-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid #e2e8f0;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
}

.reviews-google__icon {
  flex-shrink: 0;
}

.review-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #e2e8f0;
}

.review-card__stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card__text {
  margin: 0 0 16px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 700;
  font-style: normal;
}

.review-card__author {
  display: block;
  font-style: normal;
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}

.reviews-trust {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

.reviews-trust__item {
  background: #fff;
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.reviews-trust__item strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--blue);
  margin-bottom: 6px;
}

.reviews-trust__item span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.home-gallery {
  background: #f8fafc;
}

.home-trust-local {
  background: #fff;
  padding: 56px 0;
}

.home-trust-local .section-head {
  margin-bottom: 0;
}

.home-trust-local .section-head p {
  max-width: 720px;
}

.reference-cases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.reference-cases .gallery-item figure,
.gallery-item figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-soft);
}

.reference-cases .gallery-item img,
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.reference-cases .gallery-item figcaption,
.gallery-item figcaption {
  padding: 20px;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--navy);
  text-align: center;
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-faq {
  background: #f8fafc;
}

.home-local {
  background: #fff;
}

.home-links--subtle {
  padding: 48px 0;
  background: var(--bg);
}

.home-links--subtle .seo-link-groups {
  margin-top: 0;
}

.gallery-cases-label {
  text-align: center;
  font-weight: 800;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

.reference-cases--compact {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 920px;
  margin-bottom: 0;
}

.reference-case {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.reference-case__icon {
  font-size: 28px;
  line-height: 1;
}

.reference-case__label {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}

.reference-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.reference-logos--top {
  margin-top: 0;
  margin-bottom: 28px;
}

.reference-cases + .reference-logos,
.reference-logos + .gallery-cases-label {
  margin-top: 0;
}

.gallery-cases-label + .reference-cases {
  margin-top: 0;
}

.reference-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 72px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.reference-logo img {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-links {
  background: #fff;
}

.seo-link-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.seo-link-group {
  background: var(--bg);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
}

.seo-link-group h3 {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--navy);
}

.seo-link-group__heading {
  color: inherit;
  text-decoration: none;
}

.seo-link-group__heading:hover {
  color: var(--blue);
  text-decoration: underline;
}

.seo-link-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.seo-link-group a {
  font-weight: 800;
  color: var(--blue);
  font-size: 15px;
}

.seo-link-group a:hover {
  text-decoration: underline;
  opacity: 1;
}

.home-local {
  background: var(--bg);
}

.local-cities {
  list-style: none;
  margin: 0 auto 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
}

.local-cities li {
  padding: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-weight: 800;
  font-size: 15px;
}

.local-cities__link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--navy);
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.local-cities__link:hover {
  color: var(--blue);
  border-color: #bfdbfe;
  box-shadow: 0 8px 20px rgba(0, 131, 195, 0.12);
  opacity: 1;
}

.local-note {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.local-more {
  text-align: center;
  margin: 0;
  font-weight: 900;
}

.local-more a {
  color: var(--blue);
}

.home-faq {
  background: #fff;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px 28px;
}

.faq-item h3,
.faq-item__question {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

.card h3,
.card__title,
.benefit-card h3,
.benefit-card .card__title,
.region-card h3,
.region-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.standort-group__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  padding: 0 0 88px;
}

.final-cta__inner {
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #004b70);
  color: #fff;
  border-radius: 32px;
  padding: 52px 40px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.final-cta p {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta__btn {
  display: inline-flex;
  padding: 16px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  font-size: 17px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.final-cta__btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  section {
    padding: 64px 0;
  }

  .home-section,
  .choices-section {
    padding: 64px 0;
  }

  .hero--showcase {
    padding: 64px 0 56px;
    text-align: center;
  }

  .hero--showcase .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-intro {
    text-align: center;
  }

  .hero h1,
  .hero-intro h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-kicker,
  .hero-lead,
  .hero-checks {
    margin-inline: auto;
  }

  .hero-checks {
    text-align: left;
    max-width: 360px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero-showcase__img {
    max-width: 100%;
  }

  .choice-panels,
  .reference-cases,
  .gallery-grid,
  .seo-link-groups {
    grid-template-columns: 1fr;
  }

  .choice-panel__visual img,
  .gallery-item img,
  .reference-cases .gallery-item img {
    height: auto;
    min-height: 240px;
    max-height: 360px;
  }

  .why-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-benefit__media img,
  .why-benefit--featured .why-benefit__media img {
    height: 180px;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .choice-panel__body {
    padding: 28px 24px 32px;
  }

  .final-cta__inner {
    padding: 40px 24px;
  }
}

@media (max-width: 520px) {
  .why-benefits,
  .reference-cases,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
