.company-page {
  --company-pink: #c84090;
  --company-pink-dark: #9d256d;
  color: var(--ink);
  font-family: var(--font-body);
  background: #f6eef6;
}

.company-page h1,
.company-page h2,
.company-page .company-hero-title {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: 0;
}

.company-page h3,
.company-page .button,
.company-page .nav-shell,
.company-page .overline {
  font-family: var(--font-body);
  letter-spacing: 0;
}

.company-page p,
.company-page li,
.company-page label,
.company-page input,
.company-page select,
.company-page textarea,
.company-page button {
  letter-spacing: 0;
}

.company-page .overline {
  margin: 0 0 16px;
  color: var(--company-pink-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-site-header .nav-shell {
  background: rgba(228, 180, 211, 0.72);
  border: 1px solid rgba(36, 0, 80, 0.08);
}

.company-site-header .nav-logo {
  display: block;
  flex: 0 0 auto;
}

.company-nav-logo img {
  display: block;
  width: 108px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(13%) sepia(44%) saturate(4908%) hue-rotate(266deg) brightness(69%) contrast(123%);
}

.company-site-header .nav-links {
  justify-content: flex-end;
  gap: 22px;
  width: auto;
  margin-left: auto;
}

.company-site-header .nav-lang {
  margin-left: 0;
}

.company-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 100px 0;
}

.company-section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.company-section-heading-wide {
  max-width: 900px;
}

.company-section-heading h2,
.company-business h2,
.company-team h2,
.company-form-intro h2,
.company-final h2 {
  font-size: 3.7rem;
  line-height: 0.98;
}

.company-section-heading > p:last-child,
.company-business header > p,
.company-team-copy > p,
.company-form-intro > p {
  max-width: 760px;
  color: #56366f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(500px, 0.96fr) minmax(500px, 1.04fr);
  gap: clamp(48px, 5vw, 96px);
  align-items: center;
  min-height: 820px;
  padding: 150px max(32px, calc((100vw - 1360px) / 2)) 100px;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 35%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(135deg, #fff9fc 0%, #f5e7f3 54%, #ead5ee 100%);
}

.company-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.company-hero h1 {
  margin-bottom: 18px;
  color: #713a8f;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.company-hero-title {
  max-width: 650px;
  font-size: clamp(4rem, 4.6vw, 5.5rem);
  line-height: 0.91;
  overflow-wrap: break-word;
}

html[lang="en"] .company-hero-title {
  font-size: clamp(3.8rem, 4.35vw, 5.25rem);
}

.company-hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #503169;
  font-size: 1.12rem;
  line-height: 1.7;
}

.company-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.company-hero-facts li {
  padding: 9px 13px;
  border: 1px solid rgba(36, 0, 80, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 700;
}

.company-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.company-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 0 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  text-decoration: none;
}

.company-microcopy {
  margin: 13px 0 0;
  color: #735a83;
  font-size: 0.78rem;
}

.company-hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 430px;
  place-items: center end;
  overflow: visible;
}

.company-hero-visual picture {
  display: block;
  width: min(100%, 700px);
  margin-right: 0;
  animation: company-float 9s ease-in-out infinite;
}

.company-hero-visual picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes company-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.company-trust {
  position: relative;
  z-index: 3;
  color: #fff;
  background: var(--ink);
}

.company-trust dl {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.company-trust dl div {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 20px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.company-trust dl div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.company-trust dt {
  font-size: 1.24rem;
  font-weight: 800;
}

.company-trust dd {
  margin: 4px 0 0;
  color: #dcbfd9;
  font-size: 0.75rem;
  line-height: 1.35;
}

.company-benefits {
  padding-top: 120px;
}

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

.company-benefit-grid article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(36, 0, 80, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.company-star {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 54px;
  background: var(--company-pink);
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
}

.company-benefit-grid h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.company-benefit-grid p {
  margin: 18px 0 0;
  color: #624375;
  font-size: 0.94rem;
  line-height: 1.65;
}

.company-section-cta {
  margin-top: 36px;
}

.company-business {
  color: #fff;
  background: var(--ink);
}

.company-business-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.company-business .overline,
.company-final .overline {
  color: #f090c1;
}

.company-business header > p {
  color: #dbcce2;
}

.company-business .company-text-link {
  margin-top: 16px;
  color: #fff;
}

.company-perspectives {
  display: grid;
  align-content: center;
}

.company-perspectives article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.company-perspectives article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-perspectives h3,
.company-perspectives p {
  margin: 0;
}

.company-perspectives p {
  color: #d8c8df;
  line-height: 1.6;
}

.company-team {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  min-height: 780px;
  overflow: hidden;
}

.company-team-copy {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.company-team-copy ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(36, 0, 80, 0.18);
}

.company-team-copy li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(36, 0, 80, 0.18);
  font-weight: 700;
}

.company-portrait-composition {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  min-height: 0;
}

.company-portrait {
  display: block;
  border-radius: 8px;
}

.company-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.company-portrait-main {
  width: 100%;
  height: 100%;
}

.company-competence-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  min-height: 0;
  padding: 420px max(32px, calc((100vw - var(--max)) / 2)) 56px;
  overflow: hidden;
  background: #fff;
}

.company-competence-band picture {
  position: absolute;
  inset: 24px 50% auto auto;
  width: min(80vw, 880px);
  transform: translateX(50%);
}

.company-competence-band img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.company-competence-band > div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 22px;
  border-left: 1px solid rgba(36, 0, 80, 0.2);
}

