:root {
    --site-bg: #f4f7fb;
    --site-surface: #ffffff;
    --site-surface-soft: #eef5f6;
    --site-text: #0f172a;
    --site-muted: #64748b;
    --site-border: rgba(15, 23, 42, 0.08);
    --site-primary: #0f766e;
    --site-primary-dark: #115e59;
    --site-accent: #f59e0b;
    --site-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    --site-radius: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    background: radial-gradient(circle at top, rgba(15, 118, 110, 0.08), transparent 34%), var(--site-bg);
    color: var(--site-text);
    font-family: "Trebuchet MS", "Lucida Grande", sans-serif;
}

main {
    overflow-x: clip;
}

a {
    color: inherit;
}

a:hover {
    color: var(--site-primary);
}

.site-navbar {
    background: rgba(8, 15, 33, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(8, 15, 33, 0.28);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.25), rgba(245, 158, 11, 0.28));
    color: #fff;
    font-size: 1.1rem;
}

.brand-mark--footer {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.32), rgba(245, 158, 11, 0.36));
}

.nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff;
}

.nav-phone {
    border-radius: 999px;
    padding-inline: 1rem;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

.btn-primary {
    background-color: var(--site-primary);
    border-color: var(--site-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--site-primary-dark);
    border-color: var(--site-primary-dark);
}

.btn-outline-primary {
    color: var(--site-primary);
    border-color: rgba(15, 118, 110, 0.35);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--site-primary);
    border-color: var(--site-primary);
    color: #fff;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-secondary {
    color: var(--site-text);
    border-color: rgba(15, 23, 42, 0.14);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: var(--site-text);
    border-color: var(--site-text);
    color: #fff;
}

.site-hero {
    position: relative;
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.site-hero::before,
.site-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.site-hero::before {
    inset: auto auto -8rem -6rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 68%);
}

.site-hero::after {
    top: -6rem;
    right: -4rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
}

.hero-kicker,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--site-accent);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 900;
    margin-bottom: 1.25rem;
    max-width: 12ch;
}

.hero-lead {
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.hero-point {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(8, 15, 33, 0.18);
}

.hero-visual {
    position: relative;
    padding: 1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 70px rgba(8, 15, 33, 0.32);
}

.hero-visual-image {
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 24rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(15, 118, 110, 0.18));
}

.hero-visual-image img {
    width: 100%;
    height: 100%;
    min-height: 24rem;
    object-fit: cover;
}

.hero-visual-card {
    position: absolute;
    left: 1.75rem;
    right: 1.75rem;
    bottom: 1.75rem;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-text);
    box-shadow: var(--site-shadow);
}

.hero-visual-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--site-muted);
    margin-bottom: 0.35rem;
}

.hero-visual-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--site-primary);
}

.hero-visual-text {
    color: var(--site-muted);
    margin-top: 0.2rem;
}

.content-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.content-section--alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.88));
}

.section-heading {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.section-heading.text-center {
    margin-bottom: 2.4rem;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 0.9rem;
}

.section-lead,
.section-copy {
    color: var(--site-muted);
    line-height: 1.75;
}

.image-frame {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--site-shadow);
    background: var(--site-surface);
    border: 1px solid var(--site-border);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.check-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.check-list-item {
    position: relative;
    padding: 0.95rem 1rem 0.95rem 3rem;
    border-radius: 1rem;
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.check-list-item::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 118, 110, 0.12);
    color: var(--site-primary);
    font-weight: 800;
}

.partners-carousel {
    position: relative;
    padding: 0 3rem;
}

.partners-carousel .carousel-inner {
    overflow: visible;
}

.partners-carousel .carousel-indicators {
    position: static;
    margin: 0 0 1rem;
    justify-content: center;
    gap: 0.4rem;
}

.partners-carousel .carousel-indicators [data-bs-target] {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.24);
}

.partners-carousel .carousel-indicators .active {
    background-color: var(--site-primary);
}

.partners-carousel .carousel-control-prev,
.partners-carousel .carousel-control-next {
    width: 2.75rem;
    opacity: 1;
}

.partners-carousel .carousel-control-prev {
    left: 0;
}

.partners-carousel .carousel-control-next {
    right: 0;
}

.partners-carousel .carousel-control-prev-icon,
.partners-carousel .carousel-control-next-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background-color: rgba(8, 15, 33, 0.92);
    background-size: 52% 52%;
    box-shadow: 0 10px 26px rgba(8, 15, 33, 0.18);
}

.partner-carousel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
}

.partner-tile {
    min-height: 10rem;
    padding: 1.15rem 1rem;
    border-radius: 1rem;
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.partner-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border-color: rgba(15, 118, 110, 0.25);
}

