:root {
    --color-cream: #fff2ed;
    --color-rose: #ffc7bb;
    --color-accent: #ff6f6f;
    --color-accent-dark: #e2555c;
    --color-dark: #231f20;
    --color-muted: #5b5456;
    --color-line: rgba(35, 31, 32, 0.12);
    --color-card: #ffffff;
    --font-base: 'Montserrat', 'Inter', 'Segoe UI', sans-serif;
    --font-accent: 'Playfair Display', 'Georgia', serif;
    --shadow-soft: 0 20px 45px rgba(233, 137, 120, 0.25);
    --shadow-card: 0 12px 30px rgba(233, 137, 120, 0.18);
    --radius-large: 32px;
    --radius-medium: 20px;
    --radius-small: 12px;
    --header-height: 84px;
    --mobile-drawer-width: min(320px, 85vw);

    --swiper-navigation-color: var(--color-accent-dark);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-base);
    color: var(--color-dark);
    background: radial-gradient(circle at top right, rgba(255, 208, 196, 0.45), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(255, 198, 203, 0.35), transparent 40%),
    var(--color-cream);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-small);
}

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

a:hover,
a:focus-visible {
    color: var(--color-accent);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

button {
    font: inherit;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.section {
    padding: clamp(64px, 9vw, 120px) 0;
}

.section--tight {
    padding: clamp(40px, 6vw, 80px) 0;
}

.section__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(32px, 6vw, 56px);
    max-width: 720px;
}

.section__eyebrow {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    font-weight: 600;
}

.section__title {
    font-family: var(--font-accent);
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin: 0;
}

.section__subtitle {
    font-size: clamp(16px, 2.6vw, 20px);
    color: var(--color-muted);
    margin: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 111, 111, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 999px;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-size: 16px;
    text-align: center;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent), #ff9777);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(233, 137, 120, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--color-accent-dark);
    border: 2px solid rgba(255, 111, 111, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 111, 111, 0.1);
}

.btn--light {
    background: #fff;
    color: var(--color-dark);
    border: 1px solid rgba(35, 31, 32, 0.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.btn--light:hover {
    transform: translateY(-2px);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-list__item {
    padding: 10px 18px;
    background: rgba(255, 111, 111, 0.12);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(255, 242, 237, 0.9);
    border-bottom: 1px solid rgba(255, 111, 111, 0.15);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo__mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #ffaf91);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 20px;
}

.nav {
    position: relative;
    z-index: 1000;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark);
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav__link--cta {
    background: var(--color-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
}

.nav__link--cta:hover {
    background: var(--color-accent);
}

.nav__item {
    position: relative;
}

.nav__dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.nav__item--open .nav__dropdown-toggle::after {
    transform: rotate(-135deg) translateY(2px);
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-medium);
    box-shadow: 0 20px 40px rgba(255, 111, 111, 0.18);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.nav__dropdown a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-muted);
}

.nav__item--open .nav__dropdown {
    display: flex;
}

.nav__toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(35, 31, 32, 0.15);
    background: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1400;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 999px;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle span::before {
    position: absolute;
    top: -6px;
}

.nav__toggle span::after {
    position: absolute;
    top: 6px;
}

.nav--mobile-active .nav__toggle span {
    background: transparent;
}

.nav--mobile-active .nav__toggle span::before {
    transform: translateY(6px) rotate(45deg);
}

.nav--mobile-active .nav__toggle span::after {
    transform: translateY(-6px) rotate(-45deg);
}

.nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 24, 39, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
    cursor: pointer;
}

.nav__overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

.nav__item--mobile-contacts {
    display: none;
}

@media (min-width: 961px) {
    .nav__overlay {
        display: none;
    }
}

.hero {
    padding: clamp(80px, 12vw, 140px) 0;
}

.hero__wrapper {
    display: grid;
    gap: clamp(40px, 6vw, 64px);
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}

.hero__title {
    font-family: var(--font-accent);
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.1;
    margin: 0 0 24px;
    max-width: 22ch;
    text-wrap: balance;
}

@supports not (text-wrap: balance) {
    .hero__title {
        hyphens: auto;
        overflow-wrap: anywhere;
    }
}

.hero__description {
    font-size: clamp(18px, 2.6vw, 22px);
    color: var(--color-muted);
    margin-bottom: 32px;
}

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

.hero__media {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-large);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    display: grid;
    gap: 16px;
    max-width: 420px;
}

.hero__card-title {
    margin: 0;
    font-size: 24px;
}

.hero__card-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 16px;
    color: var(--color-muted);
}

