.hero {
    position: relative;
    overflow: hidden;
    padding-block: 72px 96px;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: -240px;
    left: -260px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgb(242 185 31 / 10%);
    content: "";
    filter: blur(2px);
}

.hero::after {
    position: absolute;
    z-index: -1;
    right: -240px;
    bottom: -280px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgb(48 37 134 / 8%);
    content: "";
}

.hero__inner {
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);
}

.hero__content {
    max-width: 680px;
}

.hero__eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgb(48 37 134 / 14%);
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgb(48 37 134 / 6%);
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 5.4vw, 4.9rem);
}

.hero h1 span {
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 14px;
    border-radius: 999px;
    background: rgb(242 185 31 / 52%);
    content: "";
}

.hero__lead {
    max-width: 620px;
    margin-bottom: 26px;
    color: var(--color-text-muted);
    font-size: 1.18rem;
    line-height: 1.75;
}

.hero__benefits {
    display: grid;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
    gap: 12px;
}

.hero__benefits li {
    position: relative;
    padding-left: 32px;
    color: var(--color-text);
    font-weight: 700;
}

.hero__benefits li::before {
    position: absolute;
    top: 0.05rem;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary);
    content: "✓";
    font-size: 0.8rem;
    font-weight: 900;
}

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

.hero__note {
    max-width: 540px;
    margin: 18px 0 0;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.hero__visual {
    min-width: 0;
}

.hero__placeholder {
    display: grid;
    min-height: 540px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            rgb(48 37 134 / 8%),
            rgb(242 185 31 / 16%)
        );
    color: var(--color-primary);
    font-weight: 800;
    box-shadow: var(--shadow-card);
}

.hero__image-wrap {
    position: relative;
    min-height: 540px;
}

