@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/nunito-v26-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/nunito-v26-latin-600.woff2') format('woff2');
}

:root {
    --ground-color: #ffffff;
    --second-color: #b083f5;
    --third-color: #CDAEFB;
    --fourth-color: #e6d6ff;
    --text-color: #1b194b;
    --box-shadow-light: rgba(0, 0, 0, 0.14);
    --muted-text-color: #555465;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
}




/* ======================================= ANIMATIONS ======================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroTitle {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFeatureIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scroll-reveal base state */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s cubic-bezier(.2, .9, .2, 1), transform 0.6s cubic-bezier(.2, .9, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero entrance animations */
.reveal-hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: heroTitle 0.7s cubic-bezier(.2, .9, .2, 1) 0.15s forwards;
}

.reveal-hero-text {
    opacity: 0;
    transform: translateY(20px);
    animation: heroTitle 0.7s cubic-bezier(.2, .9, .2, 1) 0.35s forwards;
}

.reveal-hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: heroTitle 0.7s cubic-bezier(.2, .9, .2, 1) 0.55s forwards;
}

.reveal-hero-kicker {
    opacity: 0;
    transform: translateY(12px);
    animation: heroTitle 0.6s cubic-bezier(.2, .9, .2, 1) 0.1s forwards;
}

.reveal-hero-feature {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    animation: heroFeatureIn 0.6s cubic-bezier(.2, .9, .2, 1) both;
}

.reveal-hero-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal-hero-feature:nth-child(3) {
    animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-hero-title,
    .reveal-hero-text,
    .reveal-hero-cta,
    .reveal-hero-kicker,
    .reveal-hero-feature,
    .reveal-hero-kicker,
    .reveal-hero-feature {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

.hero-image-note {
    position: absolute;
    right: 0;
    bottom: 0px;
    margin: 0;
    color: rgba(27, 25, 75, 0.65);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
    font-size: 10px;
}

@media (max-width: 768px) {
    .hero-image-note {
        display: none;
    }
}

/* ======================================= HEADER ======================================= */

header {
    max-width: 100vw;
    min-height: 80px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: min-height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    min-height: 64px;
    background-color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.header-content {
    width: min(1200px, 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    position: relative;
}

.logo-link img {
    height: 70px;
    max-width: 100%;
    transition: height 0.3s ease;
}

header.scrolled .logo-link img {
    height: 56px;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-logo-link img {
    display: block;
    height: 58px;
    width: auto;
    max-width: min(420px, 42vw);
    object-fit: contain;
    transition: height 0.3s ease;
}

header.scrolled .header-logo-link img {
    height: 48px;
}

.header-menu-logo {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding-top: 20px;
    width: 100%;
    border-top: 1px solid rgba(27, 25, 75, 0.12);
}

.header-menu-logo img {
    display: block;
    width: min(260px, 72vw);
    height: auto;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    color: var(--text-color);
    cursor: pointer;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: currentColor;
    position: relative;
    transition: width 0.2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: currentColor;
    position: absolute;
    left: 0;
    transition: width 0.2s ease;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    width: 19px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    width: 12px;
}

.header-menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.header-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.header-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background-color: var(--second-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.header-menu a:hover::after {
    transform: scaleX(1);
}

.call-to-action {
    background-color: var(--second-color);
    border: 2px solid var(--second-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}

.call-to-action svg {
    height: 25px;
    width: 25px;
}


.call-to-action:hover {
    background-color: var(--third-color);
    border-color: var(--third-color);
    transform: translateY(-2px);
}

.clear {
    background-color: transparent;
    border: 2px solid var(--second-color);
    color: var(--second-color);
}

.clear:hover {
    background-color: var(--second-color);
    color: #fff;
    border-color: var(--second-color);
}

.visually-hidden {
    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: 900px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    header .call-to-action {
        display: none;
    }

    .header-logo-link {
        display: none;
    }

    .header-menu {
        display: none;
        position: absolute;
        justify-content: center;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--ground-color);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .header-menu[data-visible="true"] {
        display: flex;
    }

    .header-menu-logo {
        display: inline-flex;
    }

    .header-menu a:hover::after {
        transform: scaleX(0);
    }

    .header-menu a:hover {
        opacity: .6;
    }

    .header-content {
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo-link img {
        height: 60px;
    }
}


/* ======================================= HERO ======================================= */

.hero {
    height: 100vh;
    max-height: 800px;
    min-height: 600px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero::before {
    width: 50%;
    height: 100%;
    background-image: url(/images/hero.webp);
    background-size: cover;
    background-position: 60% center;
    border-radius: 500px 0 0 0;
    content: '';
    position: absolute;
    right: 0;
}


.hero-content {
    width: min(1200px, 100%);
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--second-color);
    text-transform: uppercase;
}

.hero-card {
    border-radius: 15px;
    text-align: left;
    max-width: 600px;

}

.hero-card h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.15;
}

.hero-card h1 span {
    color: var(--second-color);
}


.hero-card p {
    font-size: 1.3rem;
    color: var(--muted-text-color);
    margin-bottom: 40px;
    margin-top: 10px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.hero-features>div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-features svg {
    width: 36px;
    height: 36px;
    color: var(--second-color);
    background-color: rgba(176, 131, 245, 0.15);
    padding: 6px;
    border-radius: 100%;
}

.hero-features strong {
    display: block;
    font-size: .95rem;
}

.hero-features span {
    font-size: .85rem;
    color: var(--muted-text-color);
}

.cta-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 50% 60% at 5% 90%, rgba(205, 174, 251, 0.3) 0%, transparent 68%);
}


@media (max-width: 768px) {
    .hero {
        max-height: none;
        padding-top: 60px;
        justify-content: flex-start;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 120px;
    }


    .hero-card {
        transform: translateY(0);
    }

    .hero-card h1 {
        font-size: 2.4rem;
    }

    .hero-card p {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }

    .hero-features {
        gap: 20px;
        margin: 28px 0;
    }

    .hero::before {
        width: 100%;
        height: 100%;
        border-radius: 0 0 0 0;
        content: '';
        position: absolute;
        right: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.274), rgba(255, 255, 255, 0.301)), url(/images/hero.webp);
        background-size: cover;
        background-position: 60% center;
        filter: blur(2px);
        transform: scale(1.08);
        display: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background:
            radial-gradient(ellipse 55% 65% at 94% 8%, rgba(176, 131, 245, 0.18) 0%, transparent 68%),
            radial-gradient(ellipse 45% 55% at 4% 90%, rgba(205, 174, 251, 0.24) 0%, transparent 68%);
    }

}
/* ======================================= Beckenbodentherapie ======================================= */

.benefits-section-content {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 40px 00px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.emg-explain-content {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.indications-section-content {
    width: min(1200px, 100%);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.emg-page-header h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--second-color), var(--third-color));
    border-radius: 2px;
    margin: 12px auto 0;
}


/* ======================================= EMG CONTENT SECTIONS ======================================= */



.section-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 12px;
}

.highlight {
    color: var(--second-color);
}

/* Page section header */
.emg-page-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.emg-page-header h2 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
    color: var(--text-color);
}

/* Explanation section */
.emg-explain {
    padding: 100px 0px;
    background-color: var(--fourth-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emg-explain-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.emg-explain-text p {
    color: var(--muted-text-color);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 18px;
}

.emg-explain-text p:last-child {
    margin-bottom: 0;
}

.emg-explain-text strong {
    color: var(--text-color);
}

.emg-explain-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emg-mini-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.emg-mini-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.emg-mini-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--second-color), var(--third-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.emg-mini-icon svg {
    width: 22px;
    height: 22px;
}

.emg-mini-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 3px;
}

.emg-mini-feature span {
    font-size: 0.82rem;
    color: var(--muted-text-color);
}

/* Indications */
.emg-indications {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    max-width: 100vw;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emg-indications-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.indications-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(176, 131, 245, 0.2);
    aspect-ratio: 4 / 3;
}

.indications-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.2, .9, .2, 1);
}

.indications-image:hover img {
    transform: scale(1.04);
}

.indications-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.emg-kicker-light {
    color: var(--second-color);
}

.emg-indications h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin: 0 0 16px;
    line-height: 1.25;
}