.hero__stamp {
    position: absolute;
    inset: auto 16px -36px auto;
    background: linear-gradient(135deg, rgba(255, 111, 111, 0.95), rgba(255, 160, 122, 0.95));
    color: #fff;
    padding: 18px 26px;
    border-radius: var(--radius-medium);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-card);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: clamp(40px, 8vw, 80px);
}

@media (min-width: 960px) {
    .hero__wrapper {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

.stats__item {
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-medium);
    padding: 24px;
    box-shadow: 0 18px 36px rgba(255, 159, 134, 0.2);
    text-align: center;
}

.stats__value {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-accent-dark);
}

.stats__label {
    margin-top: 8px;
    font-size: 15px;
    color: var(--color-muted);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    margin-top: 32px;
}

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

@media (max-width: 600px) {
    .price-grid {
        gap: 24px;
    }
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 28px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 12px;
    height: 100%;
}

.card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 111, 111, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card__title {
    margin: 0;
    font-size: 20px;
    word-break: break-word;
    hyphens: auto;
}

.card__text {
    margin: 0;
    font-size: 15px;
    color: var(--color-muted);
    word-break: break-word;
    hyphens: auto;
}

.service-card {
    border: 1px solid rgba(255, 111, 111, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: grid;
    gap: 16px;
    padding-bottom: 8px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(255, 111, 111, 0.22);
}

.service-card .card__title {
    margin-bottom: 0;
}

.service-card__price {
    font-weight: 700;
    color: var(--color-accent-dark);
    font-size: 18px;
}

.service-card__cta {
    margin-top: auto;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.tabs__button {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 111, 111, 0.28);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tabs__button[aria-selected="true"] {
    background: var(--color-accent);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-card);
}

.tabs__button:hover,
.tabs__button:focus-visible {
    box-shadow: 0 12px 24px rgba(255, 111, 111, 0.24);
}

.tabs__panel {
    display: none;
}

.tabs__panel[aria-hidden="false"] {
    display: block;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(233, 137, 120, 0.18);
    border: 1px solid rgba(255, 111, 111, 0.14);
}

.price-table thead {
    background: rgba(255, 111, 111, 0.16);
}

.price-table th,
.price-table td {
    padding: 18px 24px;
    text-align: left;
    font-size: 16px;
}

.price-table tbody tr:nth-child(even) {
    background: rgba(255, 239, 232, 0.4);
}

.price-table tbody tr:hover {
    background: rgba(255, 214, 205, 0.55);
}

.price-table tbody tr + tr {
    border-top: 1px solid var(--color-line);
}

.price-table td:last-child {
    font-weight: 700;
    color: var(--color-accent-dark);
    white-space: nowrap;
}

.portfolio-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.portfolio-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-card);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-card__label {
    position: absolute;
    inset: auto 16px 16px;
    background: rgba(35, 31, 32, 0.82);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
}

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

.timeline__item {
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-medium);
    padding: 20px;
    border: 1px solid rgba(255, 111, 111, 0.18);
}

.timeline__item strong {
    font-size: 18px;
}

.faq {
    display: grid;
    gap: 16px;
}

.faq__item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 111, 111, 0.2);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq__question::after {
    content: '+';
    font-weight: 600;
    font-size: 24px;
    color: var(--color-accent);
}

.faq__item[open] .faq__question::after {
    content: '–';
}

.faq__answer {
    padding: 0 24px 24px;
    font-size: 16px;
    color: var(--color-muted);
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    background: linear-gradient(135deg, rgba(255, 111, 111, 0.12), rgba(255, 208, 196, 0.45));
    padding: clamp(32px, 6vw, 48px);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.contact__info {
    display: grid;
    gap: 16px;
}

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

.contact__list li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid rgba(35, 31, 32, 0.15);
    border-radius: var(--radius-small);
    padding: 14px 16px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 111, 111, 0.25);
}

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

.form-status {
    font-size: 14px;
    color: var(--color-muted);
    min-height: 20px;
}

.callout {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-large);
    padding: clamp(32px, 6vw, 48px);
    box-shadow: var(--shadow-soft);
    text-align: center;
    display: grid;
    gap: 18px;
}

.callout__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 36px);
    font-family: var(--font-accent);
}

.callout__subtitle {
    margin: 0;
    font-size: 18px;
    color: var(--color-muted);
}

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

.diplomas__scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 260px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.diploma-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-medium);
    padding: 18px;
    box-shadow: var(--shadow-card);
    min-height: 160px;
    display: grid;
    align-content: space-between;
}

.diploma-card strong {
    font-size: 16px;
}

.diploma-card span {
    color: var(--color-muted);
    font-size: 14px;
}

.certificate-gallery {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 28px;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-medium);
    padding: 18px;
    /*box-shadow: var(--shadow-card);*/
    border: 1px solid rgba(255, 111, 111, 0.16);
    display: grid;
    gap: 12px;
    text-align: center;
}

