:root {
  --page-bg: #1a1d24;
  --surface-bg: #f7f5f0;
  --pill-muted: #72717d;
  --pill-dark: #1a1d24;
  --text-main: #1d1d1d;
  --text-muted: #72717d;
  --text-on-dark: #ffffff;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.12);
  --border-soft: rgba(26, 29, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--page-bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page-shell {
  min-height: 100vh;
  padding-inline: 0;
}

.page-surface {
  min-height: 100vh;
  max-width: none;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
}

.section-shell {
  padding-inline: 80px;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 20px 68px;
  background: #f7f5f0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: min(310px, 100%);
  text-decoration: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.site-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--pill-dark);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--pill-dark);
  outline-offset: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 15px;
  border-radius: 999px;
  color: var(--text-on-dark);
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.pill:hover,
.pill:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.pill:focus-visible {
  outline: 2px solid var(--page-bg);
  outline-offset: 3px;
}

.pill-large {
  min-height: 48px;
  padding: 17px 20px;
  font-size: 18px;
}

.pill-muted {
  background: var(--pill-muted);
}

.pill-dark {
  background: var(--pill-dark);
}

.pill-light {
  background: var(--surface-bg);
  color: var(--pill-dark);
  align-self: flex-start;
  font-size: 16px;
  min-height: 46px;
  padding: 15px 20px;
}

.intro-layout {
  --intro-column-gap: 91px;
  display: grid;
  grid-template-columns: 681px 594px;
  grid-template-areas:
    "hero visual"
    "experience visual"
    "experience cta";
  column-gap: var(--intro-column-gap);
  align-items: start;
  background: linear-gradient(to bottom, #ffffff 0 56%, #f7f5f0 56% 100%);
}

.intro-top-gap {
  height: 30px;
}

.hero-section {
  grid-area: hero;
  padding: 103px 3px 112px 60px;
  background: transparent;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 618px;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.hero-title,
.section-title,
.problem-title,
.realisations-title,
.services-title {
  margin: 0;
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: 60px;
}

.hero-title span,
.section-title span {
  color: var(--text-muted);
}

.hero-text,
.section-body,
.contact-lead,
.problem-body,
.realisations-text,
.services-intro {
  margin: 0;
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.hero-text strong,
.section-body strong,
.experience-cta strong {
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-visual {
  grid-area: visual;
  margin: 0;
  width: 100%;
  min-height: 673px;
  height: 673px;
  margin-top: 94px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-section {
  grid-area: experience;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 84px;
  padding: 54px 3px 48px 60px;
  background: #f7f5f0;
}

.experience-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--intro-column-gap) * -1);
  width: var(--intro-column-gap);
  height: 100%;
  background: #f7f5f0;
  pointer-events: none;
}

.experience-copy {
  width: 618px;
  max-width: 100%;
}

.section-title {
  font-size: 36px;
}

.section-body {
  display: grid;
  gap: 1.4rem;
  margin-top: 20px;
  font-size: 16px;
}

.section-body p {
  margin: 0;
}

.section-body.single {
  display: block;
  margin-top: 16px;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.stat-card img {
  display: block;
  width: auto;
  height: 50px;
}

.stat-card:first-child img {
  height: 47px;
}

.stat-card strong {
  font-size: 20px;
  line-height: 1.05;
  font-weight: 700;
}

.stat-card span {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 65px;
  background: rgba(29, 29, 29, 0.45);
}

.experience-cta {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 513px;
  max-width: 513px;
  padding: 104px 0 48px;
  background: #f7f5f0;
}

.experience-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.problem-section {
  padding-top: 96px;
  padding-bottom: 72px;
  background: #ffffff;
}

.problem-heading-block {
  display: grid;
  gap: 26px;
}

.problem-title {
  width: min(100%, 620px);
  margin: 0;
  color: var(--text-main);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.problem-title span {
  display: block;
  color: var(--text-muted);
}

.problem-body {
  width: min(100%, 792px);
  display: grid;
  gap: 1.8rem;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.problem-body p {
  margin: 0;
}

.problem-body strong {
  font-weight: 500;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 58px;
}

.problem-card {
  min-height: 198px;
  padding: 20px 25px;
  background: #f7f5f0;
  border-radius: 10px;
}

.problem-card h3 {
  margin: 0 0 12px;
  color: var(--text-main);
  font-family: "Barlow", "Aeonik", "Avenir Next", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.problem-card p {
  width: min(100%, 332px);
  margin: 0;
  color: var(--text-main);
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.realisations-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f7f5f0;
  overflow: hidden;
}

.realisations-copy {
  display: flex;
  justify-content: center;
}

.realisations-copy-inner {
  display: grid;
  gap: 16px;
  width: min(100%, 1206px);
  text-align: center;
}

.realisations-title {
  margin: 0;
  color: var(--pill-dark);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.realisations-text {
  margin: 0;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.realisations-gallery-shell {
  margin-top: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 8px;
  -webkit-overflow-scrolling: touch;
}

.realisations-gallery {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  width: max-content;
}

.realisations-gallery::before,
.realisations-gallery::after {
  content: "";
  flex: 0 0 80px;
}

.realisations-image {
  margin: 0;
  height: 409px;
  overflow: hidden;
}

.realisations-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.realisations-image-1 {
  width: 560px;
}

.realisations-image-1 img,
.realisations-image-3 img,
.realisations-image-4 img,
.realisations-image-6 img {
  object-fit: cover;
  object-position: center;
}

.realisations-image-2 {
  width: 241px;
}

.realisations-image-2 img {
  object-fit: cover;
  object-position: center 18%;
}

.realisations-image-3 {
  width: 241px;
}

.realisations-image-4 {
  width: 414px;
}

.realisations-image-5 {
  width: 124px;
}

.realisations-image-5 img {
  object-fit: cover;
  object-position: 18% center;
}

.realisations-image-6 {
  width: 349px;
}

.realisations-image-7 {
  width: 513px;
}

.realisations-image-7 img {
  object-fit: cover;
  object-position: center 20%;
}

.services-section {
  display: grid;
  grid-template-columns: 538px 524px;
  gap: 81px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}

.services-visual {
  margin: 0;
  height: 553px;
  border-radius: 10px;
  overflow: hidden;
}

.services-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.services-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.services-title {
  margin: 0;
  color: var(--pill-dark);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.services-title span {
  color: var(--text-muted);
}

.services-intro {
  width: 100%;
  margin: 0;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.services-intro strong {
  font-weight: 400;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 524px;
  max-width: 100%;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item-heading,
.service-item-body {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
}

.service-item-heading img,
.service-item-body img {
  display: block;
  width: 17px;
  height: 17px;
  transform: scaleY(-1);
}

.service-item-heading h3,
.service-item-body p {
  margin: 0;
  color: var(--text-main);
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
}

.service-item-heading h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.service-item-body p {
  width: min(100%, 487px);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

.service-cta {
  min-height: 37px;
  padding: 15px;
  font-size: 16px;
}

.calculator-teaser {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #ffffff;
}

.calculator-teaser-copy {
  display: grid;
  gap: 24px;
}

.calculator-teaser-copy .section-body {
  font-size: 16px;
}

.calculator-teaser-visual {
  margin: 0;
  width: 100%;
  max-width: 576px;
  justify-self: center;
}

.calculator-app {
  --calculator-background: hsl(228 12% 96%);
  --calculator-foreground: hsl(230 14% 12%);
  --calculator-card: #ffffff;
  --calculator-primary: hsl(228 14% 12%);
  --calculator-primary-foreground: hsl(228 8% 92%);
  --calculator-secondary: hsl(228 8% 92%);
  --calculator-muted-foreground: hsl(228 6% 46%);
  --calculator-border: hsl(228 8% 87%);
  --calculator-accent: hsl(214 16% 20%);
  --calculator-accent-foreground: hsl(214 8% 92%);
  --calculator-result-bg: hsl(228 8% 94%);
  --calculator-result-foreground: hsl(228 14% 12%);
  --calculator-success: hsl(152 40% 40%);
  --calculator-success-foreground: #ffffff;
  color: var(--calculator-foreground);
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
}

.calculator-app__card {
  overflow: hidden;
  border: 1px solid var(--calculator-border);
  border-radius: 16px;
  background: var(--calculator-card);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.calculator-app__header {
  display: grid;
  gap: 16px;
  padding: 20px 24px 24px;
  background: var(--calculator-primary);
  color: var(--calculator-primary-foreground);
}

.calculator-app__brand img {
  display: block;
  width: auto;
  max-width: 260px;
  height: 32px;
  object-fit: contain;
}

.calculator-progress {
  display: grid;
  gap: 8px;
}

.calculator-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.74);
}

.calculator-progress__track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calculator-progress__segment {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: background-color 180ms ease;
}

.calculator-progress__segment.is-active {
  background: #ffffff;
}

.calculator-app__body {
  padding: 24px;
}

.calculator-app__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--calculator-foreground);
}

.calculator-app__panel {
  animation: calculator-panel-in 240ms ease;
}

.calculator-app__intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--calculator-muted-foreground);
}

.calculator-choice-grid,
.calculator-inline-grid,
.calculator-finish-grid,
.calculator-surface-grid,
.calculator-form-grid {
  display: grid;
  gap: 12px;
}

.calculator-choice-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-choice-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calculator-choice-card,
.calculator-surface-card,
.calculator-finish-card {
  width: 100%;
  border: 2px solid var(--calculator-border);
  border-radius: 12px;
  background: var(--calculator-card);
  color: inherit;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
  cursor: pointer;
}

.calculator-choice-card:hover,
.calculator-surface-card:hover,
.calculator-finish-card:hover {
  border-color: rgba(26, 29, 36, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.calculator-choice-card.is-selected,
.calculator-surface-card.is-selected,
.calculator-finish-card.is-selected {
  border-color: var(--calculator-primary);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.calculator-choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
}

.calculator-choice-card__icon,
.calculator-finish-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--calculator-secondary);
  color: var(--calculator-muted-foreground);
  transition: background-color 180ms ease, color 180ms ease;
}

.calculator-choice-card__icon {
  width: 52px;
  height: 52px;
  padding: 12px;
}

.calculator-choice-card.is-selected .calculator-choice-card__icon,
.calculator-finish-card.is-selected .calculator-finish-card__icon {
  background: var(--calculator-primary);
  color: var(--calculator-primary-foreground);
}

.calculator-choice-card__body,
.calculator-surface-card__body,
.calculator-finish-card__body {
  display: grid;
  gap: 4px;
}

.calculator-choice-card__title,
.calculator-surface-card__title,
.calculator-finish-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--calculator-foreground);
}

.calculator-choice-card__description,
.calculator-surface-card__description,
.calculator-finish-card__description,
.calculator-finish-card__price,
.calculator-note-card,
.calculator-result-card__note,
.calculator-success p,
.calculator-field__error,
.calculator-summary span {
  font-size: 12px;
  line-height: 1.45;
}

.calculator-choice-card__description,
.calculator-surface-card__description,
.calculator-finish-card__description,
.calculator-result-card__note,
.calculator-success p,
.calculator-summary span {
  color: var(--calculator-muted-foreground);
}

.calculator-form-card,
.calculator-inline-card,
.calculator-note-card {
  border: 1px solid var(--calculator-border);
  border-radius: 12px;
  background: var(--calculator-card);
}

.calculator-form-card {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.calculator-form-card--lead {
  margin-top: 24px;
}

.calculator-form-card__heading h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.calculator-form-card__heading p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--calculator-muted-foreground);
}

.calculator-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-field {
  display: grid;
  gap: 8px;
}

.calculator-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--calculator-foreground);
}

.calculator-input,
.calculator-textarea {
  width: 100%;
  border: 1px solid var(--calculator-border);
  border-radius: 8px;
  background: var(--calculator-card);
  color: var(--calculator-foreground);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.calculator-input {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 16px;
}

.calculator-textarea {
  min-height: 96px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
}

.calculator-input:focus,
.calculator-textarea:focus {
  outline: none;
  border-color: var(--calculator-primary);
  box-shadow: 0 0 0 3px rgba(26, 29, 36, 0.12);
}

.calculator-field__error {
  min-height: 18px;
  margin: 0;
  color: #c0392b;
}

.calculator-inline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-inline-card {
  padding: 16px;
}

.calculator-inline-card__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--calculator-foreground);
}

.calculator-inline-card__icon,
.calculator-inline-card__info,
.calculator-result-card__lock,
.calculator-note-card__icon,
.calculator-button-icon,
.calculator-success__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calculator-inline-card__icon,
.calculator-note-card__icon {
  width: 20px;
  height: 20px;
  color: var(--calculator-muted-foreground);
}

.calculator-inline-card__info {
  width: 18px;
  height: 18px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--calculator-muted-foreground);
}

.calculator-surface-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-surface-card {
  overflow: hidden;
  text-align: left;
}

.calculator-surface-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.calculator-surface-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.calculator-surface-card:hover .calculator-surface-card__media img {
  transform: scale(1.04);
}

.calculator-surface-card__body {
  padding: 12px;
}

.calculator-finish-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-finish-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  text-align: left;
}

