:root {
    --color-text: #333333;
    --color-muted: #666666;
    --color-surface: #ffffff;
    --color-soft: #f7f9fc;
    --color-blue-soft: #a9def9;
    --color-pink: #ff99c8;
    --color-border: rgba(0, 0, 0, 0.08);
    --font-heading: "Montserrat", "Arial", sans-serif;
    --font-body: "Open Sans", "Arial", sans-serif;
    --container: 1400px;
    --anchor-offset: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

main section[id],
main [id="sluzby"] {
    scroll-margin-top: var(--anchor-offset);
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-surface);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-underline-position: under;
}

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

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header .container,
.site-footer .container {
    width: min(calc(100% - 110px), 1800px);
}

.narrow {
    max-width: 860px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 10px 14px;
    background: var(--color-text);
    color: #ffffff;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-block: 55px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: min(550px, 46vw);
    text-decoration: none;
}

.brand__logo {
    width: 100%;
    height: auto;
}

.brand__logo--legal {
    max-width: 360px;
}

.primary-nav__list,
.footer-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav__link {
    color: #666666;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
    color: #0d88c0;
}

.nav-toggle {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.button--primary {
    background: var(--color-soft);
    color: var(--color-text);
    border-color: var(--color-soft);
}

.button--secondary,
.button--ghost {
    background: #ffffff;
    color: var(--color-text);
    border-color: var(--color-border);
}

.button--small {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
}

.section {
    padding-block: 100px;
}

.hero {
    display: grid;
    align-items: center;
    padding-block: 8.6vw;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, #ffffff 78%),
        var(--hero-background-image);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.hero__inner {
    max-width: 950px;
}

.hero h1 {
    margin: 0 0 5px;
    color: #333333;
    font-family: var(--font-heading);
    font-size: 65px;
    font-weight: 600;
    line-height: 1.2;
}

.hero__subtitle {
    margin: 0;
    color: #333333;
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1.2;
}

.hero__lead {
    margin: 24px auto 0;
    max-width: 860px;
    color: #333333;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 2;
}

.hero__scroll {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    color: var(--color-blue-soft);
    text-decoration: none;
}

.hero__scroll svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-section {
    position: relative;
    background: #ffffff;
    overflow-anchor: none;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2.5vw;
    min-height: 24px;
    background: #ffffff;
    clip-path: ellipse(75% 100% at 50% 0%);
    pointer-events: none;
}

.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
}

.service-card {
    padding: 185px 4% 24px;
    color: #333333;
    text-align: center;
}

.service-card--individual {
    background: #ffdbc3;
}

.service-card--family {
    background: #a9def9;
}

.service-card--couple {
    background: #d0f4de;
}

.service-card--sandtray {
    background: #e4c1f9;
}

.service-card__image {
    width: 65%;
    max-width: 154px;
    margin: 0 auto 24px;
    opacity: 0.18;
}

.service-card__intro h2 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.service-card__intro p,
.accordion__panel {
    margin: 0;
    font-size: 15px;
    line-height: 2;
}

.accordion {
    margin-top: 28px;
}

.accordion__item + .accordion__item {
    margin-top: 22px;
}

.accordion__item--topics {
    width: min(76%, 330px);
    margin-inline: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 6px;
}

.accordion__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0;
    color: #333333;
    background: transparent;
    border: 0;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
}

.accordion__item--topics .accordion__trigger {
    font-size: 14px;
}

.accordion__trigger::after {
    content: "+";
    flex: 0 0 auto;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.accordion__trigger[aria-expanded="true"]::after {
    content: "-";
}

.accordion__trigger:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 6px;
}

.accordion__panel {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    transition:
        max-height 250ms ease-in-out,
        opacity 250ms ease-in-out,
        padding-top 250ms ease-in-out;
}

.accordion__panel.is-open {
    padding-top: 16px;
    opacity: 1;
}

.accordion__panel[hidden] {
    display: none;
}

.accordion__panel p {
    margin: 0;
}

.accordion__panel p + p {
    margin-top: 16px;
}

.accordion__panel p + ul {
    margin-top: 10px;
}

.accordion__panel ul {
    margin: 0;
    padding-left: 22px;
    text-align: left;
}

.accordion__panel li + li {
    margin-top: 4px;
}

.home-row {
    width: min(70%, 1350px);
    margin-inline: auto;
}

.about-section {
    padding: 4.5% 0 0;
    background: #ffffff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4.25%;
    align-items: stretch;
}

.about-photo-wrap {
    border-radius: 6px;
}

.about-photo {
    width: 100%;
    border-radius: 6px;
}