.company-competence-band strong {
  font-size: 2rem;
}

.company-competence-band span {
  font-size: 0.82rem;
  font-weight: 700;
}

.company-pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(36, 0, 80, 0.18);
}

.company-pathway-grid a {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 16px;
  min-height: 110px;
  align-items: center;
  padding: 24px;
  border-right: 1px solid rgba(36, 0, 80, 0.18);
  border-bottom: 1px solid rgba(36, 0, 80, 0.18);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.company-pathway-grid li:nth-child(2n + 1) a {
  border-left: 1px solid rgba(36, 0, 80, 0.18);
}

.company-pathway-grid a:hover,
.company-pathway-grid a:focus-visible {
  color: #fff;
  background: var(--ink);
}

.company-pathway-grid span {
  color: var(--company-pink-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.company-pathway-grid i {
  font-style: normal;
  font-size: 1.2rem;
}

.company-packages {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f1ddeb, #ead8ef);
}

.company-packages .company-section {
  position: relative;
  z-index: 2;
}

.company-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.company-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 34px;
  border: 1px solid rgba(36, 0, 80, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.87);
}

.company-package-card.is-recommended {
  border: 2px solid var(--company-pink);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 213, 237, 0.95));
  transform: translateY(-14px);
}

.company-recommended {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -5px 0 22px;
  color: var(--company-pink-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.company-recommended img {
  width: 19px;
  height: 19px;
}

.company-package-name {
  margin: 0;
  color: #7a568d;
  font-size: 0.78rem;
  font-weight: 800;
}

.company-package-card h3 {
  margin: 40px 0 6px;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 500;
}

.company-package-card.is-recommended h3 {
  margin-top: 0;
}

.company-package-discount {
  color: var(--company-pink-dark);
  font-size: 1.2rem;
}

.company-package-card > p:not(.company-recommended, .company-package-name) {
  color: #5d416e;
  line-height: 1.65;
}

.company-package-card .button {
  width: 100%;
  margin-top: auto;
}

.company-terms-note,
.company-vod-note {
  max-width: 960px;
  margin: 30px auto 0;
  color: #684e76;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.company-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-ticket-grid article {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 32px;
  border: 1px solid rgba(36, 0, 80, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.company-ticket-grid h3 {
  margin: 0 0 26px;
  font-size: 1.18rem;
}

.company-ticket-grid ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
  color: #573b68;
  line-height: 1.5;
}

.company-ticket-note {
  padding: 12px;
  color: #712758;
  background: #f4d7e8;
  font-size: 0.8rem;
  font-weight: 700;
}

.company-inline-select {
  min-height: 44px;
  margin-top: auto;
  padding: 10px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.company-configurator {
  color: #fff;
  background: var(--ink);
}

.company-configurator-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: center;
}

.company-configurator h2 {
  font-size: 3.5rem;
  line-height: 0.95;
}

.company-configurator .overline {
  color: #f090c1;
}

.company-configurator-controls {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.company-configurator-controls fieldset {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.company-configurator-controls legend {
  margin-bottom: 10px;
  font-weight: 700;
}

.company-configurator-controls fieldset div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-configurator-controls fieldset button {
  min-height: 44px;
  padding: 9px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.company-configurator-controls fieldset button.is-selected {
  color: var(--ink);
  background: #fff;
}

.company-configurator-controls > p {
  color: #d9c9e1;
  font-size: 0.86rem;
}

.company-form-section {
  background: #fffafc;
}

.company-form-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.company-form-intro {
  position: sticky;
  top: 110px;
}

.company-form-assurance {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(36, 0, 80, 0.18);
}

.company-form-assurance img {
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
}

.company-form-assurance h3 {
  font-size: 1rem;
}

.company-form-assurance ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #654b75;
  font-size: 0.87rem;
}

.company-form-shell {
  padding: 38px;
  border: 1px solid rgba(36, 0, 80, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(36, 0, 80, 0.09);
}

.company-form-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.company-form-progress li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #876e95;
  border-bottom: 2px solid #e5d9e8;
  font-size: 0.82rem;
  font-weight: 700;
}

.company-form-progress li.is-active {
  color: var(--ink);
  border-color: var(--company-pink);
}

.company-form-progress span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.company-form-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  border: 0;
}

.company-form-step[hidden] {
  display: none;
}

.company-field[hidden],
.company-form-actions button[hidden],
.company-form-progress[hidden],
.company-form[hidden],
.company-success[hidden] {
  display: none !important;
}

.company-form-step > legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.company-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.company-field-wide {
  grid-column: 1 / -1;
}

.company-field label,
.company-field-label {
  font-size: 0.82rem;
  font-weight: 700;
}

.company-field b {
  color: var(--company-pink-dark);
}

.company-field input,
.company-field select,
.company-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #cdbed2;
  border-radius: 4px;
  background: #fff;
  font: inherit;
}

.company-field textarea {
  resize: vertical;
}

.company-field input:focus,
.company-field select:focus,
.company-field textarea:focus {
  border-color: var(--company-pink-dark);
  outline: 3px solid rgba(200, 64, 144, 0.16);
}

.company-choice-grid {
  display: grid;
  gap: 8px;
}

.company-package-choices {
  grid-template-columns: repeat(3, 1fr);
}

.company-ticket-choices {
  grid-template-columns: repeat(4, 1fr);
}

.company-choice-grid label {
  cursor: pointer;
}

.company-field .company-choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.company-choice-grid label > span {
  display: grid;
  min-height: 66px;
  align-content: center;
  padding: 12px;
  border: 1px solid #cdbed2;
  border-radius: 4px;
  text-align: center;
}

.company-choice-grid small {
  margin-top: 4px;
  color: var(--company-pink-dark);
}

.company-choice-grid input:checked + span {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.company-choice-grid input:checked + span small {
  color: #f2b9d6;
}

.company-choice-grid input:focus-visible + span {
  outline: 3px solid rgba(200, 64, 144, 0.3);
  outline-offset: 2px;
}

.company-field-error {
  min-height: 17px;
  color: #a11755;
  font-size: 0.75rem;
}

.company-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.company-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--company-pink-dark);
}

.company-consent-optional {
  padding: 14px;
  background: #f7f0f6;
}

.company-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.company-form-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: #a11755;
  font-weight: 700;
}

.company-success {
  min-height: 520px;
  place-content: center;
  text-align: center;
}

.company-success:not([hidden]) {
  display: grid;
}

.company-success > span {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--company-pink-dark);
  font-size: 1.5rem;
}

