:root {
  --color-primary: #B599FE;
  --color-secondary: #DBB7F9;
  --color-background: #F7F7F7;
  --color-text-main: #22252B;
  --space-4: 1rem;
  --font-base: Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, textarea, select {
  font: inherit;
  margin: 0;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid #8DB0FB;
  outline-offset: 2px;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/InterDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/InterDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/InterDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #22252B;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  color: #22252B;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin: 0 0 1rem 0;
  color: #22252B;
}

a {
  color: rgb(8.1016949153, 78.9915254237, 230.8983050847);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(6.3728813559, 62.1355932203, 181.6271186441);
}

.page-content a,
.entry-content a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-content,
.entry-content {
  max-width: 68ch;
}
.page-content ul, .page-content ol,
.entry-content ul,
.entry-content ol {
  padding-left: 2rem;
  margin: 0 0 1rem 0;
}
.page-content ul,
.entry-content ul {
  list-style: disc;
}
.page-content ol,
.entry-content ol {
  list-style: decimal;
}
.page-content li,
.entry-content li {
  margin-bottom: 0.5rem;
}

.text-muted {
  color: #52555C;
  font-size: 1rem;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section--small {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.section--hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
  gap: 1rem;
}
.flex--center {
  justify-content: center;
  align-items: center;
}
.flex--between {
  justify-content: space-between;
  align-items: center;
}
.flex--column {
  flex-direction: column;
}

.margin-top-1 {
  margin-top: 0.25rem;
}

.margin-top-2 {
  margin-top: 0.5rem;
}

.margin-top-1 {
  margin-bottom: 0.25rem;
}

.margin-top-2 {
  margin-bottom: 0.5rem;
}

.padding-x-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding-y-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #52555C;
}

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.display-inline {
  display: inline !important;
}

.display-inline-block {
  display: inline-block !important;
}

.margin-top-1 {
  margin-top: 0.25rem;
}

.margin-top-2 {
  margin-top: 0.5rem;
}

.margin-top-3 {
  margin-top: 0.75rem;
}

.margin-bottom-1 {
  margin-bottom: 0.25rem;
}

.margin-bottom-2 {
  margin-bottom: 0.5rem;
}

.margin-bottom-3 {
  margin-bottom: 0.75rem;
}

.margin-left-1 {
  margin-left: 0.25rem;
}

.marging-right-1 {
  margin-right: 0.25rem;
}

.padding-top-1 {
  padding-top: 0.25rem;
}

.padding-bottom-1 {
  padding-bottom: 0.25rem;
}

.padding-left-1 {
  padding-left: 0.25rem;
}

.padding-right-1 {
  padding-right: 0.25rem;
}

.background-primary {
  background-color: #B599FE;
}

.background-secondary {
  background-color: #DBB7F9;
}

.background-accent {
  background-color: #8DB0FB;
}

.background-highlight {
  background-color: #FFA8EB;
}

.with-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(254.2815533981, 254.0097087379, 254.9902912621);
  padding: 1rem 0;
  border-bottom: 1px solid #B599FE;
}
.site-header__grid {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .site-header__grid {
    gap: 0.5rem;
  }
}
.site-header__logo img {
  max-height: 100px;
  display: block;
}
@media (max-width: 768px) {
  .site-header__logo img {
    max-height: 44px;
  }
}
.site-header__cta-short {
  display: none;
}
.site-header__toggle {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  background: rgb(235.9611650485, 228.7572815534, 254.7427184466);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #22252B;
  cursor: pointer;
  white-space: nowrap;
}
.site-header__toggle:hover {
  background: hsl(0, 0%, 101.862745098%);
}
.site-header__toggle-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}
.site-header__toggle-icon svg {
  width: 100%;
  height: 100%;
}
.site-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__nav .main-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.site-header__nav .main-menu li {
  list-style: none;
}
.site-header__nav .main-menu li a {
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  color: #22252B;
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  background: rgb(235.9611650485, 228.7572815534, 254.7427184466);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.site-header__nav .main-menu li a:hover {
  color: #8DB0FB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: hsl(0, 0%, 101.862745098%);
}
@media (max-width: 768px) {
  .site-header__logo {
    order: 1;
    flex-shrink: 0;
  }
  .site-header .btn-default {
    order: 2;
    flex-shrink: 0;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }
  .site-header__cta-full {
    display: none;
  }
  .site-header__cta-short {
    display: inline;
  }
  .site-header__toggle {
    display: inline-flex;
    flex-shrink: 0;
    order: 3;
  }
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.75rem;
    padding: 1rem;
    background: rgb(254.2815533981, 254.0097087379, 254.9902912621);
    border-bottom: 1px solid #B599FE;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .site-header__nav[hidden] {
    display: none;
  }
  .site-header__nav .main-menu {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
@media (min-width: 769px) {
  .site-header__nav[hidden] {
    display: flex !important;
  }
}

.site-footer {
  background-color: #F7F7F7;
  border-top: 1px solid #B599FE;
  padding: 2rem 0;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.site-footer__logo {
  max-height: 140px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .site-footer__logo {
    margin: 0 auto;
  }
}
.site-footer__nav nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__phone {
  margin: 0.75rem 0 0;
}
.site-footer__phone a {
  font-weight: 600;
  color: #22252B;
}
.site-footer__quick-links, .site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .site-footer__quick-links, .site-footer__social {
    align-items: center;
  }
}
.site-footer .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
}
.site-footer .footer-link__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.site-footer .footer-link__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.site-footer .footer-link__text {
  font-weight: 500;
}
.site-footer .footer-link:hover {
  color: rgb(57.1553398058, 1.9708737864, 201.0291262136);
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #B599FE;
  margin-top: 2rem;
  padding: 1rem 0;
  font-size: 1rem;
}
.site-footer__bottom__copyright a:hover {
  text-decoration: underline;
}
.site-footer__bottom__legal .list--horizontal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s ease;
}
.btn.btn-default {
  background: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  color: #F7F7F7;
}
.btn.btn-default:hover {
  background: rgb(57.1553398058, 1.9708737864, 201.0291262136);
}
.btn.btn-accent {
  background: rgb(8.1016949153, 78.9915254237, 230.8983050847);
  color: #F7F7F7;
}
.btn.btn-accent:hover {
  background: rgb(6.3728813559, 62.1355932203, 181.6271186441);
}
.btn.btn-outline {
  background: transparent;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  border: 2px solid rgb(71.5145631068, 2.4660194175, 251.5339805825);
}
.btn.btn-outline:hover {
  background: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  color: #F7F7F7;
}
.btn.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn.btn-whatsapp:hover {
  background: #1DA851;
}
.btn.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
}
.btn.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.375rem;
}
.btn .btn__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  vertical-align: -5px;
}
.btn .btn__icon svg {
  width: 100%;
  height: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 768px) {
  .hero__content {
    align-items: center;
  }
}
.hero__headline {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 2.5rem;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  line-height: 1.2;
}
.hero__subline {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.375rem;
  color: #52555C;
}
.hero__stats {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .hero__stats {
    justify-content: center;
  }
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-number {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  line-height: 1.1;
}
.hero__stat-label {
  font-size: 1rem;
  color: #52555C;
}
.hero__cta {
  margin-top: 0.5rem;
}

.services-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .services-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .services-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.services-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DBB7F9;
}
.services-strip__icon svg {
  width: 26px;
  height: 26px;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
}
.services-strip__label {
  font-size: 1rem;
  font-weight: 500;
  color: #22252B;
}