.about-card {
    display: flex;
    align-items: center;
    background: var(--color-soft);
    border-radius: 6px;
}

.about-card__content {
    max-width: 700px;
    padding: 6%;
}

.about-card h2 {
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: 300;
    line-height: 1.4;
}

.about-card__role {
    margin: 0 0 20px;
    color: #333333;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
}

.about-card p {
    margin: 0;
    font-size: 15px;
    line-height: 2;
}

.about-card p + p {
    margin-top: 16px;
}

.about-card__role + p {
    margin-top: 0;
}

.about-story {
    margin-top: 58px;
    margin-bottom: 40px;
    padding: 38px 52px;
    background: var(--color-soft);
    border-radius: 6px;
}

.about-story p {
    margin: 0;
    color: #333333;
    font-size: 15px;
    line-height: 2;
}

.about-story p + p {
    margin-top: 16px;
}

.credentials-section {
    padding: 0 0 3.25%;
    background: #ffffff;
}

.credentials-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.credential-card {
    min-height: 1120px;
    background: var(--color-soft);
    border-radius: 6px;
}

.credential-card h3 {
    margin: 0;
    padding-top: 22%;
    color: #333333;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.credential-card__body {
    padding: 8% 15% 18%;
    color: #333333;
    font-size: 14px;
}

.credential-card__body p {
    margin: 0 0 18px;
}

.credential-card__body p:last-child {
    margin-bottom: 0;
}

.membership-badge {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 58%;
}

.membership-badge img {
    width: 60%;
    max-width: 204px;
}

.membership-note {
    width: min(80%, 765px);
    max-width: 765px;
    margin: clamp(34px, 4vw, 68px) auto 0;
    color: #333333;
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    text-align: center;
}

.pricing-section {
    padding: 190px 0 150px;
    background: #ffffff;
    text-align: center;
}

.pricing-intro {
    width: min(90%, 765px);
    margin-inline: auto;
}