.calculator-finish-card__icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.calculator-finish-card__price {
  margin-top: 4px;
  font-weight: 600;
}

.calculator-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calculator-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--calculator-background);
}

.calculator-primary-button,
.calculator-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.calculator-primary-button {
  width: 100%;
  border: 1px solid var(--calculator-accent);
  background: var(--calculator-accent);
  color: var(--calculator-accent-foreground);
}

.calculator-primary-button:hover,
.calculator-footer-button--solid:hover:not(:disabled),
.calculator-footer-button--ghost:hover:not(:disabled) {
  transform: translateY(-1px);
}

.calculator-footer-button {
  padding: 0 16px;
}

.calculator-footer-button--solid {
  border: 1px solid var(--calculator-primary);
  background: var(--calculator-primary);
  color: var(--calculator-primary-foreground);
}

.calculator-footer-button--ghost {
  border: 1px solid transparent;
  background: transparent;
  color: var(--calculator-foreground);
}

.calculator-primary-button:disabled,
.calculator-footer-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.calculator-button-icon {
  width: 16px;
  height: 16px;
}

.calculator-app svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calculator-result-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  background: var(--calculator-result-bg);
  color: var(--calculator-result-foreground);
}

.calculator-result-card__lock {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  opacity: 0.6;
}