.hero__image {
    width: 100%;
    height: 540px;
    border: 8px solid var(--color-surface);
    border-radius: var(--radius-large);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.hero__badge {
    position: absolute;
    display: flex;
    min-width: 160px;
    padding: 14px 18px;
    border: 1px solid rgb(48 37 134 / 12%);
    border-radius: 16px;
    background: rgb(255 255 255 / 94%);
    color: var(--color-primary);
    box-shadow: 0 16px 36px rgb(48 37 134 / 14%);
    backdrop-filter: blur(12px);
    flex-direction: column;
}

.hero__badge strong {
    font-size: 1rem;
    line-height: 1.3;
}

.hero__badge span {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.hero__badge--top {
    top: 34px;
    left: -38px;
}

.hero__badge--bottom {
    right: -28px;
    bottom: 32px;
}

/* Locations */

.locations {
    position: relative;
}

.locations__heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.locations__heading h2 {
    margin-bottom: 18px;
}

.locations__intro {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 1.12rem;
}

.locations__selector {
    display: grid;
    margin-bottom: 26px;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-option {
    display: grid;
    width: 100%;
    align-items: center;
    padding: 22px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 10px 30px rgb(48 37 134 / 6%);
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
    gap: 18px;
    grid-template-columns: auto 1fr auto;
}

.location-option:hover {
    transform: translateY(-2px);
    border-color: rgb(48 37 134 / 35%);
    box-shadow: var(--shadow-card);
}

.location-option.is-active {
    border-color: var(--color-accent);
    background:
        linear-gradient(
            135deg,
            var(--color-surface),
            rgb(242 185 31 / 10%)
        );
    box-shadow: 0 18px 45px rgb(48 37 134 / 12%);
}

.location-option__marker {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.location-option.is-active .location-option__marker {
    background: var(--color-primary);
    color: #ffffff;
}

.location-option__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.location-option__content strong {
    color: var(--color-primary);
    font-size: 1.12rem;
}

.location-option__content span {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.location-option__arrow {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 160ms ease;
}

.location-option.is-active .location-option__arrow {
    transform: translateX(4px);
}

.locations__details {
    position: relative;
}

.location-detail {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.location-detail[hidden] {
    display: none;
}

.location-detail__main {
    padding: 48px;
}

.location-detail__label {
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-detail h3 {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.location-detail__main > p:not(.location-detail__label) {
    max-width: 660px;
    margin-bottom: 26px;
    color: var(--color-text-muted);
    font-size: 1.04rem;
}

.location-detail__benefits {
    display: grid;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
    gap: 13px;
}

.location-detail__benefits li {
    position: relative;
    padding-left: 31px;
    font-weight: 700;
}

.location-detail__benefits li::before {
    position: absolute;
    top: 0.06rem;
    left: 0;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary);
    content: "✓";
    font-size: 0.75rem;
    font-weight: 900;
}

.location-detail__cta {
    width: fit-content;
}

.location-detail__aside {
    display: flex;
    justify-content: center;
    padding: 42px 36px;
    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: #ffffff;
    flex-direction: column;
}

.location-detail__aside-label {
    margin-bottom: 12px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-detail__aside strong {
    margin-bottom: 16px;
    font-size: 1.45rem;
    line-height: 1.3;
}

.location-detail__aside p {
    margin-bottom: 24px;
    color: rgb(255 255 255 / 78%);
}

.location-detail__places {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.location-detail__places span {
    padding: 7px 11px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 999px;
    background: rgb(255 255 255 / 8%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
}

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

.location-card {
    padding: 36px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.location-card h3 {
    color: var(--color-primary);
    font-size: 1.6rem;
}

.location-card a {
    color: var(--color-primary);
    font-weight: 800;
}

@media (max-width: 980px) {
    .hero__placeholder {
        min-height: 440px;
    }
}


@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__visual,
    .hero__placeholder {
        min-height: 380px;
    }

    .hero {
        padding-block: 56px 72px;
    }

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

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 26px;
    }
}

@media (max-width: 980px) {
    .hero__inner {
        gap: 48px;
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .hero__image-wrap {
        min-height: 460px;
    }

    .hero__image {
        height: 460px;
    }

    .hero__badge--top {
        left: 20px;
    }

    .hero__badge--bottom {
        right: 20px;
    }
}

@media (max-width: 650px) {
    .hero {
        padding-block: 48px 68px;
    }

    .hero__placeholder {
        min-height: 340px;
    }

    .hero__inner {
        gap: 38px;
    }

    .hero__eyebrow {
        font-size: 0.76rem;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.7rem);
    }

    .hero h1 span::after {
        bottom: 3px;
        height: 10px;
    }

    .hero__lead {
        font-size: 1.05rem;
    }

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

    .hero__actions .button {
        width: 100%;
    }

    .hero__image-wrap {
        min-height: 390px;
    }

    .hero__image {
        height: 390px;
        border-width: 5px;
    }

    .hero__badge {
        min-width: 0;
        padding: 11px 14px;
    }

    .hero__badge--top {
        top: 18px;
        left: 14px;
    }

    .hero__badge--bottom {
        right: 14px;
        bottom: 18px;
    }

    .process__heading {
        margin-bottom: 34px;
    }

    .process__steps {
        padding: 28px 24px;
    }

    .process__aside {
        padding: 30px 24px;
    }

    .process__closing {
        margin-top: 28px;
    }
    .pricing__heading {
        margin-bottom: 34px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-item {
        align-items: flex-start;
        gap: 16px;
    }

    .pricing-item b {
        font-size: 0.96rem;
    }

    .pricing-info__content {
        padding: 30px 24px;
    }

    .pricing-info__details {
        padding: 16px 24px 24px;
        grid-template-columns: 1fr;
    }

    .pricing-info__details div {
        min-height: 58px;
    }

    .pricing__footer {
        align-items: stretch;
        padding: 26px 24px;
        flex-direction: column;
    }

    .pricing__footer .button {
        width: 100%;
        text-align: center;
    }

    .about__layout {
        gap: 38px;
    }

    .about__lead {
        font-size: 1.08rem;
    }

    .about__photo-placeholder {
        min-height: 300px;
    }

    .about-value {
        padding: 22px 24px;
    }

    .contact__heading {
        margin-bottom: 34px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact__note {
        padding: 26px 24px;
    }

    .contact-location {
        padding: 24px;
    }

    .contact__map,
    .contact__map-placeholder {
        min-height: 280px;
    }
}

@media (max-width: 850px) {
    .locations__selector {
        grid-template-columns: 1fr;
    }

    .location-detail {
        grid-template-columns: 1fr;
    }

    .location-detail__aside {
        min-height: 280px;
    }

    .locations__heading {
        margin-bottom: 30px;
    }

    .location-option {
        padding: 18px;
        gap: 14px;
    }

    .location-option__marker {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .location-option__arrow {
        display: none;
    }

    .location-detail__main {
        padding: 30px 24px;
    }

    .location-detail__aside {
        min-height: 0;
        padding: 30px 24px;
    }

    .location-detail__cta {
        width: 100%;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 26px;
    }
    .services__heading {
        margin-bottom: 34px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
        padding: 26px 24px;
    }

    .service-price {
        min-height: 48px;
        gap: 14px;
    }

    .service-price span {
        font-size: 0.94rem;
    }

    .service-price strong {
        font-size: 0.94rem;
    }
    .process__layout {
        grid-template-columns: 1fr;
    }
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

    .pricing-info__content {
        border-right: 0;
        border-bottom: 1px solid rgb(255 255 255 / 16%);
    }

    .about__layout {
        grid-template-columns: 1fr;
    }

    .about__content {
        max-width: none;
    }

    .about__side {
        max-width: 680px;
    }

    .contact__layout {
        grid-template-columns: 1fr;
    }

    .contact__side {
        max-width: 680px;
    }
}

/* Services */

.services__heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.services__heading h2 {
    margin-bottom: 18px;
}

.services__intro {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.services__grid {
    display: grid;
    align-items: stretch;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.service-card {
    display: flex;
    min-height: 410px;
    padding: 34px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    flex-direction: column;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgb(48 37 134 / 20%);
    box-shadow: 0 20px 48px rgb(48 37 134 / 12%);
}

.service-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    gap: 14px;
}

.service-card__marker {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--color-accent);
    flex-shrink: 0;
}

.service-card h3 {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.45rem;
}

.service-card__prices {
    display: flex;
    margin-bottom: 28px;
    flex-direction: column;
}

.service-price {
    display: flex;
    min-height: 52px;
    justify-content: space-between;
    align-items: center;
    padding-block: 12px;
    border-bottom: 1px solid var(--color-border);
    gap: 20px;
}

.service-price:first-child {
    padding-top: 0;
}

.service-price span {
    color: var(--color-text-muted);
}

.service-price strong {
    flex-shrink: 0;
    color: var(--color-primary);
    font-weight: 800;
    white-space: nowrap;
}

.service-card__description {
    margin: 0 0 24px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.service-card__highlight {
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 16px;
    background: rgb(242 185 31 / 10%);
}

.service-card__highlight span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-text-muted);
    font-size: .9rem;
}

.service-card__highlight strong {
    color: var(--color-primary);
    font-size: 1.6rem;
}

.service-card__link {
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--color-accent);
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
    transition:
        border-color 160ms ease,
        color 160ms ease;
}

.service-card__link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.service-card--contact {
    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: white;
}

.service-card--contact .service-card__marker {
    background: var(--color-accent);
}

.service-card--contact h3,
.service-card--contact p {
    color: white;
}

.service-card__contact-note {
    margin-bottom: 28px;
    color: rgb(255 255 255 / 75%);
}

/* Process */

.process__heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.process__heading h2 {
    margin-bottom: 18px;
}

.process__intro {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.process__layout {
    display: grid;
    align-items: stretch;
    gap: 32px;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.process__steps {
    position: relative;
    display: flex;
    padding: 38px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    flex-direction: column;
}

.process-step {
    position: relative;
    display: grid;
    gap: 20px;
    grid-template-columns: auto 1fr;
}

.process-step:not(:last-child) {
    padding-bottom: 34px;
}

.process-step:not(:last-child)::after {
    position: absolute;
    top: 22px;
    bottom: 0;
    left: 7px;
    width: 2px;
    background: var(--color-border);
    content: "";
}

.process-step__marker {
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
    margin-top: 7px;
    border: 4px solid var(--color-surface);
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 2px rgb(48 37 134 / 12%);
}

.process-step__content h3 {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 1.22rem;
}

.process-step__content p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.process__aside {
    display: flex;
    justify-content: center;
    padding: 38px 34px;
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: #ffffff;
    box-shadow: var(--shadow-card);
    flex-direction: column;
}

.process__aside-label {
    margin-bottom: 10px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process__aside > strong {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1;
}

.process__aside > p {
    margin-bottom: 28px;
    color: rgb(255 255 255 / 78%);
}

.process__express {
    padding-top: 26px;
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.process__express span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.process__express strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.process__express p {
    margin: 0;
    color: rgb(255 255 255 / 72%);
    font-size: 0.92rem;
}

.process__closing {
    margin: 34px 0 0;
    color: var(--color-primary);
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 800;
    text-align: center;
}

/* Pricing */

.pricing__heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.pricing__heading h2 {
    margin-bottom: 18px;
}

.pricing__heading p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.pricing__grid {
    display: grid;
    align-items: stretch;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
    padding: 34px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.pricing-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    gap: 14px;
}

.pricing-card__marker {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--color-accent);
    flex-shrink: 0;
}

.pricing-card h3 {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.4rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
}

.pricing-item {
    display: flex;
    min-height: 72px;
    justify-content: space-between;
    align-items: center;
    padding-block: 16px;
    border-bottom: 1px solid var(--color-border);
    gap: 24px;
}

.pricing-item:first-child {
    padding-top: 0;
}

.pricing-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pricing-item > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.pricing-item strong {
    color: var(--color-text);
    font-size: 1rem;
}

.pricing-item span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-item b {
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 1.05rem;
    white-space: nowrap;
}

.pricing-card__note {
    margin: 24px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.pricing-info {
    display: grid;
    margin-top: 28px;
    overflow: hidden;
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: #ffffff;
    box-shadow: var(--shadow-card);
    grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
}

.pricing-info__content {
    padding: 38px;
    border-right: 1px solid rgb(255 255 255 / 16%);
}

.pricing-info__content h3 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.pricing-info__content p {
    margin: 0;
    color: rgb(255 255 255 / 76%);
    line-height: 1.7;
}

.pricing-info__details {
    display: grid;
    padding: 30px 38px;
    gap: 0 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-info__details div {
    display: flex;
    min-height: 66px;
    justify-content: space-between;
    align-items: center;
    padding-block: 14px;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    gap: 18px;
}

.pricing-info__details span {
    color: rgb(255 255 255 / 78%);
}

.pricing-info__details strong {
    flex-shrink: 0;
    color: var(--color-accent);
    white-space: nowrap;
}

.pricing__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 34px;
    padding: 28px 32px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    gap: 28px;
}

.pricing__footer p {
    max-width: 720px;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* About */

.about__layout {
    display: grid;
    align-items: center;
    gap: clamp(48px, 7vw, 90px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
}

.about__content {
    max-width: 680px;
}

.about__content h2 {
    max-width: 660px;
    margin-bottom: 24px;
}

.about__lead {
    margin-bottom: 22px;
    color: var(--color-primary);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.7;
}

.about__content > p:not(.eyebrow, .about__lead) {
    margin-bottom: 18px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.about__link {
    display: inline-block;
    width: fit-content;
    margin-top: 12px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--color-accent);
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
    transition:
        border-color 160ms ease,
        color 160ms ease;
}

.about__link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.about__side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about__photo {
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.about__photo-placeholder {
    display: flex;
    min-height: 390px;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: rgb(255 255 255 / 72%);
    text-align: center;
}

.about__photo-placeholder span {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about__values {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.about-value {
    padding: 24px 26px;
}

.about-value:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.about-value strong {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 1.02rem;
}

.about-value p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Contact */

.contact__heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.contact__heading h2 {
    margin-bottom: 18px;
}

.contact__heading p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.contact__layout {
    display: grid;
    align-items: stretch;
    gap: 32px;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.contact__content,
.contact__side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__cards {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    padding: 26px 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    color: inherit;
    box-shadow: var(--shadow-card);
    flex-direction: column;
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgb(48 37 134 / 20%);
    box-shadow: 0 20px 48px rgb(48 37 134 / 12%);
}

.contact-card__label {
    margin-bottom: 8px;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-card strong {
    margin-bottom: 5px;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.contact-card > span:last-child {
    color: var(--color-text-muted);
    font-size: 0.94rem;
}

.contact__note {
    padding: 28px;
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: #ffffff;
    box-shadow: var(--shadow-card);
}

.contact__note h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.contact__note p {
    margin: 0;
    color: rgb(255 255 255 / 78%);
    line-height: 1.75;
}

.contact__locations {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.contact-location {
    display: grid;
    padding: 26px 28px;
    gap: 16px;
    grid-template-columns: auto 1fr;
}

.contact-location:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.contact-location__marker {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--color-accent);
}

.contact-location strong {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 1.08rem;
}

.contact-location p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.contact__map {
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.contact__map-placeholder {
    display: flex;
    width: 100%;
    min-height: 320px;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: rgb(255 255 255 / 72%);
    text-align: center;
}

.contact__map-placeholder span {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}