.pricing-intro h2 {
    margin-bottom: 14px;
    color: #333333;
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.pricing-intro p {
    max-width: 501px;
    margin: 0 auto;
    color: #333333;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    width: min(70%, 1350px);
    margin: 4.5% auto 0;
}

.price-card {
    min-height: 236px;
    padding: 46px 32px;
    background: var(--color-soft);
    border: 2px solid #383838;
    border-radius: 6px;
    color: #000000;
    text-align: center;
}

.price-card h3 {
    margin: 0 0 10px;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
}

.price-card__amount {
    margin: 0;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.5;
}

.price-card__duration {
    margin: 30px 0 0;
    color: #333333;
    font-size: 12px;
    line-height: 1.2;
}

.pricing-cancelation {
    width: min(90%, 520px);
    margin: 42px auto 0;
    color: #333333;
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 108px 0 58px;
    background: rgba(169, 222, 249, 0.51);
    border-radius: 50% 50% 0 0 / 10% 10% 0 0;
}

.contact-section::before {
    content: none;
}

.contact-heading,
.contact-layout {
    position: relative;
    z-index: 1;
}

.contact-heading {
    width: min(90%, 765px);
    margin-inline: auto;
    text-align: center;
}

.contact-heading h2 {
    margin-bottom: 20px;
    color: #333333;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-heading p {
    margin: 0;
    color: #333333;
    font-size: 22px;
    line-height: 1.8;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 48px;
    width: min(70%, 900px);
    margin: 42px auto 0;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #666666;
    font-style: normal;
}

.contact-details__item {
    display: block;
}

.contact-details strong {
    display: block;
    margin-bottom: 4px;
    color: #333333;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-details a,
.contact-details span span {
    color: #666666;
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

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

.form-field {
    display: grid;
    gap: 7px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field--honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field label {
    color: rgba(0, 0, 0, 0.85);
    font-size: 16px;
    line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: rgba(0, 0, 0, 0.7);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    font: inherit;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    outline: 2px solid #066aab;
    outline-offset: 2px;
}

.form-status {
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.form-status p {
    margin: 0;
}

.form-status--success {
    color: #1f5632;
    background: rgba(208, 244, 222, 0.9);
}

.form-status--error {
    color: #7a1f1f;
    background: rgba(255, 219, 195, 0.95);
}

.form-error {
    color: #7a1f1f;
    font-size: 13px;
    line-height: 1.4;
}

.turnstile-field {
    min-height: 72px;
}

.contact-form__submit {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 46px;
    padding: 12px 24px;
    color: #ffffff;
    background: #066aab;
    border: 0;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.contact-form__submit:focus-visible {
    outline: 2px solid #333333;
    outline-offset: 3px;
}

.section--placeholder {
    min-height: 55vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--color-pink);
    font-family: var(--font-heading);
    font-weight: 600;
}

h1,
h2,
h3 {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

h1 {
    font-size: clamp(44px, 7vw, 65px);
}

.lead {
    max-width: 760px;
    margin: 0 auto;
    font-size: 20px;
}

.site-footer {
    background: #ffffff;
    font-size: 13px;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding-block: 16px;
}

.footer-logo {
    display: block;
    width: 150px;
    max-width: 150px;
    text-decoration: none;
}

.footer-logo img {
    width: 100%;
}

.footer-business {
    min-width: 0;
    color: #666666;
    font-size: clamp(9px, 0.58vw, 12px);
    line-height: 1.45;
    text-align: center;
}

.footer-business p {
    margin: 0;
    white-space: nowrap;
}

.footer-nav {
    padding-block: 0;
}

.footer-nav ul {
    justify-content: flex-end;
    gap: 22px;
    font-size: clamp(9px, 0.58vw, 12px);
    line-height: 1.45;
    white-space: nowrap;
}

.footer-nav a {
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.cookie-consent {
    position: fixed;
    inset: auto 16px 16px;
    z-index: 90;
}

.cookie-consent__panel {
    max-width: 720px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.cookie-consent__eyebrow {
    margin: 0 0 4px;
    color: var(--color-pink);
    font-weight: 700;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.cookie-consent__option {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1180px) {
    .footer-inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px 22px;
    }

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

    .footer-business p {
        white-space: normal;
    }

    .footer-nav {
        grid-column: 1 / -1;
        justify-self: end;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        gap: 14px;
        white-space: normal;
    }
}

@media (max-width: 980px) {
    .site-header .container,
    .site-footer .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .header-inner {
        position: relative;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding-block: 28px;
    }

    .brand {
        width: min(70%, 280px);
    }

    .nav-toggle {
        display: inline-flex;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 20;
        width: 44px;
        height: 44px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.22);
        border-radius: 10px;
    }

    .nav-toggle__line {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--color-text);
    }

    .primary-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 96px;
        padding: 20px;
        background: #ffffff;
        border: 1px solid var(--color-border);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__list {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: end;
        text-align: right;
    }

    .footer-business {
        text-align: right;
        font-size: 12px;
    }

    .footer-business p {
        white-space: normal;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

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

    .service-card {
        padding: 80px 10%;
    }

    .accordion__item + .accordion__item {
        margin-top: 22px;
    }

    .accordion__item--topics {
        width: min(100%, 330px);
    }

    .about-section {
        padding: 65px 0;
    }

    .about-layout,
    .credentials-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-photo {
        width: 45%;
        margin-inline: auto;
    }

    .about-card {
        margin-top: 30px;
    }

    .credential-card h3 {
        padding-top: 12%;
    }

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

    .credential-card__body {
        padding-bottom: 12%;
    }

    .membership-badge {
        padding: 10% 0;
    }

    .membership-badge img {
        width: 50%;
        max-width: 170px;
    }

    .membership-note {
        width: min(80%, 765px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: min(90%, 350px);
    }

    .contact-layout {
        grid-template-columns: 1fr;
        width: min(80%, 900px);
    }

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

@media (max-width: 767px) {
    .hero {
        padding-block: 8vw;
        background-image:
            linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, #ffffff 78%),
            var(--hero-background-image);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .accordion__panel {
        transition: none;
    }
}

@media (max-width: 980px) {
    .hero h1 {
        font-size: 55px;
    }

    .hero__subtitle {
        font-size: 55px;
    }

    .hero__lead {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --anchor-offset: 92px;
    }

    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .container,
    .site-header .container,
    .site-footer .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .header-inner {
        padding-block: 22px;
    }

    .brand {
        width: min(78%, 320px);
        min-height: 44px;
        justify-content: center;
    }

    .primary-nav {
        top: 88px;
    }

    .primary-nav__link {
        display: flex;
        min-height: 44px;
        align-items: center;
    }

    .hero__inner {
        width: min(calc(100% - 40px), 360px);
        overflow: visible;
    }

    .hero {
        padding: 14px 0 10px;
        background-image:
            linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.78) 62%, #ffffff 92%),
            var(--hero-background-image);
    }

    .hero h1 {
        margin-bottom: 6px;
        font-size: clamp(34px, 9vw, 38px);
        line-height: 1.16;
    }

    .hero__subtitle {
        font-size: clamp(24px, 6.7vw, 28px);
        line-height: 1.25;
    }

    .hero__lead {
        max-width: 340px;
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.6;
    }

    .hero__scroll {
        width: 44px;
        height: 44px;
        margin-top: 8px;
    }

    .hero__scroll svg {
        width: 44px;
        height: 44px;
    }

    .services-section::before {
        height: 18px;
        min-height: 18px;
    }

    .service-card {
        padding: 54px 28px 48px;
    }

    .service-card__image {
        width: 52%;
        max-width: 128px;
        margin-bottom: 18px;
    }

    .service-card__intro {
        max-width: 330px;
        margin-inline: auto;
        overflow: hidden;
    }

    .service-card__intro h2 {
        margin-bottom: 16px;
        font-size: 22px;
        line-height: 1.35;
    }

    .service-card__intro p,
    .accordion__panel {
        font-size: 16px;
        line-height: 1.6;
    }

    .accordion {
        margin-top: 18px;
    }

    .accordion__item + .accordion__item {
        margin-top: 12px;
    }

    .accordion__item--topics {
        max-width: 330px;
        padding: 16px;
    }

    .accordion__trigger {
        min-height: 44px;
        font-size: 15px;
        line-height: 1.35;
    }

    .accordion__item--topics .accordion__trigger {
        font-size: 14px;
    }

    .accordion__panel.is-open {
        padding-top: 12px;
    }

    .about-section {
        padding: 56px 0 0;
    }

    .home-row {
        width: min(calc(100% - 40px), 560px);
    }

    .about-photo {
        width: min(68%, 250px);
    }

    .about-card h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .about-card {
        margin-top: 18px;
    }

    .about-card__content {
        padding: 28px 24px;
    }

    .about-card__role {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    .about-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-card p + p {
        margin-top: 14px;
    }

    .about-story {
        max-width: 560px;
        margin-top: 28px;
        margin-bottom: 0;
        padding: 28px 24px;
    }

    .about-story p {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-story p + p {
        margin-top: 18px;
    }

    .credentials-section {
        padding: 56px 0;
    }

    .credentials-layout {
        gap: 20px;
    }

    .credential-card {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .credential-card h3 {
        padding-top: 28px;
        font-size: 22px;
        line-height: 1.25;
    }

    .credential-card__body {
        padding: 24px 28px 30px;
        font-size: 16px;
        line-height: 1.6;
    }

    .credential-card__body p {
        margin-bottom: 16px;
    }

    .membership-badge {
        margin-top: -16px;
        margin-bottom: -4px;
        padding: 0;
    }

    .membership-badge img {
        width: 48%;
        max-width: 160px;
    }

    .membership-note {
        width: min(calc(100% - 40px), 560px);
        margin-top: 28px;
        font-size: 16px;
        line-height: 1.6;
    }

    .pricing-section {
        padding: 56px 0;
    }

    .pricing-intro h2 {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .pricing-intro p {
        max-width: 560px;
        font-size: 16px;
        line-height: 1.6;
    }

    .pricing-grid {
        gap: 18px;
        width: min(calc(100% - 40px), 350px);
        margin-top: 32px;
    }

    .price-card {
        min-height: 0;
        padding: 30px 24px;
    }

    .price-card h3 {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .price-card__amount {
        font-size: 36px;
        line-height: 1.3;
    }

    .price-card__duration {
        margin-top: 18px;
        font-size: 14px;
    }

    .pricing-cancelation {
        margin-top: 26px;
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-section {
        padding: 56px 0 46px;
    }

    .contact-heading h2 {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .contact-layout {
        width: min(calc(100% - 40px), 560px);
        gap: 24px;
        margin-top: 28px;
    }

    .contact-details {
        gap: 8px;
    }

    .contact-details strong {
        font-size: 14px;
    }

    .contact-details a,
    .contact-details span span {
        font-size: 14px;
        line-height: 1.45;
    }

    .contact-details a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .contact-form {
        gap: 14px;
    }

    .form-field {
        gap: 6px;
    }

    .form-field input,
    .form-field select {
        min-height: 48px;
        padding-block: 11px;
    }

    .form-field textarea {
        min-height: 142px;
        line-height: 1.6;
    }

    .contact-form__submit {
        min-height: 48px;
    }

    .footer-inner {
        gap: 8px;
        justify-items: center;
        padding-block: 12px;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        max-width: min(80%, 150px);
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .footer-business {
        font-size: 12px;
        line-height: 1.5;
        text-align: center;
    }

    .footer-nav {
        justify-self: center;
    }

    .footer-nav ul {
        align-items: center;
        gap: 0;
    }

    .footer-nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .button--small {
        min-height: 44px;
    }
}