.company-success h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 500;
}

.company-success p {
  max-width: 570px;
  margin: 18px auto 30px;
  color: #604570;
  line-height: 1.7;
}

.company-success > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.company-faq > div {
  max-width: 900px;
}

.company-faq details {
  border-top: 1px solid rgba(36, 0, 80, 0.22);
}

.company-faq details:last-child {
  border-bottom: 1px solid rgba(36, 0, 80, 0.22);
}

.company-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.company-faq summary::-webkit-details-marker {
  display: none;
}

.company-faq details[open] summary span {
  transform: rotate(45deg);
}

.company-faq details p {
  max-width: 760px;
  margin: -5px 0 24px;
  color: #604570;
  line-height: 1.7;
}

.company-final {
  position: relative;
  min-height: 510px;
  padding: 100px max(32px, calc((100vw - var(--max)) / 2));
  color: #fff;
  overflow: clip;
  background: var(--ink);
}

.company-final > div {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.company-final h2 {
  font-size: 4.2rem;
}

.company-final > div > p:not(.overline) {
  max-width: 650px;
  color: #ddcee4;
  font-size: 1.05rem;
  line-height: 1.7;
}

.company-final > div > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.company-final > div > div > a:last-child {
  color: #fff;
}

.company-final-star {
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2));
  bottom: 54px;
  width: 67px;
  height: 68px;
  opacity: 0.9;
}