.certificate-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-small);
    background: rgba(255, 239, 232, 0.6);
}

.certificate-card figcaption {
    font-size: 14px;
    color: var(--color-muted);
}

.footer {
    margin-top: clamp(64px, 8vw, 96px);
    background: rgba(35, 31, 32, 0.95);
    color: rgba(255, 255, 255, 0.85);
    padding: 48px 0 32px;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer__nav,
.footer__contacts {
    display: grid;
    gap: 12px;
}

.footer__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    font-size: 14px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.page-hero {
    padding: clamp(90px, 13vw, 160px) 0 clamp(48px, 8vw, 80px);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 159, 134, 0.4), transparent 55%);
    z-index: -1;
}

.page-hero__title {
    margin: 0 0 18px;
    font-family: var(--font-accent);
    font-size: clamp(40px, 6vw, 56px);
}

.page-hero__text {
    font-size: clamp(18px, 2.6vw, 22px);
    color: var(--color-muted);
    max-width: 680px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--color-accent-dark);
}

.highlight {
    display: grid;
    gap: 16px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-large);
    padding: clamp(24px, 4vw, 36px);
    box-shadow: var(--shadow-card);
}

.highlight__title {
    margin: 0;
    font-size: 22px;
}

.highlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlight__grid li {
    list-style: none;
    background: rgba(255, 111, 111, 0.12);
    border-radius: var(--radius-small);
    padding: 14px 18px;
    font-weight: 600;
}

.step-list {
    counter-reset: steps;
    display: grid;
    gap: 16px;
}

.step-list li {
    list-style: none;
    position: relative;
    padding: 18px 18px 18px 56px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 111, 111, 0.18);
}

.step-list li::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-summary {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 234, 0.92));
    border-radius: var(--radius-large);
    padding: 28px;
    border: 1px solid rgba(255, 111, 111, 0.22);
    box-shadow: var(--shadow-card);
    isolation: isolate;
    overflow: hidden;
}

.service-summary::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: var(--radius-large);
    border: 1px dashed rgba(255, 111, 111, 0.18);
    pointer-events: none;
}

.service-summary > * {
    position: relative;
    z-index: 1;
}

.service-summary__header {
    display: grid;
    gap: 10px;
}

.service-summary__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 111, 111, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent-dark);
}

.service-summary__tag::before {
    content: '✦';
    font-size: 10px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.result-card {
    padding: 20px;
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 111, 111, 0.18);
    display: grid;
    gap: 10px;
}

.testimonials {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 221, 210, 0.92));
    border-radius: var(--radius-large);
    padding: 28px;
    box-shadow: 0 18px 40px rgba(233, 137, 120, 0.22);
    display: grid;
    gap: 14px;
    border: 1px solid rgba(255, 111, 111, 0.18);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: var(--font-accent);
    font-size: 64px;
    color: rgba(255, 111, 111, 0.2);
    line-height: 1;
}

.testimonial-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.testimonial-card strong {
    font-size: 18px;
}

.testimonial-card__tag {
    background: rgba(255, 111, 111, 0.16);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-accent-dark);
}

.testimonial-card__text {
    font-size: 16px;
    color: var(--color-muted);
    margin: 0;
}

.testimonial-card__rating {
    font-size: 16px;
    color: #ffb347;
    letter-spacing: 0.2em;
}

.sticky-contacts {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 120;
    display: none;
    gap: 12px;
}

.sticky-contacts__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 14px 30px rgba(35, 31, 32, 0.14);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-contacts__link:hover,
.sticky-contacts__link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(35, 31, 32, 0.2);
}

.sticky-contacts__link--phone {
    background: var(--color-dark);
}

.sticky-contacts__link--whatsapp {
    background: #25d366;
}

.sticky-contacts__link--telegram {
    background: #2aabee;
}

.sticky-contacts__icon {
    font-size: 20px;
}

.sticky-contacts__label {
    letter-spacing: 0.01em;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-modal--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 31, 32, 0.45);
}

.contact-modal__dialog {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 228, 220, 0.94));
    border-radius: var(--radius-medium);
    padding: clamp(28px, 5vw, 36px);
    max-width: 360px;
    width: min(100%, 360px);
    text-align: center;
    box-shadow: var(--shadow-card);
    transform: translateY(18px);
    transition: transform 0.3s ease;
}

.contact-modal--visible .contact-modal__dialog {
    transform: translateY(0);
}

.contact-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(35, 31, 32, 0.08);
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 600;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible {
    background: rgba(35, 31, 32, 0.16);
    transform: rotate(90deg);
    outline: none;
}

