@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --color-white: #ffffff;
    --color-text: #111827;
    --color-muted: #4b5563;
    --color-soft: #f3f4f6;
    --color-border: #e5e7eb;
    --color-primary: #31ceff;
    --color-primary-hover: #1fb8e5;
    --color-dark-surface: #0f172a;
    --site-max-width: 1280px;
    --header-height: 76px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-text);
    font-family: "Inter", sans-serif;
    background: var(--color-white);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

.section-content {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 28px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.site-header .navbar {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.8rem;
}

.nav-logo {
    min-width: 0;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-text);
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.header-call-button {
    justify-self: center;
    padding: 0.78rem 1.5rem;
    border-radius: 12px;
    background: #D77DDF;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s ease;
}

.header-call-button:hover {
    background: #C96FD1;
    color: var(--color-text);
}

.navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-link {
    display: inline-block;
    padding: 0.55rem 0.9rem;
    color: #4b5563;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: var(--color-text);
    background: #f3f4f6;
}

.nav-cta {
    display: inline-block;
    padding: 0.72rem 1.4rem;
    border-radius: 12px;
    background: #D77DDF;
    color: var(--color-white);
    font-weight: 700;
    transition: background 0.2s ease;
}

.nav-cta:hover {
    background: #C96FD1;
    color: var(--color-text);
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/* Hero */
.hero-section {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(90deg, rgba(10, 15, 32, 0.82) 0%, rgba(10, 15, 32, 0.66) 46%, rgba(10, 15, 32, 0.3) 100%);
}

.hero-details {
    max-width: 760px;
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.hero-details .title {
    color: var(--color-white);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.06;
    margin-bottom: 1.25rem;
}

.hero-details .description {
    color: #e5e7eb;
    font-size: clamp(1.02rem, 1.8vw, 1.8rem);
    line-height: 1.55;
    max-width: 820px;
    margin-bottom: 0;
}

.hero-details .description + .description {
    margin-top: 0.95rem;
    margin-bottom: 2rem;
}

.hero-details .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
}

.hero-details .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    padding: 0.95rem 1.6rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.04rem;
    transition: all 0.2s ease;
}

.hero-details .primary-button {
    color: var(--color-white);
    background: #D77DDF;
    border: 1px solid #D77DDF;
}

.hero-details .primary-button:hover {
    background: #C96FD1;
    border-color: #C96FD1;
    color: var(--color-text);
}

.hero-details .secondary-button {
    color: var(--color-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-details .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About */
.about-section {
    background: var(--color-soft);
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.about-section .section-content {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}

.about-section .section-title {
    margin-bottom: 1.2rem;
}

.about-text {
    color: var(--color-muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.62;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1rem;
}

.about-stat-card {
    background: #ebedf0;
    border-radius: 14px;
    padding: 1.35rem;
    text-align: center;
}

.about-stat-number {
    color: #D77DDF;
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
}


.about-stat-label {
    color: var(--color-muted);
    font-size: 1.06rem;
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.about-image {
    width: 100%;
    height: 100%;
    max-height: 470px;
    object-fit: cover;
    object-position: 50% 30%;
}

/* Services */
.services-section {
    background: #f8fafc;
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-header .section-title {
    margin-bottom: 0.7rem;
}

.services-subtitle {
    color: var(--color-muted);
    font-size: clamp(1rem, 1.4vw, 1.24rem);
}
.services-list-panel {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.services-list-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 60px;
    padding: 0.78rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    color: #1f2937;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
}

.services-list-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    /*
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(53, 72, 93, 0.78) 0%, rgba(40, 58, 79, 0.88) 100%);
    border: 1px solid rgba(49, 206, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 16px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(3px);
    */
    color: #D77DDF;
    flex-shrink: 0;
}

.services-list-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.wellness-pricing-panel {
    margin-top: 2.2rem;
    padding: 1.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.wellness-pricing-title {
    color: var(--color-text);
    font-size: clamp(1.6rem, 2.3vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
}

.wellness-pricing-subtitle {
    color: #D77DDF;
    font-size: clamp(1.18rem, 1.65vw, 1.45rem);
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 0.95rem;
}

.wellness-pricing-text {
    color: var(--color-muted);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.wellness-pricing-text strong {
    color: var(--color-text);
}

.wellness-pricing-rate {
    margin-bottom: 0;
    font-weight: 600;
    font-size: clamp(1.06rem, 1.35vw, 1.2rem);
    line-height: 1.6;
}

.wellness-offer + .wellness-offer {
    margin-top: 1.7rem;
    padding-top: 1.3rem;
    border-top: 1px solid #e5e7eb;
}

.service-card {
    position: relative;
    min-height: 270px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.service-card-image {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 32, 0.32);
}

.service-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 1.55rem;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(49, 206, 255, 0.22);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    backdrop-filter: blur(3px);
}

.service-title {
    color: #f9fafb;
    font-size: clamp(1.25rem, 1.6vw, 1.8rem);
    margin-bottom: 0.8rem;
}

.service-description {
    color: #e5e7eb;
    line-height: 1.5;
    font-size: 1rem;
}

/* Contact */
.contact-section {
    background: var(--color-soft);
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.contact-panel {
    max-width: 760px;
    margin: 0 auto;
}

.contact-panel .section-title {
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--color-muted);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.contact-list {
    display: grid;
    gap: 0.95rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    width: fit-content;
    border-radius: 12px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(215, 125, 223, 0.2);
    color: #D77DDF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    color: var(--color-muted);
    font-size: clamp(1.1rem, 1.35vw, 1.45rem);
}

.contact-call-button {
    padding: 0.38rem 0.42rem 0.38rem 0;
}

.contact-call-button .contact-text {
    background: #D77DDF;
    border-radius: 12px;
    color: var(--color-white);
    font-weight: 700;
    padding: 0.86rem 1.25rem;
    font-size: clamp(1.1rem, 1.35vw, 1.75rem);
}

.contact-call-button:hover .contact-text {
    background: #C96FD1;
    color: var(--color-text);
}

/* Footer */
.footer-section {
    background: linear-gradient(90deg, #1A1428 0%, #1E1830 45%, #161124 100%);
    color: var(--color-white);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 2.2rem;
    padding-top: 4rem;
    padding-bottom: 2.2rem;
}

.footer-brand-title {
    font-size: clamp(1.7rem, 2.2vw, 2.4rem);
    margin-bottom: 0.9rem;
}

.footer-brand-text {
    max-width: 640px;
    color: #9ca3af;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.58;
}

.footer-links {
    min-width: 170px;
}

.footer-links-title {
    font-size: clamp(1.1rem, 1.4vw, 1.42rem);
    margin-bottom: 0.9rem;
}

.footer-links ul {
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: clamp(1rem, 1.15vw, 1.25rem);
    transition: color 0.2s ease;
}

.footer-policy-link {
    color: #9ca3af;
    font-size: clamp(1rem, 1.15vw, 1.25rem);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-policy-link:hover,
.footer-policy-link:focus-visible {
    color: var(--color-white);
}

.policy-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 20, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 220;
}

.policy-modal {
    position: relative;
    width: min(760px, 100%);
    max-height: min(80vh, 720px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.35);
    padding: 1.45rem 1.45rem 1.2rem;
    color: #1f2937;
    display: flex;
    flex-direction: column;
}

.policy-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.policy-modal-close:hover,
.policy-modal-close:focus-visible {
    background: #f3f4f6;
    color: #111827;
}

.policy-modal-close svg {
    width: 20px;
    height: 20px;
}

.policy-modal-title {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}

.policy-modal-content {
    overflow-y: auto;
    padding-right: 0.25rem;
    line-height: 1.65;
    font-size: 1rem;
}

.policy-modal-content p + p {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: center;
}

.footer-bottom .copyright-text,
.footer-bottom .byline-text {
    color: #9ca3af;
    font-size: clamp(0.95rem, 1.06vw, 1.12rem);
}

.footer-bottom .byline-text {
    cursor: pointer;
    animation: byline-color-pulse 2.8s ease-in-out infinite;
    transition: color 0.2s ease;
}

.footer-bottom .byline-text:hover,
.footer-bottom .byline-text:focus-visible,
.footer-bottom .byline-text:active {
    animation: none;
    color: var(--color-white);
}

@keyframes byline-color-pulse {
    0%,
    100% {
        color: #9ca3af;
    }

    50% {
        color: var(--color-white);
    }
}

/* Responsive */
@media screen and (max-width: 1180px) {
    .site-header .navbar {
        grid-template-columns: auto auto;
    }

    .header-call-button {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .services-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wellness-pricing-panel {
        padding: 1.35rem;
    }

    .about-section .section-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-height: 440px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --header-height: 142px;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(12, 18, 34, 0.35);
        backdrop-filter: blur(4px);
        z-index: 98;
    }

    .site-header .navbar {
        min-height: var(--header-height);
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo menu"
            "call call";
        gap: 0.8rem;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        align-items: center;
    }

    .logo-text {
        font-size: 0.98rem;
        max-width: 220px;
        white-space: normal;
    }

    .nav-logo {
        grid-area: logo;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .header-call-button {
        display: inline-flex;
        grid-area: call;
        justify-self: stretch;
        justify-content: center;
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
    }

    .navbar #menu-open-button {
        display: block;
        grid-area: menu;
        justify-self: end;
        color: #D77DDF;
        z-index: 101;
    }

    .navbar .nav-menu {
        position: fixed;
        top: 0;
        left: -320px;
        width: min(320px, 88vw);
        height: 100%;
        z-index: 102;
        background: var(--color-white);
        border-right: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.35rem;
        padding: 5.8rem 1.4rem 1.4rem;
        transition: left 0.22s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar #menu-close-button {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: #1f2937;
    }

    .nav-link, .nav-cta {
        width: 100%;
        font-size: 1.06rem;
    }

    .nav-cta-item {
        width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 15, 32, 0.78) 0%, rgba(10, 15, 32, 0.66) 60%, rgba(10, 15, 32, 0.52) 100%);
    }

    .hero-details {
        padding-top: 4.2rem;
        padding-bottom: 4.2rem;
    }
}

@media screen and (max-width: 700px) {
    .section-content {
        padding: 0 20px;
    }

    .hero-details .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-details .button {
        width: 100%;
    }

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

    .wellness-pricing-panel {
        margin-top: 1.7rem;
        padding: 1.2rem;
    }

    .wellness-pricing-title {
        margin-bottom: 0.65rem;
    }

    .wellness-pricing-subtitle {
        margin-bottom: 0.75rem;
    }

    .wellness-pricing-rate {
        font-size: 1rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-text {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
    }

    .policy-modal {
        max-height: 86vh;
        padding: 1.2rem 1.1rem 1rem;
    }

    .policy-modal-title {
        font-size: 1.3rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1rem;
    }

    .footer-bottom .byline-text {
        margin-bottom: 1rem;
    }

    .contact-row {
        width: 100%;
    }

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