.partner-tile--link:hover .partner-caption {
    color: var(--site-primary);
}

.partner-logo-frame {
    width: 100%;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 100%;
    max-width: 9rem;
    max-height: 4.5rem;
    object-fit: contain;
}

.partner-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: var(--site-primary);
    font-size: 1.4rem;
    font-weight: 900;
}

.partner-caption {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--site-muted);
}

.service-card,
.promo-card,
.review-card,
.form-shell,
.contact-shell,
.cta-panel,
.success-shell,
.empty-state {
    border-radius: var(--site-radius);
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow);
}

.service-card,
.promo-card {
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.service-media,
.promo-media {
    position: relative;
    min-height: 14rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.15));
}

.service-media-img,
.promo-media-img {
    width: 100%;
    height: 100%;
    min-height: 14rem;
    object-fit: cover;
}

.service-media-img--icon,
.promo-media-img--icon {
    object-fit: contain;
    padding: 1.5rem;
}

.service-badge,
.promo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(8, 15, 33, 0.9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(8, 15, 33, 0.18);
}

.service-card-body,
.promo-card-body {
    padding: 1.35rem;
}

.service-description,
.promo-description,
.review-text {
    color: var(--site-muted);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.service-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--site-text);
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--site-primary);
    font-weight: 900;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 1.35rem;
}

.service-old-price {
    color: var(--site-muted);
    text-decoration: line-through;
    font-size: 0.92rem;
}

.service-price {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--site-text);
    line-height: 1;
}

.review-card {
    padding: 1.35rem;
}

.review-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(245, 158, 11, 0.2));
}

.review-avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--site-primary);
    font-size: 1.25rem;
    font-weight: 900;
}

.review-stars {
    color: var(--site-accent);
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.form-shell {
    padding: clamp(1.35rem, 4vw, 2rem);
}

.contact-shell {
    padding: clamp(1.35rem, 4vw, 2rem);
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.96));
}

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

.contact-box {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--site-border);
}

.contact-box span {
    display: block;
    color: var(--site-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cta-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.96), rgba(8, 15, 33, 0.96));
    color: #fff;
}

.cta-panel .section-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.empty-state {
    padding: 1.35rem 1.5rem;
    color: var(--site-muted);
}

.success-shell {
    max-width: 42rem;
    padding: clamp(2rem, 6vw, 3.5rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 246, 0.96));
}

.success-mark {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 118, 110, 0.12);
    color: var(--site-primary);
    font-size: 2rem;
    font-weight: 900;
}

.footer-title {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-brand-title {
    font-weight: 800;
    color: #fff;
}

.footer-brand-subtitle {
    color: rgba(203, 213, 225, 0.8);
    font-size: 0.92rem;
}

.footer-copy {
    color: rgba(203, 213, 225, 0.88);
    line-height: 1.7;
}

.footer-links,
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li,
.footer-contacts li + li {
    margin-top: 0.75rem;
}

.footer-links a,
.footer-contacts a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: var(--site-accent);
}

.footer-contacts li {
    display: grid;
    gap: 0.15rem;
}

.footer-contacts span:first-child {
    color: rgba(203, 213, 225, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(203, 213, 225, 0.82);
    font-size: 0.92rem;
}

footer.site-footer {
    background: linear-gradient(180deg, #111827, #0f172a);
    color: #fff;
}

footer.site-footer a {
    color: #fff;
}

.form-shell label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.form-shell .form-control {
    border-radius: 0.95rem;
    padding: 0.85rem 1rem;
    border-color: rgba(15, 23, 42, 0.14);
}

.form-shell .form-control:focus {
    border-color: rgba(15, 118, 110, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(15, 118, 110, 0.12);
}

.form-shell .errorlist {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    color: #b91c1c;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .hero-title {
        max-width: none;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 34rem;
        margin: 0 auto;
    }

    .partners-carousel {
        padding: 0 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .site-navbar .navbar-collapse {
        padding: 1rem 0 0.5rem;
    }

    .nav-phone {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .hero-visual-image,
    .hero-visual-image img {
        min-height: 18rem;
    }

    .hero-visual-card {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

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

    .service-card-footer,
    .cta-panel,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .partners-carousel {
        padding: 0 1.5rem;
    }

    .partners-carousel .carousel-control-prev,
    .partners-carousel .carousel-control-next {
        width: 2.2rem;
    }

    .partners-carousel .carousel-control-prev-icon,
    .partners-carousel .carousel-control-next-icon {
        width: 2.2rem;
        height: 2.2rem;
    }
}
