.home-landing {
    position: relative;
    width: 100%;
    overflow-x: clip;
}

.home-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;
    border-bottom: 1px solid rgb(251 207 232 / 0.85);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.96) 0%, rgb(255 247 250 / 0.94) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgb(201 89 122 / 0.06);
}

[data-theme='dark'] .home-topbar {
    border-color: rgb(51 65 85 / 0.8);
    background: rgb(15 23 42 / 0.92);
}

.home-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 72rem;
    margin-inline: auto;
    padding: 1rem 1rem 1.1rem;
}

.home-topbar__brand {
    min-width: 0;
    flex-shrink: 0;
}

.home-topbar__nav {
    min-width: 0;
    flex-shrink: 0;
}

.home-topbar__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .home-topbar__links {
        gap: 0.5rem;
    }
}

@media (min-width: 640px) {
    .home-topbar__inner {
        padding: 1.1rem 1.25rem 1.2rem;
    }
}

.home-banner-shell {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgb(232 160 180 / 0.22) 0%, transparent 42%),
        radial-gradient(circle at 88% 12%, rgb(201 168 124 / 0.14) 0%, transparent 36%),
        linear-gradient(165deg, rgb(252 231 243) 0%, rgb(255 255 255) 45%, rgb(255 241 242) 100%);
    border-bottom: 1px solid rgb(251 207 232 / 0.85);
}

.home-banner-shell--business {
    background: linear-gradient(165deg, rgb(253 242 248) 0%, rgb(255 255 255) 40%, rgb(255 241 242) 100%);
}

[data-theme='dark'] .home-banner-shell {
    background: linear-gradient(165deg, rgb(15 23 42) 0%, rgb(30 41 59) 100%);
    border-color: rgb(51 65 85);
}

.home-audience-bar {
    background: transparent;
    border: 0;
}

.home-audience-bar__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    max-width: 72rem;
    margin-inline: auto;
    padding: 1.25rem 1rem 0.5rem;
}

@media (min-width: 640px) {
    .home-audience-bar__inner {
        padding: 1.5rem 1.25rem 0.65rem;
    }
}

.home-banner-shell .home-hero {
    background: transparent;
    border-bottom: 0;
    padding-top: 0.75rem;
}

@media (min-width: 640px) {
    .home-banner-shell .home-hero {
        padding-top: 1rem;
    }
}

.home-audience-switch {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 20rem);
    padding: 0.25rem;
    border-radius: 9999px;
    border: 1px solid rgb(251 207 232 / 0.95);
    background: rgb(255 255 255 / 0.82);
    box-shadow: 0 8px 28px rgb(201 89 122 / 0.1);
    backdrop-filter: blur(8px);
}

[data-theme='dark'] .home-audience-switch {
    border-color: rgb(51 65 85 / 0.9);
    background: rgb(15 23 42 / 0.55);
    box-shadow: 0 4px 18px rgb(0 0 0 / 0.25);
}

.home-audience-switch__thumb {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: calc(50% - 0.25rem);
    height: calc(100% - 0.5rem);
    border-radius: 9999px;
    background: linear-gradient(135deg, #c9597a 0%, #e8a0b4 100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.home-audience-switch.is-bedrijf .home-audience-switch__thumb {
    transform: translateX(100%);
}

.home-audience-switch__btn {
    position: relative;
    z-index: 1;
    display: block;
    border: 0;
    border-radius: 9999px;
    padding: 0.7rem 1rem;
    background: transparent;
    color: rgb(100 116 139);
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.home-audience-switch__btn.is-active {
    color: #ffffff;
}

.home-swipe-hint {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgb(148 163 184);
}

@media (min-width: 640px) {
    .home-swipe-hint {
        display: none;
    }
}

.home-audience-panel[hidden] {
    display: none !important;
}

.home-audience-panel.is-active {
    animation: home-panel-in 0.35s ease;
}

@keyframes home-panel-in {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }

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

.home-audience-panels.is-swipe-active {
    touch-action: pan-y;
    user-select: none;
}

.home-hero {
    padding: 2rem 1rem 2.5rem;
    background: linear-gradient(165deg, rgb(252 231 243) 0%, rgb(255 255 255) 45%, rgb(255 241 242) 100%);
    border-bottom: 1px solid rgb(251 207 232 / 0.85);
}

@media (min-width: 640px) {
    .home-hero {
        padding: 2.5rem 1.25rem 3rem;
    }
}

.home-hero--business {
    background: linear-gradient(165deg, rgb(253 242 248) 0%, rgb(255 255 255) 40%, rgb(255 241 242) 100%);
}

[data-theme='dark'] .home-hero {
    background: linear-gradient(165deg, rgb(15 23 42) 0%, rgb(30 41 59) 100%);
    border-color: rgb(51 65 85);
}

.home-hero__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
    max-width: 72rem;
    margin-inline: auto;
}

@media (min-width: 960px) {
    .home-hero__inner {
        grid-template-columns: 1fr 1.05fr;
        gap: 3rem;
    }
}

@media (max-width: 959px) {
    .home-hero__inner > .home-video-slot {
        order: -1;
    }
}

.home-hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9597a;
}

