html, body {
    margin: 0;
    padding: 0;
    background: #040408;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.pt-content {
    position: relative;
    z-index: 2;
    padding: 9em clamp(2em, 8vw, 10em) 0;
}

/* Hero: big title left, description right (same pattern as the other service pages) */
.hosting-hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4em;
    flex-wrap: wrap;
}

.hosting-hero-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(3.5em, 9vw, 7em);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    display: inline-block;
}

.hosting-hero-heading .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}

.hosting-hero-heading .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.6s ease-out;
    transition-delay: calc(var(--i) * 60ms);
}

.hosting-hero-heading.is-in .letter {
    transform: translateY(0);
    opacity: 1;
}

.hosting-hero-side {
    flex: 0 1 30em;
    text-align: right;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95em, 1.1vw, 1.1em);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
    margin: 0 0 0.6em;
}

.hosting-hero-side .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 0.045s);
}

.hosting-hero-side.is-in .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

/* Hosting & Care core */
.hosting-section {
    position: relative;
    z-index: 3;
    padding: 18vh clamp(2em, 8vw, 10em) 20vh;
    color: #fff;
    display: grid;
    gap: 6rem;
    justify-items: center;
}

.hosting-core {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
}

.hosting-left {
    justify-self: start;
    text-align: left;
    max-width: 24rem;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.4rem;
}

.hosting-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hosting-left .hosting-plan {
    position: static;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 1.2rem 0 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    box-shadow: none;
    transition: none;
}

.hosting-left .hosting-plan:first-of-type {
    border-top: none;
    padding-top: 0;
}

.hosting-left .hosting-plan .hosting-price {
    border-top: none;
    padding-top: 0;
    margin-top: 0.2rem;
    justify-content: flex-start;
}

.hosting-plan-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
    margin: 0;
    color: #fff;
    line-height: 1.15;
}

.hosting-plan-title .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
}

.hosting-plan-title .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 45ms);
}

.hosting-plan.is-in .hosting-plan-title .letter {
    transform: translateY(0);
    opacity: 1;
}

.hosting-plan-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.hosting-plan-text .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0.25s + var(--i) * 0.03s);
}

.hosting-plan.is-in .hosting-plan-text .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

.hosting-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-top: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    opacity: 0;
    transform: translateY(-18px);
    transition:
        opacity   0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.55s;
}

.hosting-plan.is-in .hosting-price {
    opacity: 1;
    transform: translateY(0);
}

.hosting-price .price-row {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.hosting-price .price-label {
    color: rgba(184, 156, 255, 0.95);
}

.hosting-price .price-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: inherit;
    color: rgba(184, 156, 255, 0.95);
    line-height: 1.2;
}

.hosting-price .price-unit {
    color: rgba(255, 255, 255, 0.55);
}

.hosting-price .price-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hosting-price .price-discount-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.6em;
    border-radius: 999px;
    background: rgba(184, 156, 255, 0.12);
    border: 1px solid rgba(184, 156, 255, 0.38);
    color: rgba(210, 190, 255, 0.98);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
}

.hosting-price .price-discount-label {
    color: rgba(255, 255, 255, 0.6);
}

.hosting-note {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
    margin: 0.6rem 0 0;
    letter-spacing: 0.02em;
}

.hosting-right {
    justify-self: start;
    max-width: 22rem;
    margin-left: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.included-toggle {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0.4rem 0;
    margin: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-align: left;
    width: 100%;
    transition: color 0.2s ease;
}

.included-toggle:hover,
.included-toggle:focus-visible {
    color: #b89cff;
    outline: none;
}

.included-chevron {
    flex: 0 0 auto;
    color: #b89cff;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.included-toggle[aria-expanded="true"] .included-chevron {
    transform: rotate(180deg);
}

.included-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.included-toggle[aria-expanded="true"] + .included-panel {
    max-height: 44rem;
}

.included-kicker {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.005em;
    color: inherit;
    line-height: 1.15;
    flex: 1 1 auto;
}

.included-kicker .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
}

.included-kicker .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 35ms);
}

.hosting-right.is-in .included-kicker .letter {
    transform: translateY(0);
    opacity: 1;
}

.included-list {
    list-style: none;
    padding: 0 0 0.6rem;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.4rem;
    row-gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}

.included-list li {
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity   0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
}

.included-toggle[aria-expanded="true"] + .included-panel .included-list li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.12s + var(--i) * 0.055s);
}

.included-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #b89cff;
    box-shadow: 0 0 0 3px rgba(184, 156, 255, 0.15);
}

.hosting-symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(20rem, 34vw, 32rem);
    height: clamp(20rem, 34vw, 32rem);
}