.appointment__card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}
@media (max-width: 768px) {
  .appointment__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
.appointment__price {
  font-size: 1.75rem;
  font-weight: 600;
  color: #22252B;
  margin-bottom: 0.25rem;
}
.appointment__price-note {
  margin-bottom: 0;
}
.appointment__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .appointment__actions {
    align-items: center;
  }
}
.appointment__actions .btn {
  width: 100%;
}
.appointment__alt-link {
  font-size: 1rem;
  color: #52555C;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-teaser__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
.about-teaser__image img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.about-teaser__content p {
  max-width: 60ch;
}

.reviews h2 {
  margin-bottom: 2rem;
}

.review-card {
  background: #fff;
  border: 1px solid #DBB7F9;
  border-radius: 8px;
  padding: 1.5rem;
}
.review-card__text {
  color: #22252B;
  margin-bottom: 0.75rem;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1rem;
}
.review-card__name {
  font-weight: 600;
  color: #22252B;
}
.review-card__meta-sub {
  color: #52555C;
}

.service-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.service-intro__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-item h3 {
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  margin-bottom: 0.5rem;
}
.why-item p {
  margin-bottom: 0;
}

.stats-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .stats-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background: #fff;
  border: 1px solid #DBB7F9;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DBB7F9;
  margin-bottom: 0.75rem;
}
.stat-card__icon svg {
  width: 26px;
  height: 26px;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
}
@media (max-width: 576px) {
  .stat-card__icon {
    width: 44px;
    height: 44px;
  }
  .stat-card__icon svg {
    width: 22px;
    height: 22px;
  }
}

.stat-card__label {
  font-weight: 600;
  color: #22252B;
  margin-bottom: 0.25rem;
}

.stat-card__count {
  font-size: 1.375rem;
  font-weight: 600;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  margin-bottom: 0;
}