.home-hero__eyebrow::before,
.home-hero__eyebrow::after {
    content: '✦';
    margin-inline: 0.45rem;
    font-size: 0.55rem;
    color: #c9a87c;
    vertical-align: middle;
}

[data-theme='dark'] .home-hero__eyebrow {
    color: rgb(249 168 212);
}

.home-hero__title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: rgb(62 45 52);
}

.home-hero__title em,
.home-hero__title--accent {
    font-style: italic;
    font-weight: 500;
    color: #c9597a;
}

.home-hero__title--light {
    font-style: italic;
    font-weight: 500;
    color: #fff;
}

[data-theme='dark'] .home-hero__title {
    color: rgb(255 241 242);
}

[data-theme='dark'] .home-hero__title em,
[data-theme='dark'] .home-hero__title--accent {
    color: rgb(251 182 206);
}

.home-hero__lead {
    margin: 1rem 0 0;
    max-width: 36rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgb(71 85 105);
}

[data-theme='dark'] .home-hero__lead {
    color: rgb(203 213 225);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.home-hero__stats {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 480px) {
    .home-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-hero__stats li {
    padding: 0.85rem 0.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgb(251 207 232 / 0.9);
    background: rgb(255 255 255 / 0.88);
    text-align: center;
    box-shadow: 0 10px 28px rgb(201 89 122 / 0.06);
}

[data-theme='dark'] .home-hero__stats li {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42 / 0.6);
}

.home-hero__stats strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    color: rgb(15 23 42);
}

[data-theme='dark'] .home-hero__stats strong {
    color: rgb(255 241 242);
}

.home-hero__stats span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.6875rem;
    color: rgb(100 116 139);
}

.home-video-slot {
    width: 100%;
    min-width: 0;
}

.home-video-slot__frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgb(251 207 232 / 0.95);
    background: linear-gradient(145deg, rgb(255 247 250), rgb(252 231 243));
    aspect-ratio: 16 / 10;
    min-height: 11.5rem;
    box-shadow: 0 24px 60px rgb(201 89 122 / 0.14);
}

.home-video-slot--large .home-video-slot__frame {
    aspect-ratio: 16 / 9;
    min-height: 12.5rem;
}

[data-theme='dark'] .home-video-slot__frame {
    border-color: rgb(51 65 85);
    background: linear-gradient(145deg, rgb(30 41 59), rgb(15 23 42));
}

.home-video-slot__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgb(15 23 42);
}

.home-video-slot__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    text-align: center;
}

.home-video-slot__placeholder[hidden] {
    display: none !important;
}

.home-video-slot__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.95);
    color: #c9597a;
    box-shadow: 0 8px 24px rgb(15 23 42 / 0.15);
}

.home-video-slot__label {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgb(30 41 59);
}

[data-theme='dark'] .home-video-slot__label {
    color: rgb(251 207 232);
}

.home-video-slot__hint {
    margin: 0;
    font-size: 0.6875rem;
    color: rgb(100 116 139);
}

.home-video-slot__hint code {
    font-size: 0.625rem;
    padding: 0.1rem 0.35rem;
    border-radius: 0.25rem;
    background: rgb(255 255 255 / 0.7);
}

.home-section {
    padding: 3.5rem 1.25rem;
    max-width: 72rem;
    margin-inline: auto;
}

.home-section--alt {
    background: rgb(255 247 250 / 0.92);
    border-block: 1px solid rgb(251 207 232);
    max-width: none;
}

.home-section--alt > .home-section__head,
.home-section--alt > .home-feature-row,
.home-section--alt > .home-services-grid {
    max-width: 72rem;
    margin-inline: auto;
}

[data-theme='dark'] .home-section--alt {
    background: rgb(15 23 42 / 0.5);
    border-color: rgb(51 65 85);
}

.home-section__head {
    margin-bottom: 2rem;
    text-align: center;
}

.home-section__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9597a;
}

[data-theme='dark'] .home-section__eyebrow {
    color: rgb(249 168 212);
}

.home-section__title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: rgb(62 45 52);
}