.calculator-result-card__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.8;
}

.calculator-result-card__price {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.calculator-result-card__price.is-blurred {
  filter: blur(12px);
  user-select: none;
}

.calculator-result-card__note {
  margin: 0;
  opacity: 0.7;
}

.calculator-note-card {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: rgba(228, 230, 236, 0.45);
  color: var(--calculator-muted-foreground);
}

.calculator-note-card p,
.calculator-success p,
.calculator-noscript {
  margin: 0;
}

.calculator-success {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 20px 0 4px;
  text-align: center;
}

.calculator-success__badge {
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 999px;
  background: var(--calculator-success);
  color: var(--calculator-success-foreground);
}

.calculator-app__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--calculator-border);
}

.calculator-app__footer--single {
  justify-content: flex-start;
}

.calculator-noscript {
  padding: 18px;
  border: 1px solid var(--calculator-border);
  border-radius: 16px;
  background: var(--calculator-card);
  font-size: 14px;
  line-height: 1.6;
  color: var(--calculator-muted-foreground);
}

@keyframes calculator-panel-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .calculator-choice-grid--two,
  .calculator-choice-grid--three,
  .calculator-inline-grid,
  .calculator-finish-grid,
  .calculator-form-grid {
    grid-template-columns: 1fr;
  }

  .calculator-app__header,
  .calculator-app__body,
  .calculator-app__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .calculator-result-card__price {
    font-size: 30px;
  }
}