.stat-card__duration {
  font-size: 1rem;
  color: #52555C;
  margin-bottom: 0;
}

.afspraak-form__container {
  max-width: 640px;
}
.afspraak-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.afspraak-form__alt {
  margin-top: 1.5rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: none;
  padding: 0;
  margin: 0;
}
.form-field label,
.form-field legend {
  font-weight: 600;
  color: #22252B;
  padding: 0;
}
.form-field__required {
  color: #B3261E;
}
.form-field input[type=text],
.form-field input[type=tel],
.form-field input[type=email],
.form-field select,
.form-field textarea {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  padding: 0.75rem;
  border: 2px solid #DBB7F9;
  border-radius: 8px;
  background: #fff;
  color: #22252B;
}
.form-field input[type=text]:focus-visible,
.form-field input[type=tel]:focus-visible,
.form-field input[type=email]:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
}
.form-field textarea {
  resize: vertical;
  font-family: inherit;
}
.form-field__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
.form-field__radio input {
  width: 20px;
  height: 20px;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.form-message p, .form-message li {
  margin: 0;
}
.form-message--success {
  background: #E6F4EA;
  color: #1F7A45;
}
.form-message--error {
  background: #FDECEA;
  color: #B3261E;
}
.form-message--error ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.form-message--error li {
  margin-bottom: 0.25rem;
}
.form-message--notice {
  background: #DBB7F9;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
}

.about-story__content {
  max-width: 68ch;
  margin: 0 auto;
}

.about-cta {
  background: #DBB7F9;
}
.about-cta__inner {
  max-width: 640px;
  text-align: center;
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.process-step {
  text-align: center;
}
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  margin-bottom: 0.5rem;
}
.process-step p {
  margin-bottom: 0;
}

.portfolio-card {
  background: #fff;
  border: 1px solid #DBB7F9;
  border-radius: 8px;
  overflow: hidden;
}
.portfolio-card__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.portfolio-card__content {
  padding: 1.5rem;
}
.portfolio-card__content h3 {
  margin-bottom: 0.5rem;
}
.portfolio-card__content p {
  margin-bottom: 0.75rem;
}
.portfolio-card__link {
  font-weight: 600;
}

.cost-estimator__container {
  max-width: 640px;
}
.cost-estimator__tool {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cost-estimator__features {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cost-estimator__features legend {
  font-weight: 600;
  color: #22252B;
  padding: 0;
  margin-bottom: 0.5rem;
}
.cost-estimator__feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
}
.cost-estimator__pages {
  border: 2px solid #DBB7F9;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  cursor: default;
}
.cost-estimator__feature-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cost-estimator__feature-label input[type=checkbox] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.cost-estimator__tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  background: #DBB7F9;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  white-space: nowrap;
}
.cost-estimator__number-input {
  width: 3.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border: 2px solid #DBB7F9;
  border-radius: 4px;
  background: #fff;
  color: #22252B;
}
.cost-estimator__number-input:focus-visible {
  border-color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
}
.cost-estimator__tag .cost-estimator__number-input {
  border-color: #fff;
}
.cost-estimator__included {
  margin-top: -0.75rem;
}
.cost-estimator__tempo input[type=range] {
  width: 100%;
  margin-top: 0.75rem;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 16px;
  background: #DBB7F9;
  outline-offset: 4px;
}
.cost-estimator__tempo input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cost-estimator__tempo input[type=range]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cost-estimator__tempo input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 16px;
  background: #DBB7F9;
}
.cost-estimator__tempo-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #52555C;
  margin-top: 0.25rem;
}
.cost-estimator__result {
  background: #DBB7F9;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.cost-estimator__result-label {
  font-size: 1rem;
  color: #52555C;
  margin-bottom: 0.25rem;
}
.cost-estimator__result-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  margin-bottom: 0.5rem;
}
.cost-estimator__result-weeks {
  font-size: 1rem;
  color: #52555C;
  margin-bottom: 0;
}
.cost-estimator__disclaimer {
  margin-top: -0.75rem;
}

.away-banner {
  background: #DBB7F9;
  text-align: center;
  padding: 0.75rem 1.5rem;
}
.away-banner p {
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  font-weight: 500;
  margin-bottom: 0;
}

.offerte-form__container {
  max-width: 640px;
}
.offerte-form__summary {
  background: #DBB7F9;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.offerte-form__summary ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #22252B;
}
.offerte-form__summary li {
  margin-bottom: 0.25rem;
}
.offerte-form__summary-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: rgb(71.5145631068, 2.4660194175, 251.5339805825);
  margin-bottom: 0.25rem;
}
.offerte-form__summary-weeks {
  font-size: 1rem;
  color: #52555C;
  margin-bottom: 0;
}
.offerte-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