.home-section__title em {
    font-style: italic;
    font-weight: 500;
    color: #c9597a;
}

[data-theme='dark'] .home-section__title {
    color: rgb(255 241 242);
}

[data-theme='dark'] .home-section__title em {
    color: rgb(251 182 206);
}

.home-section__intro {
    margin: 0.75rem auto 0;
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgb(100 116 139);
}

.home-steps {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .home-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-step-card {
    padding: 1.35rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgb(251 207 232);
    background: rgb(255 255 255);
    box-shadow: 0 4px 16px rgb(15 23 42 / 0.04);
}

[data-theme='dark'] .home-step-card {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42 / 0.85);
}

.home-step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #c9597a 0%, #e8a0b4 100%);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 800;
    box-shadow: 0 6px 16px rgb(201 89 122 / 0.25);
}

.home-step-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: rgb(15 23 42);
}

[data-theme='dark'] .home-step-card h3 {
    color: rgb(255 241 242);
}

.home-step-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgb(100 116 139);
}

/* Stappen — particulier & bedrijf (full-width band) */
.home-section--steps {
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding: 3.5rem 0;
    background:
        radial-gradient(circle at 8% 20%, rgb(201 89 122 / 0.1) 0%, transparent 38%),
        radial-gradient(circle at 92% 80%, rgb(232 160 180 / 0.14) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgb(201 168 124 / 0.08) 0%, transparent 34%),
        linear-gradient(180deg, rgb(253 242 248) 0%, rgb(255 255 255) 52%, rgb(253 242 248) 100%);
    border-block: 1px solid rgb(251 207 232);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.85);
}

[data-theme='dark'] .home-section--steps {
    background:
        radial-gradient(circle at 8% 20%, rgb(201 89 122 / 0.14) 0%, transparent 38%),
        radial-gradient(circle at 92% 80%, rgb(232 160 180 / 0.16) 0%, transparent 40%),
        linear-gradient(180deg, rgb(15 23 42) 0%, rgb(30 41 59) 52%, rgb(15 23 42) 100%);
    border-color: rgb(51 65 85);
    box-shadow: none;
}

.home-section--steps > .home-section__head,
.home-section--steps > .home-steps,
.home-section--steps > .home-steps--premium {
    position: relative;
    z-index: 1;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.home-steps--premium {
    position: relative;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .home-steps--premium {
        gap: 1.5rem;
    }
}

.home-step-card--premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.35rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgb(251 207 232 / 0.9);
    background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(255 241 242) 100%);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.9) inset,
        0 10px 28px rgb(15 23 42 / 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-step-card--premium:hover {
    transform: translateY(-4px);
    border-color: rgb(232 160 180 / 0.35);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.9) inset,
        0 16px 40px rgb(201 89 122 / 0.12);
}

[data-theme='dark'] .home-step-card--premium {
    border-color: rgb(51 65 85 / 0.9);
    background: linear-gradient(180deg, rgb(30 41 59) 0%, rgb(15 23 42) 100%);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.04) inset,
        0 10px 28px rgb(0 0 0 / 0.25);
}

[data-theme='dark'] .home-step-card--premium:hover {
    border-color: rgb(232 160 180 / 0.45);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.04) inset,
        0 16px 40px rgb(232 160 180 / 0.12);
}

.home-step-card--premium .home-step-card__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    margin-bottom: 1.1rem;
    border-radius: 9999px;
    background: rgb(255 255 255);
    box-shadow:
        0 0 0 4px rgb(255 241 242),
        0 8px 22px rgb(201 89 122 / 0.18);
}

[data-theme='dark'] .home-step-card--premium .home-step-card__badge {
    background: rgb(15 23 42);
    box-shadow:
        0 0 0 4px rgb(30 41 59),
        0 8px 22px rgb(0 0 0 / 0.35);
}

.home-step-card--premium .home-step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, #c9597a 0%, #e8a0b4 100%);
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.25);
}

.home-step-card--premium h3 {
    margin: 0 0 0.55rem;
    font-size: 1.125rem;
}

.home-step-card--premium p {
    max-width: 18rem;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 1.6;
}

.home-feature-row {
    display: grid;
    gap: 1.75rem;
    align-items: center;
    padding-block: 2rem;
    border-bottom: 1px solid rgb(251 207 232 / 0.75);
}

.home-feature-row .home-video-slot {
    width: 100%;
}

.home-feature-row:last-child {
    border-bottom: 0;
}

@media (min-width: 900px) {
    .home-feature-row {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding-block: 2.5rem;
    }

    .home-feature-row--reverse .home-feature-row__copy {
        order: 2;
    }

    .home-feature-row--reverse .home-video-slot {
        order: 1;
    }
}