.contact-modal__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-family: var(--font-accent);
}

.contact-modal__subtitle {
    margin: 0 0 20px;
    font-size: 15px;
    color: var(--color-muted);
}

.contact-modal__qr-wrapper {
    display: inline-flex;
    padding: 18px;
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(255, 111, 111, 0.12);
    margin-bottom: 18px;
}

.contact-modal__qr {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-small);
    object-fit: cover;
}

.contact-modal__phone {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.contact-modal__phone-link {
    color: var(--color-dark);
}

.contact-modal__phone-link:hover,
.contact-modal__phone-link:focus-visible {
    color: var(--color-accent);
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(255, 111, 111, 0.4);
    font-size: 14px;
    color: var(--color-muted);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-cloud a {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 214, 205, 0.92));
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-dark);
    box-shadow: 0 10px 24px rgba(255, 111, 111, 0.18);
    border: 1px solid rgba(255, 111, 111, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tag-cloud a:hover,
.tag-cloud a:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(255, 111, 111, 0.28);
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-medium);
    padding: 22px;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 12px;
}

.map-placeholder strong {
    font-size: 16px;
}

@media (min-width: 961px) {
    .sticky-contacts {
        display: grid;
    }
}

@media (max-width: 960px) {
    @keyframes nav-drawer-in {
        from {
            transform: translate3d(100%, 0, 0);
            opacity: 0;
        }

        to {
            transform: translate3d(0, 0, 0);
            opacity: 1;
        }
    }

    .nav {
        position: static;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        height: 100vh;
        width: var(--mobile-drawer-width);
        padding: 96px 28px 40px;
        background: rgba(255, 242, 237, 0.97);
        backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        overflow-y: auto;
        box-shadow: -24px 0 48px rgba(17, 24, 39, 0.18);
        display: none;
        z-index: 1200;
    }

    .nav--mobile-active .nav__list {
        display: flex;
        animation: nav-drawer-in 0.32s ease forwards;
    }

    .nav__overlay {
        left: 0;
        right: 0;
        width: auto;
    }

    .nav__overlay--visible {
        right: var(--mobile-drawer-width);
    }

    .nav__toggle {
        display: inline-flex;
    }

    .nav__dropdown {
        position: static;
        box-shadow: none;
        padding: 12px 0 0 16px;
        background: transparent;
        width: 100%;
    }

    .site-header__inner {
        height: 72px;
    }

    .nav__item--mobile-contacts {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: 8px;
        padding-top: 24px;
        border-top: 1px solid rgba(35, 31, 32, 0.12);
    }

    .nav__mobile-phone {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 16px 18px;
        border-radius: var(--radius-medium);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 14px 32px rgba(255, 111, 111, 0.2);
        font-weight: 600;
        font-size: 18px;
        line-height: 1.4;
        color: var(--color-dark);
        text-decoration: none;
    }

    .nav__mobile-phone:focus-visible {
        outline: 2px solid var(--color-accent);
        outline-offset: 4px;
    }

    .nav__mobile-phone-icon {
        font-size: 22px;
    }

    .nav__mobile-phone-text {
        letter-spacing: 0.01em;
    }

    .nav__mobile-socials {
        display: flex;
        gap: 12px;
        width: 100%;
    }

    .nav__mobile-social {
        flex: 1 1 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 0;
        border-radius: 999px;
        font-weight: 600;
        color: #fff;
        box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-decoration: none;
    }

    .nav__mobile-social:hover,
    .nav__mobile-social:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(17, 24, 39, 0.22);
    }

    .nav__mobile-social--whatsapp {
        background: #25d366;
    }

    .nav__mobile-social--telegram {
        background: #2aabee;
    }

    .hero__wrapper {
        gap: 32px;
    }

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

}

@media (max-width: 680px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__media {
        flex-direction: column;
        gap: 18px;
    }

    .hero__card {
        max-width: 100%;
    }

    .hero__stamp {
        position: static;
        align-self: flex-start;
        margin-top: 0;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .price-table th,
    .price-table td {
        padding: 14px 16px;
        font-size: 15px;
    }

    .nav--mobile-active .nav__dropdown {
        margin-left: 0;
    }
}

@media (max-width: 520px) {
    .sticky-contacts {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .sticky-contacts__link {
        padding: 10px 14px;
        font-size: 13px;
    }

    .sticky-contacts__icon {
        font-size: 18px;
    }

    .contact-modal {
        padding: 16px;
    }

    .contact-modal__dialog {
        padding: 24px;
    }

    .contact-modal__qr {
        width: 160px;
        height: 160px;
    }

    .page-hero__title {
        font-size: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav--mobile-active .nav__list {
        animation: none;
    }
}