.indications-intro {
    color: var(--muted-text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 28px;
}

.hl-light {
    color: var(--second-color);
}

.indication-grid {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.indication-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: default;
}

.indication-badge svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Benefits grid */
.emg-benefits-section {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    max-width: 100vw;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.116);
    transform: translateY(-3px);
}

.benefit-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, var(--second-color), var(--third-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.benefit-check svg {
    width: 15px;
    height: 15px;
}

.benefit-card p {
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
}

/* CTA block */
.emg-cta {
    text-align: center;
    padding: 32px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.emg-cta p {
    font-size: 1.1rem;
    color: var(--muted-text-color);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .emg-explain-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .emg-explain-content {
        padding: 36px 28px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emg-benefits-section {
        height: auto;
        padding: 80px 20px;
        max-height: none;
    }

    .emg-indications-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .emg-indications-inner .indications-content {
        order: 1;
    }

    .emg-indications-inner .indications-image {
        order: 2;
    }

    .emg-indications {
        padding: 120px 20px;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .emg-benefits-section {
        padding: 60px 20px;
    }

    .emg-indications {
        padding: 120px 20px;
    }
}

@media (max-width: 640px) {
    .emg-page-header h2 {
        font-size: 2rem;
    }

    .emg-indications h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .emg-explain-content {
        padding: 28px 20px;
    }
}


/* ======================================= FOOTER ======================================= */

.site-footer {
    background-color: var(--text-color);
    color: rgba(255, 255, 255, 0.75);
    padding: 40px 20px;
}

.footer-content {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo img {
    height: 52px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--third-color);
}

.footer-copy {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.55;
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 18px;
    }
}