.home-feature-row__title,
.home-step-card--premium h3,
.home-service-card__body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #9e4a63;
}

[data-theme='dark'] .home-feature-row__title,
[data-theme='dark'] .home-step-card--premium h3,
[data-theme='dark'] .home-service-card__body h3 {
    color: rgb(251 182 206);
}

.home-feature-row__title {
    margin: 0 0 0.65rem;
    font-size: 1.25rem;
}

.home-feature-row__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgb(71 85 105);
}

[data-theme='dark'] .home-feature-row__text {
    color: rgb(203 213 225);
}

.home-feature-row__list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgb(71 85 105);
}

[data-theme='dark'] .home-feature-row__list {
    color: rgb(203 213 225);
}

.home-feature-row__list li + li {
    margin-top: 0.35rem;
}

.home-feature-row__link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #c9597a;
    text-decoration: none;
}

.home-feature-row__link:hover {
    text-decoration: underline;
}

.home-services-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.home-services-grid--3x3 {
    gap: 1.15rem;
}

@media (min-width: 640px) {
    .home-services-grid--3x3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .home-services-grid--3x3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

.home-service-tile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    align-items: start;
    min-height: auto;
    padding: 1.15rem 1.25rem;
    border-radius: 1.15rem;
    border: 1px solid rgb(251 207 232);
    background: linear-gradient(165deg, rgb(255 255 255) 0%, rgb(255 241 242) 100%);
    box-shadow: 0 6px 20px rgb(15 23 42 / 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-service-tile:hover {
    transform: translateY(-3px);
    border-color: rgb(203 213 225);
    box-shadow: 0 14px 32px rgb(15 23 42 / 0.1);
}

[data-theme='dark'] .home-service-tile {
    border-color: rgb(51 65 85);
    background: linear-gradient(165deg, rgb(30 41 59) 0%, rgb(15 23 42) 100%);
}

.home-service-tile--business {
    border-color: rgb(203 213 225);
}

.home-service-tile__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    grid-row: 1 / -1;
    align-self: center;
    flex-shrink: 0;
    border-radius: 0.85rem;
    background: linear-gradient(145deg, rgb(252 231 243), rgb(251 207 232));
    font-size: 1.35rem;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.8);
}

[data-theme='dark'] .home-service-tile__icon-wrap {
    background: linear-gradient(145deg, rgb(51 65 85), rgb(30 41 59));
    box-shadow: none;
}

.home-service-tile__icon {
    grid-row: 1 / -1;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    font-size: 1.35rem;
    line-height: 1;
}

.home-service-tile h3 {
    margin: 0 0 0.3rem;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgb(15 23 42);
}

[data-theme='dark'] .home-service-tile h3 {
    color: rgb(255 241 242);
}

.home-service-tile p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgb(100 116 139);
}

/* Particulier diensten — premium kaarten */
.home-section--services {
    position: relative;
    max-width: none;
    padding-block: 4rem;
    background:
        radial-gradient(circle at 12% 18%, rgb(201 89 122 / 0.06) 0%, transparent 42%),
        radial-gradient(circle at 88% 82%, rgb(124 58 237 / 0.05) 0%, transparent 40%),
        linear-gradient(180deg, rgb(255 241 242) 0%, rgb(255 255 255) 50%, rgb(255 241 242) 100%);
    border-block: 1px solid rgb(251 207 232 / 0.9);
}

.home-section--services > .home-section__head,
.home-section--services > .home-services-grid--cards {
    max-width: 72rem;
    margin-inline: auto;
}

[data-theme='dark'] .home-section--services {
    background:
        radial-gradient(circle at 12% 18%, rgb(201 89 122 / 0.1) 0%, transparent 42%),
        radial-gradient(circle at 88% 82%, rgb(232 160 180 / 0.08) 0%, transparent 40%),
        linear-gradient(180deg, rgb(15 23 42) 0%, rgb(30 41 59) 50%, rgb(15 23 42) 100%);
    border-color: rgb(51 65 85);
}

.home-services-grid--cards {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .home-services-grid--cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

@media (min-width: 960px) {
    .home-services-grid--cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.home-service-card {
    --service-accent: #c9597a;
    --service-accent-soft: rgb(201 89 122 / 0.1);
    --service-accent-glow: rgb(201 89 122 / 0.18);

    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.15rem;
    align-items: center;
    padding: 1.35rem 1.4rem;
    border-radius: 1.25rem;
    border: 1px solid rgb(251 207 232 / 0.85);
    background: rgb(255 255 255 / 0.92);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.9) inset,
        0 8px 24px rgb(15 23 42 / 0.05);
    overflow: hidden;
    transition:
        transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.home-service-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--service-accent), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--service-accent-soft);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.9) inset,
        0 16px 40px var(--service-accent-glow);
}