.company-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  padding: 14px 22px;
  color: #fff;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 14px 40px rgba(36, 0, 80, 0.25);
  font: 700 0.9rem var(--font-body);
  text-decoration: none;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.company-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1050px) {
  .company-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 28px;
  }

  .company-hero-title {
    font-size: clamp(3.75rem, 6.2vw, 4.4rem);
  }

  .company-trust dl {
    grid-template-columns: repeat(4, 1fr);
  }

  .company-trust dl div:nth-child(5) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .company-benefit-grid article {
    min-height: 260px;
  }

  .company-star {
    margin-bottom: 34px;
  }

  .company-team {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  }

  .company-business-inner,
  .company-configurator-inner,
  .company-form-layout {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .company-section {
    width: min(100% - 32px, var(--max));
    padding: 74px 0;
  }

  .company-section-heading h2,
  .company-business h2,
  .company-team h2,
  .company-form-intro h2,
  .company-final h2 {
    font-size: 2.85rem;
  }

  .company-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    min-height: auto;
    padding: 128px 24px 56px;
  }

  .company-hero-title,
  html[lang="en"] .company-hero-title {
    font-size: 3.45rem;
  }

  .company-hero-visual {
    min-height: 0;
    place-items: center;
  }

  .company-hero-visual picture {
    width: min(92vw, 680px);
    margin: 0 auto;
  }

  .company-hero-visual picture {
    animation: none;
  }

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

  .company-business-inner,
  .company-team,
  .company-configurator-inner,
  .company-form-layout {
    grid-template-columns: 1fr;
  }

  .company-business-inner {
    gap: 38px;
  }

  .company-team {
    min-height: auto;
  }

  .company-portrait-composition {
    width: min(100%, 480px);
    justify-self: center;
  }

  .company-competence-band {
    grid-template-columns: repeat(3, 1fr);
    min-height: 0;
    padding-top: 360px;
  }

  .company-package-grid,
  .company-ticket-grid {
    grid-template-columns: 1fr;
  }

  .company-package-card,
  .company-ticket-grid article {
    min-height: auto;
  }

  .company-package-card .button,
  .company-inline-select {
    margin-top: 28px;
  }

  .company-package-card.is-recommended {
    transform: none;
  }

  .company-form-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .company-site-header .nav-shell {
    padding: 0 18px;
  }

  .company-hero {
    gap: 34px;
    padding: 116px 18px 48px;
  }

  .company-hero h1 {
    font-size: 0.9rem;
  }

  .company-hero-title,
  html[lang="en"] .company-hero-title {
    font-size: 2.75rem;
    line-height: 0.94;
  }

  .company-hero-lead {
    font-size: 1rem;
  }

  .company-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .company-hero-actions .button {
    width: 100%;
  }

  .company-hero-actions .company-text-link {
    justify-content: center;
  }

  .company-hero-visual {
    min-height: 0;
  }

  .company-hero-visual picture {
    width: min(100%, 520px);
  }

  .company-trust dl {
    width: 100%;
  }

  .company-trust dl div {
    min-height: 90px;
  }

  .company-benefit-grid,
  .company-pathway-grid {
    grid-template-columns: 1fr;
  }

  .company-benefit-grid article {
    min-height: auto;
  }

  .company-pathway-grid li a,
  .company-pathway-grid li:nth-child(2n + 1) a {
    border-left: 1px solid rgba(36, 0, 80, 0.18);
  }

  .company-perspectives article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-portrait-composition {
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .company-competence-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 220px 16px 40px;
  }

  .company-competence-band picture {
    top: 16px;
    width: min(92vw, 460px);
  }

  .company-competence-band > div {
    padding: 16px;
  }

  .company-form-shell {
    padding: 24px 16px;
  }

  .company-form-step {
    grid-template-columns: 1fr;
  }

  .company-package-choices,
  .company-ticket-choices {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .company-form-actions .button {
    width: 100%;
  }

  .company-form-progress li {
    align-items: flex-start;
    font-size: 0.72rem;
  }

  .company-final {
    padding: 76px 20px;
  }

  .company-final h2 {
    font-size: 2.75rem;
  }

  .company-final-star {
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: auto;
  }


  .company-sticky-cta {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-hero-visual picture,
  .company-sticky-cta {
    animation: none;
    transition: none;
  }
}