.form-feedback {
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
}

.form-feedback {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 555px 416px;
  justify-content: space-between;
  gap: 74px;
  align-items: start;
  padding-inline: 75px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f7f5f0;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 555px;
  max-width: 100%;
}

.contact-copy-inner {
  display: grid;
  gap: 16px;
  width: min(100%, 409px);
}

.contact-lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-description {
  margin: 0;
  color: var(--text-main);
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.review-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 201px;
  min-height: 54px;
  padding: 10px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  align-self: flex-start;
}

.google-mark {
  width: 36px;
  height: 34px;
  object-fit: contain;
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 135px;
}

.review-stars img {
  display: block;
  width: 90px;
  height: 18px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
}

.review-meta strong {
  margin: 0;
  font-family: "Hind", "Aeonik", sans-serif;
  font-weight: 600;
}

.review-meta span {
  margin: 0;
  font-family: "Hind", "Aeonik", sans-serif;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 416px;
  max-width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 18px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 10px;
  background: #fffefb;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  color: var(--text-main);
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 24.108px;
}

.contact-form textarea {
  min-height: 113px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-main);
  opacity: 1;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(26, 29, 36, 0.28);
  outline-offset: 2px;
}

.contact-submit {
  margin-top: 12px;
  border: 0;
  cursor: pointer;
  width: auto;
  min-height: 0;
  padding: 15px;
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 0.97;
  align-self: flex-start;
}