.home-service-card:hover::before {
    opacity: 1;
}

[data-theme='dark'] .home-service-card {
    border-color: rgb(51 65 85 / 0.9);
    background: rgb(30 41 59 / 0.75);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.04) inset,
        0 8px 24px rgb(0 0 0 / 0.25);
}

[data-theme='dark'] .home-service-card:hover {
    border-color: var(--service-accent-soft);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.04) inset,
        0 16px 40px var(--service-accent-glow);
}

.home-service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 1rem;
    color: #fff;
    background: linear-gradient(145deg, var(--service-accent), color-mix(in srgb, var(--service-accent) 75%, #000));
    box-shadow:
        0 4px 12px var(--service-accent-glow),
        inset 0 1px 0 rgb(255 255 255 / 0.25);
}

.home-service-card__icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.home-service-card__body {
    min-width: 0;
}

.home-service-card__body h3 {
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
}

.home-service-card__body p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgb(100 116 139);
}

[data-theme='dark'] .home-service-card__body p {
    color: rgb(148 163 184);
}

.home-service-card--blue {
    --service-accent: #c9597a;
    --service-accent-soft: rgb(201 89 122 / 0.22);
    --service-accent-glow: rgb(201 89 122 / 0.16);
}

.home-service-card--emerald {
    --service-accent: #059669;
    --service-accent-soft: rgb(5 150 105 / 0.22);
    --service-accent-glow: rgb(5 150 105 / 0.16);
}

.home-service-card--violet {
    --service-accent: #7c3aed;
    --service-accent-soft: rgb(124 58 237 / 0.22);
    --service-accent-glow: rgb(124 58 237 / 0.16);
}

.home-service-card--amber {
    --service-accent: #d97706;
    --service-accent-soft: rgb(217 119 6 / 0.22);
    --service-accent-glow: rgb(217 119 6 / 0.16);
}

.home-service-card--rose {
    --service-accent: #e11d48;
    --service-accent-soft: rgb(225 29 72 / 0.22);
    --service-accent-glow: rgb(225 29 72 / 0.16);
}

.home-service-card--teal {
    --service-accent: #0d9488;
    --service-accent-soft: rgb(13 148 136 / 0.22);
    --service-accent-glow: rgb(13 148 136 / 0.16);
}

.home-cta-banner {
    padding: 3rem 1.25rem 4rem;
    background: linear-gradient(135deg, #c9597a 0%, #b85a78 55%, #e8a0b4 100%);
    color: #fff;
}

.home-cta-banner--business {
    background: linear-gradient(135deg, #8a3d55 0%, #c9597a 55%, #e8a0b4 100%);
}

.home-cta-banner__inner {
    max-width: 40rem;
    margin-inline: auto;
    text-align: center;
}

.home-cta-banner h2,
.home-cta-banner .home-hero__title {
    margin: 0;
}

.home-cta-banner h2:not(.home-hero__title) {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-cta-banner p {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(251 207 232);
}

.home-cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.home-cta-banner .btn-primary {
    color: #c9597a;
    background: #fff;
    box-shadow: 0 4px 16px rgb(15 23 42 / 0.15);
}

.home-cta-banner .btn-primary:hover {
    color: #9e4a63;
    background: rgb(255 241 242);
}

.home-cta-banner .btn-secondary {
    border-color: rgb(255 255 255 / 0.55);
    color: #fff;
    background: rgb(255 255 255 / 0.08);
}

.home-cta-banner .btn-secondary:hover {
    border-color: #fff;
    color: #fff;
    background: rgb(255 255 255 / 0.16);
}

.home-cta-banner__ghost {
    align-self: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(251 207 232);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-site-footer {
    padding: 2rem 1.25rem 2.5rem;
    border-top: 1px solid rgb(251 207 232);
    background: rgb(255 255 255);
}

[data-theme='dark'] .home-site-footer {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.home-site-footer__inner {
    max-width: 72rem;
    margin-inline: auto;
    text-align: center;
}

.home-site-footer__brand {
    display: flex;
    justify-content: center;
    margin: 0;
}

.home-site-footer__brand .brand-logo {
    justify-content: center;
}

.home-site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 0.85rem;
}

.home-site-footer__nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(71 85 105);
    text-decoration: none;
}

.home-site-footer__nav a:hover {
    color: #c9597a;
    text-decoration: underline;
}

.home-site-footer__demo {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    color: rgb(148 163 184);
}