.hosting-stage {
    width: clamp(20rem, 34vw, 32rem);
    height: clamp(20rem, 34vw, 32rem);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hosting-stage.visible {
    opacity: 1;
}

.hosting-stage canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

@media (max-width: 60rem) {
    .hosting-core {
        grid-template-columns: 1fr;
        gap: 4rem;
        justify-items: center;
    }
    .hosting-left,
    .hosting-right {
        justify-self: center;
        text-align: center;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    .hosting-price {
        justify-content: center;
    }
    .included-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* CTA */
.cta-section {
    position: relative;
    z-index: 2;
    margin-top: clamp(1em, 3vh, 3em);
    padding: clamp(0.5em, 2vh, 1.5em) clamp(2em, 5vw, 5em) clamp(10em, 24vh, 18em);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.cta-section.visible { pointer-events: auto; }

.cta-inner {
    max-width: 50em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.4em;
    text-align: right;
    padding: 2.8em 3em 2.6em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2em;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 2;
}

.cta-section.visible .cta-inner {
    opacity: 1;
}

.cta-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4em, 4.4vw, 4em);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.cta-heading .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}

.cta-heading .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 55ms);
}

.cta-section.visible .cta-heading .letter {
    transform: translateY(0);
    opacity: 1;
}

.cta-description {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.18em;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 28em;
    visibility: hidden;
}

.cta-description[data-split] {
    visibility: visible;
}

.cta-description .cta-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 0.045s + 0.35s);
}

.cta-section.visible .cta-description .cta-word {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.9em 1.6em;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #fff;
    background: #8a67ff;
    border: 1px solid #8a67ff;
    border-radius: 999px;
    text-decoration: none;
    opacity: 0;
    transform: translateX(160px) scale(1);
    transform-origin: right center;
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.cta-section.visible .cta-button {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.cta-button:hover {
    transform: translateX(0) scale(1.2);
    background: #0a0a0f;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.cta-button svg {
    transition: transform 0.25s ease;
}
.cta-button:hover svg {
    transform: translate(2px, -2px);
}

/* Three.js particle stick-figure stage behind the CTA card */
.cta-stick-stage {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: clamp(24rem, 38vw, 44rem);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.cta-stick-stage.visible {
    opacity: 1;
}

.cta-stick-stage canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* Space between the CTA section and the footer. */
#footer {
    margin-top: clamp(12em, 26vh, 20em);
}

/* Hide heading line breaks by default. The mobile query re-enables them. */
.cta-heading-br {
    display: none;
}

/* Tablets and landscape phones. */
@media (max-width: 768px) {
    .pt-content {
        padding: 7em 1.5em 0;
    }
    .hosting-hero-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em;
    }
    .hosting-hero-side {
        text-align: right;
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 2.5em;
    }

    .hosting-section {
        padding: 12vh 1.5em 14vh;
        gap: 2rem;
    }

    /* Plans: everything LEFT-aligned. Overrides the centered 60rem layout. */
    .hosting-left,
    .hosting-right {
        justify-self: start !important;
        text-align: left !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .hosting-plan,
    .hosting-left .hosting-plan {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .hosting-plan-title,
    .hosting-plan-text,
    .hosting-note {
        text-align: left !important;
    }
    .hosting-price {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    .hosting-price .price-row,
    .hosting-price .price-discount {
        flex-wrap: nowrap !important;
        white-space: nowrap;
    }

    /* Drop the "What hosting means" toggle block and the empty symbol stage. */
    .hosting-right,
    .hosting-symbol {
        display: none !important;
    }
    .hosting-core {
        gap: 0 !important;
    }

    /* CTA: mirrors the index.html mobile layout. */
    .cta-section {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: auto;
        margin-top: 0 !important;
        padding: 2em 1.4em 5em !important;
        pointer-events: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: stretch !important;
    }
    .cta-inner {
        width: 100% !important;
        max-width: none !important;
        align-items: stretch !important;
        text-align: center !important;
        padding: 2em 1.6em 2em !important;
        gap: 1.2em !important;
        opacity: 1 !important;
    }
    .cta-heading {
        font-size: clamp(2em, 7vw, 2.6em) !important;
        white-space: normal !important;
        text-align: center !important;
    }
    .cta-heading-br {
        display: inline !important;
    }
    .cta-description {
        max-width: 100% !important;
        text-align: center !important;
    }
    .cta-button {
        align-self: center !important;
    }
    .cta-stick-stage {
        display: none !important;
    }
    #footer {
        margin-top: -5em !important;
    }
}

/**
 * @INFO
 * Made by Cevio | https://www.cevio.at
 * @INFO
 */