.site-footer {
  margin-top: 0;
  background: var(--page-bg);
  color: var(--surface-bg);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 1fr 1fr;
  gap: 64px;
  padding-top: 45px;
  padding-bottom: 34px;
}

.footer-brand-column,
.footer-links-column,
.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: block;
  width: 380px;
  max-width: 100%;
}

.footer-brand-column {
  gap: 28px;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-address,
.footer-contact {
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}

.footer-address p,
.footer-contact p {
  margin: 0;
}

.footer-contact a,
.footer-address a,
.footer-nav a,
.footer-legal a,
.footer-socials a {
  color: inherit;
  text-decoration: none;
}

.footer-links-column h3,
.footer-nav {
  margin: 0;
}

.footer-links-column h3 {
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 21px;
  line-height: 1.19;
  font-weight: 300;
  margin-bottom: 10px;
}

.footer-services,
.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-services {
  margin: 0;
  display: grid;
  gap: 4px;
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 24px;
  font-weight: 300;
}

.footer-nav {
  display: grid;
  gap: 4px;
  font-family: "Aeonik", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(247, 245, 240, 0.24);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(247, 245, 240, 0.18);
  font-size: 12px;
  line-height: 24px;
  font-weight: 300;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .page-shell {
    padding-inline: 0;
  }

  .site-header {
    padding-inline: 24px;
  }

  .section-shell {
    padding-inline: 24px;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "visual"
      "experience"
      "cta";
  }

  .intro-top-gap {
    height: 24px;
  }

  .hero-section,
  .experience-section {
    padding-inline: 24px;
  }

  .hero-section {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .hero-visual {
    max-width: 594px;
    min-height: 520px;
    height: 520px;
    margin-top: 0;
    justify-self: center;
    border-radius: 10px;
  }

  .experience-section {
    gap: 56px;
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .experience-section::after {
    content: none;
  }

  .experience-cta,
  .problem-cards,
  .services-section,
  .calculator-teaser,
  .contact-section,
  .footer-main {
    gap: 48px;
  }

  .experience-cta,
  .problem-cards,
  .services-section,
  .calculator-teaser,
  .contact-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-inline: 24px;
  }

  .footer-contact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .experience-cta {
    max-width: none;
    width: auto;
    padding: 16px 24px 24px;
  }

  .hero-content,
  .experience-copy {
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .problem-title {
    font-size: 34px;
  }

  .realisations-title {
    font-size: 34px;
  }

  .services-title {
    font-size: 34px;
  }

  .realisations-gallery-shell {
    padding: 0 0 8px;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-footer {
    margin-top: 0;
  }

  .services-visual {
    max-width: 538px;
    width: 100%;
    justify-self: center;
  }

  .contact-copy,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-surface {
    border-radius: 24px 24px 0 0;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .problem-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .realisations-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .services-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .realisations-copy-inner {
    gap: 14px;
  }

  .realisations-text br {
    display: none;
  }

  .realisations-gallery {
    gap: 18px;
  }

  .realisations-gallery::before,
  .realisations-gallery::after {
    flex-basis: 24px;
  }

  .realisations-image {
    height: 300px;
  }

  .realisations-image-1 {
    width: 410px;
  }

  .realisations-image-2,
  .realisations-image-3 {
    width: 180px;
  }

  .realisations-image-4 {
    width: 300px;
  }

  .realisations-image-5 {
    width: 92px;
  }

  .realisations-image-6 {
    width: 250px;
  }

  .realisations-image-7 {
    width: 360px;
  }

  .services-visual {
    height: 420px;
  }

  .services-title {
    font-size: 30px;
  }

  .services-content {
    gap: 24px;
  }

  .hero-actions,
  .stats-row,
  .footer-bottom,
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    width: 100%;
  }

  .calculator-teaser-visual {
    width: 100%;
    max-width: 576px;
    justify-self: center;
  }

  .hero-visual {
    min-height: 420px;
    height: 420px;
  }

  .experience-cta {
    padding-bottom: 12px;
  }

  .footer-socials {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding-inline: 0;
    background: #ffffff;
  }

  .page-surface {
    max-width: none;
    border-radius: 0;
  }

  .intro-top-gap {
    display: none;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 78px;
    padding: 20px 20px 20px 13px;
    background: #f7f5f0;
  }

  .brand-mark img {
    width: 100%;
  }

  .brand-mark {
    width: 205px;
  }

  .site-actions {
    display: none;
  }

  .site-actions.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    z-index: 10;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(26, 29, 36, 0.18);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .pill {
    width: auto;
  }

  .pill-large {
    min-height: 44px;
    padding: 17px 20px;
    font-size: 14px;
  }

  .intro-layout {
    display: flex;
    flex-direction: column;
    background: #ffffff;
  }

  .hero-section {
    padding: 34px 19px 0;
  }

  .hero-content,
  .experience-copy {
    width: 100%;
  }

  .hero-copy {
    gap: 25px;
  }

  .hero-title {
    font-size: 35px;
    line-height: 1;
  }

  .hero-text,
  .section-body,
  .contact-lead,
  .realisations-text,
  .services-intro {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: nowrap;
  }

  .hero-actions .pill {
    min-height: 44px;
    padding: 17px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-visual {
    width: 282px;
    min-height: 265px;
    height: 265px;
    margin: 36px 0 -37px auto;
    border-radius: 10px 0 0 10px;
  }

  .experience-section,
  .experience-cta {
    padding-inline: 20px;
  }

  .experience-section {
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 40px;
    align-items: center;
  }

  .section-title,
  .problem-title,
  .realisations-title,
  .services-title {
    font-size: 30px;
  }

  .section-body {
    margin-top: 20px;
  }

  .stats-row {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-card {
    width: 178px;
  }

  .stat-card span {
    white-space: normal;
  }

  .experience-cta {
    gap: 20px;
    max-width: 335px;
    padding-top: 24px;
    padding-bottom: 0;
    text-align: left;
    background: transparent;
  }

  .experience-cta .pill {
    min-height: 40px;
    padding: 15px;
    font-size: 14px;
  }

  .problem-section {
    padding: 40px 20px;
  }

  .problem-heading-block {
    gap: 20px;
  }

  .problem-title,
  .problem-body {
    width: 100%;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .problem-card {
    min-height: 0;
  }

  .problem-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .realisations-section {
    padding: 40px 0;
  }

  .realisations-copy {
    padding-inline: 20px;
  }

  .realisations-copy-inner {
    width: 335px;
    max-width: 100%;
    gap: 16px;
  }

  .realisations-gallery-shell {
    margin-top: 32px;
    padding: 0 20px 8px;
  }

  .realisations-gallery {
    gap: 20px;
  }

  .realisations-gallery::before,
  .realisations-gallery::after {
    display: none;
  }

  .realisations-image,
  .realisations-image-1,
  .realisations-image-3,
  .realisations-image-4,
  .realisations-image-5 {
    height: 220px;
  }

  .realisations-image-2,
  .realisations-image-6,
  .realisations-image-7 {
    height: 224px;
  }

  .realisations-image-1 {
    width: 293px;
  }

  .realisations-image-2 {
    width: 132px;
  }

  .realisations-image-3 {
    width: 130px;
  }

  .realisations-image-4 {
    width: 223px;
  }

  .realisations-image-5 {
    width: 67px;
  }

  .realisations-image-6 {
    width: 116px;
  }

  .realisations-image-7 {
    width: 281px;
  }

  .services-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 40px 20px 0;
  }

  .calculator-teaser {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px;
  }

  .calculator-teaser-copy {
    gap: 20px;
  }

  .calculator-teaser-visual {
    width: 335px;
    max-width: 100%;
    height: auto;
  }

  .calculator-app__header,
  .calculator-app__body,
  .calculator-app__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .calculator-app__header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .calculator-app__body {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .calculator-app__footer {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .calculator-app__brand img {
    max-width: 220px;
    height: 28px;
  }

  .calculator-choice-grid--two,
  .calculator-choice-grid--three,
  .calculator-inline-grid,
  .calculator-finish-grid,
  .calculator-form-grid {
    grid-template-columns: 1fr;
  }

  .calculator-finish-card {
    padding: 14px;
  }

  .calculator-surface-grid {
    gap: 10px;
  }

  .calculator-choice-card,
  .calculator-result-card,
  .calculator-form-card,
  .calculator-inline-card {
    border-radius: 10px;
  }

  .calculator-result-card__price {
    font-size: 28px;
  }

  .calculator-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .services-content {
    gap: 30px;
    width: 100%;
  }

  .service-item-heading,
  .service-item-body {
    column-gap: 20px;
  }

  .service-item-heading h3 {
    font-size: 18px;
  }

  .service-item-body p {
    font-size: 16px;
  }

  .service-cta {
    min-height: 44px;
    padding: 17px 20px;
    font-size: 14px;
  }

  .services-visual {
    width: calc(100% + 45px);
    max-width: none;
    height: 198px;
    margin-inline: -22px -23px;
    border-radius: 0;
  }

  .services-visual img {
    object-position: center 42%;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .contact-copy {
    gap: 20px;
  }

  .contact-copy-inner {
    width: 100%;
  }

  .review-meta {
    gap: 20px;
  }

  .contact-submit {
    margin-top: 8px;
    padding: 17px 20px;
    font-size: 14px;
  }

  .site-footer {
    padding-top: 0;
  }

  .footer-main {
    grid-template-columns: 122px 142px;
    gap: 25px 71px;
    padding: 40px 20px 25px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
    gap: 25px;
  }

  .footer-brand {
    width: 309px;
  }

  .footer-cta {
    min-height: 40px;
    padding: 15px;
    font-size: 14px;
    align-self: flex-start;
  }

  .footer-links-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-services {
    font-size: 11px;
    line-height: 24px;
  }

  .footer-nav-column {
    width: 142px;
  }

  .footer-nav {
    font-size: 16px;
    font-weight: 300;
  }

  .footer-socials {
    gap: 8px;
    margin-top: 2px;
  }

  .footer-socials a {
    min-height: 30px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .footer-contact-row {
    grid-column: 1 / -1;
    grid-template-columns: 129px 121px;
    gap: 83px;
    padding-top: 25px;
    border-top: 1px solid rgba(247, 245, 240, 0.18);
  }

  .footer-address,
  .footer-contact {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 20px 40px;
    text-align: center;
  }

  .footer-bottom p {
    order: 2;
    width: 100%;
    font-size: 10px;
    line-height: 1.35;
  }

  .footer-legal {
    order: 1;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

  .footer-legal a {
    font-size: 10px;
  }
}
