/* --- General & Typography --- */
@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/league-spartan-master/webfonts/leaguespartan-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --neon-cyan: #fa9196;
    --dark-bg: #ffffff;
    --primary-text: #2b1f24;
    --secondary-text: #6d5a5d;
    --card-bg: #fff6f7;
    --border-color: #f3d3d7;
    --soft-surface: #fff1f2;
    --shadow-soft: 0 20px 45px rgba(250, 145, 150, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {

    background-color: var(--dark-bg);

    color: var(--primary-text);

    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    margin: 0;

    padding: 0;

    overflow-x: hidden;

}



body.no-scroll {

    overflow: hidden;

}



h1,
h2,
h3 {

    font-family: 'League Spartan', sans-serif;

    font-weight: 700;
    /* Bolder headings */

}



p {

    color: var(--secondary-text);

    line-height: 1.6;

}



.visually-hidden {

    position: absolute !important;

    height: 1px;

    width: 1px;

    overflow: hidden;

    clip: rect(1px, 1px, 1px, 1px);

    white-space: nowrap;

}



.section-title {

    font-size: 2.5rem;

    text-align: center;

    margin-bottom: 50px;

    color: var(--primary-text);

}



/* --- Header & Navigation --- */

header {
    padding: 18px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(250, 145, 150, 0.08);
}



nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 80px;
}



.logo img {
    height: 72px;
}



.burger-menu {

    display: none;

    position: relative;

    width: 48px;

    height: 48px;

    background: none;

    border: none;

    color: #000;

    cursor: pointer;

    margin-left: auto;

    z-index: 1001;

    align-items: center;

    justify-content: center;

}



.burger-menu span {

    position: absolute;

    left: 50%;

    width: 30px;

    height: 3px;

    background-color: currentColor;

    border-radius: 999px;

    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;

    transform-origin: center;

    transform: translateX(-50%);

}



.burger-menu span:nth-child(1) {

    top: 16px;

}



.burger-menu span:nth-child(2) {

    top: 24px;

}



.burger-menu span:nth-child(3) {

    top: 32px;

}



.burger-menu[aria-expanded="true"] span:nth-child(2) {

    opacity: 0;

}



.burger-menu[aria-expanded="true"] span:nth-child(1) {

    top: 24px;

    transform: translateX(-50%) rotate(45deg);

}



.burger-menu[aria-expanded="true"] span:nth-child(3) {

    top: 24px;

    transform: translateX(-50%) rotate(-45deg);

}



body.no-scroll .burger-menu {

    color: #ffcad2;

}



.nav-links {
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(250, 145, 150, 0.1);
    border: 1px solid rgba(250, 145, 150, 0.16);
}



.nav-links a {

    color: var(--primary-text);

    text-decoration: none;

    font-size: 18px;
    /* Increased font size */

    font-weight: 600;

    padding: 10px 25px;
    /* Increased horizontal padding */

    border-radius: 40px;

    transition: background-color 0.3s, color 0.3s;

}



.nav-links a:hover {

    background-color: rgba(250, 145, 150, 0.12);

    color: var(--primary-text);

}



.nav-links a.active {

    background-color: rgba(250, 145, 150, 0.2);

}

.nav-links .nav-cta {

    background-color: #ffcad2;

    color: #ffffff;

    font-weight: 600;

    box-shadow: 0 8px 24px rgba(250, 145, 150, 0.2);

    padding: 10px 26px;

}



/* --- General Layout --- */

main {

    padding-top: 100px;

}



section {

    padding: 100px 50px;

    max-width: 1200px;

    margin: 0 auto;

}


/* Offset anchor targets to account for the fixed header */
#funktionen,
#vorteile {
    scroll-margin-top: 120px;
}

#faq {
    scroll-margin-top: 130px;
}



/* --- Scroll Reveal Animation --- */

.scroll-reveal {

    opacity: 0;

    transform: translateY(30px) scale(0.98);

    transition: opacity 0.6s ease-out, transform 0.6s ease-out;

}



.scroll-reveal.visible {

    opacity: 1;

    transform: translateY(0) scale(1);

}



/* --- REWORKED HERO SECTION --- */

.hero-stage {
    position: relative;
    width: 100%;
    isolation: isolate;
    overflow: visible;
}

.hero-stage::before,
.hero-stage::after {
    content: "";
    position: absolute;
    width: clamp(220px, 38vw, 440px);
    height: clamp(220px, 38vw, 440px);
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s ease, transform 6s ease;
    transform: translate3d(0, 0, 0) scale(0.9);
}

.hero-stage::before {
    top: -60px;
    right: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 221, 225, 0.8), transparent 70%);
    animation: heroOrbFloat 24s ease-in-out infinite;
}

.hero-stage::after {
    bottom: -80px;
    left: 6%;
    background: radial-gradient(circle at 70% 70%, rgba(250, 145, 150, 0.7), transparent 65%);
    animation: heroOrbDrift 32s ease-in-out infinite;
}

.hero-stage.hero-stage--active::before,
.hero-stage.hero-stage--active::after {
    opacity: 0.85;
    transform: translate3d(0, 0, 0) scale(1);
}

@keyframes heroOrbFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(12px, -16px, 0) scale(1.05);
    }

    100% {
        transform: translate3d(-8px, 10px, 0) scale(0.98);
    }
}

@keyframes heroOrbDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(0.95);
    }

    50% {
        transform: translate3d(-18px, 14px, 0) scale(1.03);
    }

    100% {
        transform: translate3d(10px, -12px, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-stage::before,
    .hero-stage::after {
        animation: none;
        opacity: 0.45;
        transform: scale(1);
    }
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88vh;
    padding: clamp(120px, 18vw, 160px) clamp(28px, 6vw, 60px) clamp(150px, 20vw, 180px);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(250, 145, 150, 0.12) 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 221, 225, 0.4) 100%);
    border-radius: clamp(32px, 7vw, 64px);
    max-width: 1180px;
    width: calc(100% - clamp(32px, 8vw, 80px));
    margin: clamp(40px, 8vw, 90px) auto clamp(110px, 14vw, 170px);
    box-shadow: 0 40px 90px rgba(250, 145, 150, 0.18);
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeIn 0.9s ease-out forwards;
    animation-delay: 0.15s;
    z-index: 2;
}



.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.92) 10%, rgba(255, 255, 255, 0.6) 55%, rgba(250, 145, 150, 0.35) 100%);
    pointer-events: none;
    border-radius: inherit;
    opacity: 0.96;
    z-index: 2;
}



.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 28px;
    width: min(960px, 100%);
    color: var(--primary-text);
    justify-items: start;
    text-align: left;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: clamp(32px, 5vw, 48px);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    background: rgba(250, 145, 150, 0.15);
    border: 1px solid rgba(250, 145, 150, 0.45);
    width: fit-content;
}



.hero-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffcad2;
    box-shadow: 0 0 12px rgba(250, 145, 150, 0.6);
}



.hero-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary-text);
}



.hero-headline {

    font-family: 'League Spartan', sans-serif;

    font-size: clamp(2.8rem, 7vw, 5rem);

    font-weight: 700;

    line-height: 1.05;

    margin: 0;

    color: var(--primary-text);

    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.8s ease-out, transform 0.8s ease-out;

}



.hero-subheadline {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(43, 31, 36, 0.78);
    max-width: 620px;
    line-height: 1.65;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}



.hero-cta {
    width: fit-content;
    padding: 16px 38px;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.35s, transform 0.8s ease-out 0.35s;
}

/* Animation visible state */

.hero-headline.is-visible,

.hero-subheadline.is-visible,

.hero-cta.is-visible {

    opacity: 1;

    transform: translateY(0);

}



/* --- General Section Styling --- */

.section-intro {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px auto;

}



.section-intro p {

    font-size: clamp(1.35rem, 2.4vw, 1.8rem);

}

.section-pill {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 18px;

    border-radius: 999px;

    background: rgba(250, 145, 150, 0.12);

    color: var(--primary-text);

    font-size: 0.9rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}

.feature-process-section {

    background: var(--soft-surface);

    border-radius: 32px;

    padding: 110px 50px;

    box-shadow: var(--shadow-soft);

}

.feature-grid {

    display: grid;

    gap: 28px;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

}

.feature-card {

    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(250, 145, 150, 0.16);

    box-shadow: 0 20px 40px rgba(250, 145, 150, 0.12);

    display: flex;

    flex-direction: column;

    transition: transform 0.35s ease, box-shadow 0.35s ease;

}

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 55px rgba(250, 145, 150, 0.18);

}

.feature-media {
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 20px);
}

.feature-media.single img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-media.dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 6px;
    padding: clamp(10px, 2vw, 16px);
    width: 100%;
    height: 100%;
    place-items: center;
}

.feature-media.dual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    padding: clamp(4px, 1.2vw, 8px);
    background: var(--card-bg);
}

.feature-content {

    padding: 28px 28px 32px;

    display: grid;

    gap: 16px;

}

.feature-step {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: rgba(250, 145, 150, 0.16);

    color: var(--primary-text);

    font-weight: 700;

    font-size: 1rem;

}

.feature-card h3 {

    margin: 0;

    font-size: 1.4rem;

    color: var(--primary-text);

}

.feature-card p {

    margin: 0;

    color: var(--secondary-text);

    font-size: 1.05rem;

    line-height: 1.6;

}



/* --- Reworked Services Section --- */

.services-section-reworked {

    padding: 110px 50px;

    background-color: #ffffff;

    border-radius: 32px;

    box-shadow: var(--shadow-soft);

    border: 1px solid rgba(250, 145, 150, 0.12);

}



.services-grid-reworked {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;

    align-items: start;
    /* Align items to the top of the grid cell */

}



/* --- Product Showcase Section --- */

.product-showcase-section {
    padding: 110px 50px;
    background: radial-gradient(120% 120% at 50% 0%, rgba(250, 145, 150, 0.12) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 1) 100%);
    border-radius: 40px;
    border: 1px solid rgba(250, 145, 150, 0.12);
    margin: 100px auto;
    max-width: 1250px;
    box-shadow: 0 32px 80px rgba(250, 145, 150, 0.16);
}

.product-feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 70px auto 0;
}

.product-feature-row.align-left .product-feature-copy {
    order: 1;
}

.product-feature-row.align-left .product-feature-media {
    order: 2;
}

.product-feature-row.align-right .product-feature-copy {
    order: 2;
}

.product-feature-row.align-right .product-feature-media {
    order: 1;
}

.product-feature-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-feature-copy h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: var(--primary-text);
}

.product-feature-copy p {
    margin: 0;
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 1.05rem;
}

.product-feature-media {
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 28px 60px rgba(250, 145, 150, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-feature-media img {
    display: block;
    width: 90%;
    height: auto;
    object-fit: contain;
    object-position: center top;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.product-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(250, 145, 150, 0.16);
    box-shadow: 0 22px 52px rgba(250, 145, 150, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(250, 145, 150, 0.18);
}

.product-card-media {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.product-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-text);
}

.product-card p {
    margin: 0;
    color: var(--secondary-text);
    line-height: 1.55;
    font-size: 0.98rem;
}



.service-card-reworked {

    background-color: #ffffff;

    padding: 40px;

    border-radius: 24px;

    border: 1px solid rgba(250, 145, 150, 0.14);

    transition: transform 0.3s, box-shadow 0.3s;

    display: flex;

    flex-direction: column;

    height: 100%;

    box-shadow: 0 18px 45px rgba(250, 145, 150, 0.12);

}

.service-card-reworked:hover {

    transform: translateY(-10px);

    box-shadow: 0 26px 55px rgba(250, 145, 150, 0.18);

}

.service-icon {

    font-size: 2.5rem;

    color: #ffcad2;

    margin-bottom: 20px;

}



.service-card-reworked h3 {

    font-size: 1.5rem;

    margin-bottom: 15px;

    color: var(--primary-text);

}



/* --- Client Marquee Section --- */

.client-marquee-section {
    padding: 80px 0;
    border-top: 1px solid rgba(250, 145, 150, 0.18);
    border-bottom: 1px solid rgba(250, 145, 150, 0.18);
    overflow: hidden;
    white-space: nowrap;
    background: #ffffff;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
}

.marquee-content img {
    height: 72px;
    margin: 0 40px;
    filter: none;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.marquee-content img:hover {
    opacity: 1;
    transform: translateY(-4px);
}



@keyframes scrollX {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}



.client-marquee-section .marquee-content {



    animation: scrollX 40s linear infinite;



}







/* --- Feature Parallax Section --- */



.feature-parallax-section {



    padding: 120px 50px;



}







.feature-parallax-text .section-title {



    text-align: left;
    /* Override the default centered alignment */



}



.feature-parallax-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    max-width: 1200px;

    margin: 0 auto;

}



.feature-parallax-text p {

    font-size: 1.15rem;
    /* Increased font size */

}



.feature-parallax-text .cta-button {

    margin-top: 2rem;
    /* Added space above the button */

}



.feature-parallax-image {

    border-radius: 20px;

    overflow: hidden;

}



.feature-parallax-image img {

    width: 100%;

}



/* Force CTA button style in this specific section to fix override issue */

.cta-button {
    background-color: #ffcad2;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 48px;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: inline-block;
    border: none;
    box-shadow: 0 10px 35px rgba(250, 145, 150, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(250, 145, 150, 0.35);
    filter: brightness(1.05);
}

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

.ghost-button {
    background: rgba(250, 145, 150, 0.12);
    color: var(--primary-text);
    border: 1px solid rgba(250, 145, 150, 0.4);
    box-shadow: none;
}

.ghost-button:hover {
    background: rgba(250, 145, 150, 0.2);
    box-shadow: 0 10px 30px rgba(250, 145, 150, 0.25);
}





/* --- CTA Section --- */

.cta-section {
    text-align: center;
    background: var(--neon-cyan);
    color: #ffffff;
    padding: 96px 50px;
    border-radius: 32px;
    max-width: 1200px;
    margin: 80px auto;
    box-shadow: 0 26px 60px rgba(250, 145, 150, 0.3);
}

.cta-section h2 {
    font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-section .cta-button {
    background: #ffffff;
    color: var(--primary-text);
    box-shadow: none;
}

.cta-section .cta-button:hover {
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.35);
}



/* --- Responsive for Reworked Homepage --- */

@media (max-width: 1024px) {

    header {

        padding: 18px 30px;

        top: 0;

    }

    nav {

        flex-wrap: wrap;

        gap: 16px;

        height: auto;

    }

    .logo img {

        height: 80px;

    }

    .nav-links {

        position: static;

        transform: none;

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        padding: 12px 20px;

    }

    .nav-links a {

        font-size: 16px;

        padding: 10px 18px;

    }

    section {

        padding: 90px 30px;

    }

    .hero-section {

        padding: 120px 30px 100px;

        min-height: 80vh;

        max-width: 940px;
        width: calc(100% - 60px);

        margin: 36px auto 90px;

        border-radius: clamp(28px, 6vw, 52px);

    }

    .hero-content-wrapper {

        width: min(720px, 100%);

        gap: 24px;

    }

    .hero-badge {

        padding: 10px 18px;

    }



    .hero-headline {

        font-size: clamp(2.6rem, 6.5vw, 4rem);

    }



    .hero-subheadline {

        max-width: 520px;

    }



    .hero-cta {

        padding: 16px 36px;

    }

    .section-title {

        font-size: 2.2rem;

    }

    .section-intro p {

        font-size: 1.05rem;

    }

    .feature-parallax-content {

        grid-template-columns: 1fr;

        gap: 48px;

    }

    .feature-parallax-text {

        text-align: center;

    }

    .feature-parallax-text .cta-button {

        margin: 0 auto;

    }

    .testimonial-section-reworked {

        padding: 90px 30px;

    }

    .testimonial-pill {

        padding: 48px 32px;

    }

    .testimonial-author {

        justify-content: center;

        gap: 16px;

    }

    .case-bundle__inner {

        gap: 48px;

    }

    .case-bundle__actions {

        justify-content: center;

    }

    .logo-slider-section .slider-item {
        margin: 0 32px;
        gap: 16px;
    }

    .slider-item img {
        height: 64px;
    }

    .slider-text {
        font-size: clamp(2.1rem, 6vw, 3rem);
        letter-spacing: 0.06em;
    }

}



@media (max-width: 768px) {

    header {
        position: relative;
        z-index: 1200;
        padding: 14px 24px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(250, 145, 150, 0.14);
        box-shadow: 0 12px 30px rgba(250, 145, 150, 0.12);
    }

    nav {

        justify-content: space-between;

        align-items: center;

        gap: 12px;

        height: auto;

        min-height: 64px;

    }

    .logo img {

        height: 80px;

    }

    .burger-menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-text);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 24px;
        left: auto;
        width: min(260px, calc(100vw - 48px));
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(250, 145, 150, 0.2);
        border-radius: 22px;
        box-shadow: 0 28px 60px rgba(250, 145, 150, 0.22);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1100;
        box-sizing: border-box;
    }

    .nav-links.is-open {

        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;

    }

    .nav-links a {
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
        color: var(--primary-text);
        padding: 12px;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 44px;
    }

    .nav-links a:hover {
        background-color: rgba(250, 145, 150, 0.15);
    }

    main.homepage-main {

        padding-top: 24px;

    }

    section {

        padding: 70px 20px;

    }

    .hero-section {

        padding: 100px 24px 70px;

        min-height: auto;

        width: calc(100% - 40px);

        margin: 32px auto 70px;

        border-radius: clamp(24px, 8vw, 40px);

    }



    .hero-content-wrapper {

        width: min(640px, 100%);

        justify-items: center;

        text-align: center;

        gap: 24px;

    }



    .hero-badge {

        margin: 0 auto;

    }



    .hero-headline {

        font-size: 2.4rem;

    }



    .hero-subheadline {

        font-size: 1.05rem;

        max-width: 520px;

    }



    .hero-cta {

        width: 100%;

        justify-self: center;

    }

    .services-section-reworked {

        padding: 70px 20px;

    }

    .service-card-reworked {

        padding: 30px;

    }

    .client-marquee-section {

        padding: 50px 0;

    }

    .marquee-content img {

        height: 60px;

        margin: 0 24px;

    }

    .feature-parallax-text {

        text-align: center;

    }

    .feature-parallax-text p {

        margin-left: auto;

        margin-right: auto;

    }

    .testimonial-section-reworked {

        padding: 70px 20px;

    }

    .testimonial-pill {

        border-radius: 30px;

        padding: 40px 24px;

    }

    .testimonial-quote {

        font-size: 1.4rem;

    }

    .testimonial-author {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    .animation-section .neon-block {

        padding: 1.5rem;

    }

    .cta-row-reworked {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 2rem;
        margin-top: 8rem;
        padding-top: 4.5rem;
        text-align: center;
    }

    .case-bundle {

        padding: 80px 20px;

    }

    .case-bundle__copy {

        text-align: center;

    }

    .case-bundle__notes {

        padding: 20px;

    }

    .faq-section {

        padding: 70px 20px;

        gap: 30px;

    }

    .faq-intro h2 {

        font-size: 2.1rem;

    }

    .cta-section {

        margin: 40px 20px;

        padding: 60px 24px;

    }

    footer {

        padding: 50px 20px 20px;

    }

    .footer-main {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: center;

        gap: 16px;

        text-align: center;

    }

    .footer-bottom-links {

        display: flex;

        flex-wrap: wrap;

        gap: 12px;

        justify-content: center;

    }

    .footer-bottom-links a {

        margin-left: 0;

    }

    .footer-column {

        text-align: center;

    }

    .footer-column.logo-column p {

        padding-left: 0;

    }

    .logo-slider-section {

        padding: 40px 0;

    }

    .logo-slider-section .logo-slider-track {

        animation: sliderAuto 24s linear infinite;

    }

    .logo-slider-section .slider-item {

        margin: 0 24px;

        gap: 20px;

        opacity: 0.9;

    }

    .logo-slider-section .slider-item img {

        height: 160px;

    }

    .logo-slider-section .slider-text {

        font-size: 96px;

        letter-spacing: -6px;

    }

}



@media (max-width: 600px) {

    .logo img {

        height: 80px;

    }

    .nav-links {

        padding: 14px;

    }

    .hero-section {

        padding: 90px 20px 60px;

        width: calc(100% - 32px);

        margin: 28px auto 60px;

        border-radius: 24px;

    }

    .hero-content-wrapper {

        width: 100%;

        gap: 20px;

    }

    .hero-badge {

        padding: 8px 16px;

        gap: 10px;

    }

    .hero-badge-text {

        font-size: 0.85rem;

    }

    .hero-headline {

        font-size: 2.2rem;

    }

    .hero-subheadline {

        font-size: 1rem;

        max-width: 100%;

    }

    .product-showcase-section {
        padding: 70px 20px;
        margin: 56px auto;
        border-radius: 28px;
    }

    .product-feature-row {
        gap: 22px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        padding: 22px;
    }

    .hero-cta {

        width: 100%;

        text-align: center;

    }

    .services-grid-reworked {

        grid-template-columns: 1fr;

    }

    .client-marquee-section {

        padding: 40px 0;

    }

    .marquee-content img {

        height: 48px;

        margin: 0 18px;

    }

    .testimonial-pill {

        padding: 36px 22px;

    }

    .testimonial-quote {

        font-size: 1.3rem;

    }

    .animation-section .keywords-marquee li {

        font-size: 1.3rem;

    }

    .case-bundle__card {

        padding: 28px;

    }

    .logo-slider-section .slider-item {

        margin: 0 24px;

        gap: 24px;

    }

    .logo-slider-section .slider-item img {

        height: 140px;

    }

    .logo-slider-section .slider-text {

        font-size: 80px;

        letter-spacing: -4px;

    }

    .final-animation-section {

        padding: 70px 20px;

    }

    .animation-container {

        height: auto;

        padding: 40px 0;

    }

    .keyword-scroller li {

        font-size: 3.5rem;

    }

    .image-slideshow {

        position: relative;

        top: auto;

        left: auto;

        transform: none;

        width: min(320px, 80%);

        height: 360px;

        margin: 0 auto;

    }

    .animation-cta {

        position: relative;

        bottom: auto;

        right: auto;

        text-align: center;

    }

}



@media (max-width: 480px) {

    header {

        padding: 14px 16px;

    }

    .logo img {

        height: 70px;

    }

    .hero-section {

        padding: 70px 16px 50px;

        width: calc(100% - 24px);

        margin: 24px auto 56px;

        border-radius: 20px;

    }

    .hero-content-wrapper {

        gap: 18px;

        justify-items: center;

        text-align: center;

    }

    .hero-badge {

        padding: 8px 14px;

        gap: 8px;

        margin: 0 auto;

    }

    .hero-badge-text {

        font-size: 0.8rem;

    }

    .hero-headline {

        font-size: 2rem;

    }

    .hero-subheadline {

        font-size: 0.95rem;

    }

    .hero-cta {

        width: 100%;

        text-align: center;

    }

    .service-card-reworked {

        padding: 24px;

    }

    .testimonial-pill {

        padding: 32px 20px;

    }

    .case-bundle {

        padding: 70px 16px;

    }

    .faq-section {

        padding: 60px 16px;

        margin: 40px auto;

    }

    .cta-section {

        margin: 30px 16px;

        padding: 50px 20px;

    }

    footer {

        padding: 40px 16px 20px;

    }

    .footer-main {

        gap: 24px;

    }

    .footer-bottom-links {

        gap: 10px;

    }

    .logo-slider-section .slider-item img {

        height: 110px;

    }

    .logo-slider-section .slider-text {

        font-size: 60px;

        letter-spacing: -2px;

    }

    .keyword-scroller li {

        font-size: 2.6rem;

    }

    .image-slideshow {

        height: 300px;

    }

    .animation-cta p {

        font-size: 1.05rem;

    }

}






/* --- Footer --- */

footer {
    padding: 80px 50px 30px 50px;
    border-top: 1px solid rgba(250, 145, 150, 0.18);
    background: #ffffff;
    color: var(--primary-text);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column.logo-column {
    flex: 1.4;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-column.logo-column p {
    margin: 0;
    color: var(--secondary-text);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}



.footer-column a {

    display: block;

    color: var(--secondary-text);

    text-decoration: none;

    margin-bottom: 10px;

    font-weight: 500;

    transition: color 0.3s;

}



.footer-column a:hover {

    color: #ffcad2;

}



.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 145, 150, 0.12);
    color: #ffcad2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: var(--neon-cyan);
    color: #ffffff;
    transform: translateY(-3px);
}



.footer-bottom {
    border-top: 1px solid rgba(250, 145, 150, 0.18);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.footer-bottom-links a {
    margin-left: 20px;
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffcad2;
}



/* --- Responsive Design --- */

@media (max-width: 768px) {

    header {

        padding: 20px;

        width: calc(100% - 40px);

    }



    nav ul {

        display: none;
        /* Simple responsive solution, could be replaced with a burger menu */

    }



    section {

        padding: 80px 20px;

    }



    .hero-content h1 {

        font-size: 3rem;

    }



    .feature-content {

        flex-direction: column;

    }

}



/* --- Contact Page Specific Styles --- */

.contact-page-body {
    background: linear-gradient(150deg, #fffefe 0%, #ffe6ee 45%, #fff6fa 100%);
    color: var(--primary-text);
}



.contact-main {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 100vh;

    padding: 120px 50px 50px 50px;
    /* Add padding top for header */

}



.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    width: 100%;

    max-width: 1400px;

    align-items: center;

}



.contact-info {
    color: var(--primary-text);
}



.contact-info h1 {

    font-size: 3.5rem;

    margin-bottom: 20px;

}



.contact-info p {
    color: var(--secondary-text);
    margin-bottom: 20px;
}



.contact-info h2 {

    font-size: 1.5rem;

    margin-top: 40px;

    margin-bottom: 20px;

}



.info-box {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    border: 1px solid rgba(250, 145, 150, 0.22);
    background: rgba(255, 255, 255, 0.92);

    border-radius: 15px;

    margin-bottom: 15px;

    cursor: pointer;

    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;

}



.info-box:hover {

    border-color: #ffcad2;
    box-shadow: 0 16px 36px rgba(250, 145, 150, 0.18);
    transform: translateY(-2px);

}



.info-box.clicked {

    border-color: #ffcad2;
    box-shadow: 0 16px 36px rgba(250, 145, 150, 0.18);

}



.info-box i {

    font-size: 1.5rem;

    color: #ffcad2;

}



.info-box div {

    display: flex;

    flex-direction: column;

}



.info-box span {

    color: var(--secondary-text);

}



.info-box strong {

    color: var(--primary-text);

    font-weight: 500;

}



.contact-form-container {
    background: rgba(255, 255, 255, 0.94);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 32px 65px rgba(250, 145, 150, 0.16);
    border: 1px solid rgba(250, 145, 150, 0.14);
}



.form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}



.form-group {

    display: flex;

    flex-direction: column;

}



.form-group.full-width {

    grid-column: 1 / -1;

}



.form-group label {
    color: var(--primary-text);
    margin-bottom: 8px;
    font-size: 0.9rem;
}



.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(250, 145, 150, 0.25);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}



.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffcad2;
    box-shadow: 0 0 0 3px rgba(250, 145, 150, 0.2);
}



.form-group textarea {



    min-height: 150px;



    resize: vertical;



}







/* Hide the honeypot field from users */



.form-group.honeypot {

    position: absolute;

    left: -9999px;

    opacity: 0;

    height: 0;

    width: 1px;

    pointer-events: none;

}









.submit-button {
    background-color: #ffcad2;
    color: #ffffff;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-shadow: 0 18px 45px rgba(250, 145, 150, 0.22);
}



.submit-button.is-loading {

    opacity: 0.6;

    cursor: wait;

}



.form-status {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--primary-text);
    font-weight: 500;
}



.form-status[data-status="success"] {
    color: #0d8c6a;
}



.form-status[data-status="error"] {
    color: #d1395b;
}





.submit-button:hover {
    background-color: #ffb3bb;
    color: var(--primary-text);
    transform: translateY(-2px);
}



/* --- About Us Page Specific Styles --- */

.about-section {

    padding-top: 90px;
    /* Reduced spacing under the nav */

}



.about-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

}



.about-image {

    width: 100%;

    border-radius: 25px;

    overflow: hidden;
    /* Ensures the image respects the border-radius */

    transition: transform 0.4s, box-shadow 0.4s;

}



.about-image img {

    width: 100%;

    display: block;

}



.about-image:hover {

    transform: scale(1.03);

    box-shadow: 0 10px 40px rgba(250, 145, 150, 0.22);
    /* Neon glow */

}



.team-section {

    text-align: center;

}



.team-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.team-member-card {

    background-color: var(--card-bg);

    padding: 30px;

    border-radius: 15px;

    border: 1px solid var(--border-color);

    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;

}



.team-member-card img {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 20px;

    border: 3px solid var(--border-color);

}



.team-member-card h3 {

    font-size: 1.5rem;

    margin-bottom: 10px;

    color: var(--primary-text);

}



.team-member-card p {

    color: var(--secondary-text);

}



.team-member-card:hover {

    transform: translateY(-10px);

    border-color: rgba(250, 145, 150, 0.36);

    box-shadow: 0 18px 50px rgba(250, 145, 150, 0.25);

}



@media (min-width: 1600px) {

    .about-text p {

        font-size: 1.18rem;

        line-height: 1.85;

    }

    .team-member-card h3 {

        font-size: 1.7rem;

    }

    .team-member-card p {

        font-size: 1.1rem;

    }

}



/* --- Responsive for About Us Page --- */

@media (max-width: 900px) {

    .about-content {

        grid-template-columns: 1fr;
        /* Stack on smaller screens */

    }

    .team-grid {

        grid-template-columns: 1fr;
        /* Stack team members */

    }

}



/* --- FAQ Section --- */

.faq-section {
    padding: clamp(70px, 8vw, 90px) clamp(30px, 5vw, 50px);
    background-color: #ffffff;
    color: var(--primary-text);
    border-radius: 32px;
    margin: 0 auto 60px;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
    border: 1px solid rgba(250, 145, 150, 0.14);
    box-shadow: 0 24px 55px rgba(250, 145, 150, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faq-section:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(250, 145, 150, 0.22);
}

.faq-pill {
    display: inline-block;
    background-color: #ffcad2;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-intro h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.faq-intro p {
    color: var(--secondary-text);
}

.faq-intro a {
    color: #ffcad2;
    font-weight: 600;
    text-decoration: none;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}



.faq-item {
    background-color: #ffffff;
    color: var(--primary-text);
    border-radius: 22px;
    padding: 24px 32px;
    border: 1px solid rgba(250, 145, 150, 0.18);
    box-shadow: 0 16px 45px rgba(250, 145, 150, 0.14);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(250, 145, 150, 0.18);
    color: var(--secondary-text);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(250, 145, 150, 0.18);
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: var(--primary-text);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-icon:hover {
    transform: scale(1.05);
}

details[open] .faq-icon {
    background: var(--neon-cyan);
}

details[open] .faq-icon::before,
details[open] .faq-icon::after {
    background-color: #ffffff;
}

details[open] .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

/* Responsive for FAQ */

@media (max-width: 900px) {

    .faq-section {

        grid-template-columns: 1fr;

    }

    .product-showcase-section {
        padding: 90px 30px;
        margin: 70px auto;
        border-radius: 32px;
    }

    .product-feature-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-feature-row.align-right .product-feature-copy,
    .product-feature-row.align-right .product-feature-media,
    .product-feature-row.align-left .product-feature-copy,
    .product-feature-row.align-left .product-feature-media {
        order: initial;
    }

    .product-gallery {
        gap: 22px;
    }

}



/* --- Reworked Testimonial Pill Design --- */

.testimonial-section-reworked {
    padding: 110px 50px;
    background-color: var(--soft-surface);
}

.testimonial-pill {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(250, 145, 150, 0.18);
    box-shadow: 0 25px 55px rgba(250, 145, 150, 0.18);
    text-align: center;
    background: #ffffff;
}

.testimonial-quote {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--primary-text);
    margin-bottom: 36px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.testimonial-author img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(250, 145, 150, 0.4);
}

.testimonial-author .author-details {
    text-align: left;
    color: var(--secondary-text);
}

/* --- Pricing Section --- */

.pricing-section {
    padding: clamp(80px, 10vw, 120px) clamp(28px, 6vw, 60px);
    background: linear-gradient(180deg, #fffdfd 0%, #fff4f6 100%);
}

.pricing-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(48px, 6vw, 72px);
}

.pricing-subtext {
    font-size: 1.05rem;
    color: var(--secondary-text);
    margin-top: 12px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(18px, 4vw, 32px);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 28px;
    padding: clamp(28px, 5vw, 38px);
    border: 1px solid rgba(250, 145, 150, 0.18);
    box-shadow: 0 30px 55px rgba(250, 145, 150, 0.12);
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card.featured {
    border-color: rgba(250, 145, 150, 0.45);
    box-shadow: 0 35px 70px rgba(250, 145, 150, 0.18);
    position: relative;
}

.pricing-section.visible .pricing-card {
    opacity: 1;
    transform: translateY(0);
}

.pricing-section.visible .pricing-card:nth-child(1) {
    transition-delay: 0.05s;
}

.pricing-section.visible .pricing-card:nth-child(2) {
    transition-delay: 0.15s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 2px solid transparent;
    transition: border-color 0.45s ease;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 80px rgba(250, 145, 150, 0.22);
    border-color: rgba(250, 145, 150, 0.4);
}

.pricing-card:hover::before {
    border-color: rgba(250, 145, 150, 0.35);
}

.pricing-media {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fff5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: clamp(220px, 28vw, 320px);
    transition: box-shadow 0.45s ease;
}

.pricing-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.pricing-card:hover .pricing-media img {
    transform: scale(1.06);
}

.pricing-card.featured:hover .pricing-media img {
    transform: scale(1.12);
}

.pricing-heading h3 {
    margin: 0;
    font-size: 1.6rem;
}

.pricing-heading {
    padding-right: 48px;
}

.pricing-note {
    margin: 6px 0 0 0;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--neon-cyan);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: clamp(24px, 4vw, 36px);
    right: clamp(24px, 4vw, 36px);
    box-shadow: 0 12px 22px rgba(250, 145, 150, 0.25);
}

.pricing-section.visible .pricing-card.featured::before {
    animation: pricingPulse 1.6s ease-out 0.2s 2;
    border-color: rgba(250, 145, 150, 0.6);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 500;
    color: var(--primary-text);
    padding: 10px 12px;
    border-radius: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pricing-features li:hover {
    background: rgba(250, 145, 150, 0.12);
    transform: translateX(4px);
}

.pricing-features li span:first-child {
    font-size: 1.1rem;
    line-height: 1.4;
}

.pricing-features li span:first-child {
    transition: transform 0.3s ease;
}

.pricing-features li:hover span:first-child {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes pricingPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 145, 150, 0.55);
        border-color: rgba(250, 145, 150, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(250, 145, 150, 0);
        border-color: rgba(250, 145, 150, 0.2);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 145, 150, 0);
        border-color: rgba(250, 145, 150, 0.45);
    }
}

/* --- Animation Element Section Below Testimonial --- */



.animation-section .neon-inner {
    border: 1px solid rgba(250, 145, 150, 0.22);
    border-radius: 24px;
    padding: 2.2rem;
    margin-bottom: clamp(3.2rem, 6vw, 5rem);
}

.animation-section .keywords-marquee ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.animation-section .keywords-marquee li {
    color: var(--primary-text);
    font-size: 1.5rem;
}




font-weight: 400;
/* Slimmer font weight */







padding: 0.5rem 0;







text-transform: uppercase;
/* ALL CAPS */







letter-spacing: 0.05em;
/* Add some letter spacing for caps */







text-shadow: 0 0 8px rgba(250, 145, 150, 0.7);
/* Added glow effect */







}







.cta-row-reworked {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: clamp(2.4rem, 4vw, 3.6rem);
    margin-top: clamp(8rem, 15vw, 14rem);
    padding-top: clamp(4.8rem, 9vw, 6.8rem);
    text-align: center;
}

.cta-row-reworked .btn-primary {
    align-self: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-row-reworked .cta-prompt {
    margin-bottom: clamp(1.8rem, 3.2vw, 2.6rem);
}







.cta-prompt {
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: var(--primary-text);
}








.btn-primary.neon-button {
    background-color: #ffcad2;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2.4rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 18px 36px rgba(250, 145, 150, 0.28);
}

.btn-primary.neon-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 44px rgba(250, 145, 150, 0.32);
}












/* --- Final Keyword & Image Animation (Corrected) --- */



.final-animation-section {



    padding: 100px 50px;



    background-color: #080808;



}



.animation-container {

    position: relative;

    width: 100%;

    max-width: 1100px;
    /* Adjusted width */

    height: 600px;
    /* Adjusted height */

    margin: 0 auto;

    border-radius: 20px;

    overflow: hidden;

    background-color: #000;

}



.keyword-scroller {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}



.keyword-scroller ul {

    position: absolute;

    top: 0;

    left: 0;

    margin: 0;

    padding: 0;

    list-style: none;

    width: 100%;

}



.keyword-scroller li {

    font-family: 'League Spartan', sans-serif;

    font-size: 8rem;
    /* Drastically increased font size */

    font-weight: 700;

    color: rgba(255, 255, 255, 0.15);

    padding: 0;

    line-height: 1.2;
    /* Tighter line spacing */

    text-align: center;

}



.image-slideshow {

    position: absolute;

    top: 50%;

    left: 60px;
    /* Positioned to the left */

    transform: translateY(-50%);

    width: 350px;
    /* Adjusted size */

    height: 450px;
    /* Adjusted size */

    border-radius: 15px;

    overflow: hidden;

    z-index: 2;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

}



.image-slideshow img {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 1s ease-in-out;

}



.image-slideshow img.active {

    opacity: 1;

}



.animation-cta {

    position: absolute;

    bottom: 40px;

    right: 60px;

    z-index: 2;

    text-align: right;

}



.animation-cta p {

    font-size: 1.2rem;

    margin-bottom: 20px;

    color: #fff;

}



/* --- Chat Widget --- */

.chat-widget {

    position: fixed;

    bottom: 24px;

    right: 24px;

    z-index: 1200;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 16px;

    pointer-events: none;

}



.chat-launcher {

    pointer-events: auto;

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: linear-gradient(135deg, #202020, #090909);

    color: #ffcad2;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(250, 145, 150, 0.28);

    box-shadow: 0 12px 32px rgba(250, 145, 150, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;

    cursor: pointer;

}



.chat-launcher:focus-visible {

    outline: 2px solid var(--neon-cyan);

    outline-offset: 4px;

}



.chat-launcher:hover {

    transform: translateY(-3px);

    box-shadow: 0 16px 36px rgba(250, 145, 150, 0.35);

}



.chat-nudge {

    pointer-events: auto;

    padding: 14px 16px;

    border-radius: 16px;

    background: rgba(43, 31, 36, 0.94);

    border: 1px solid rgba(250, 145, 150, 0.28);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.9rem;

    max-width: 220px;

    transform: translateY(12px);

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;

    display: flex;

    gap: 10px;

    align-items: center;

}



.chat-nudge::before {

    content: '💬';

    font-size: 1.1rem;

}



.chat-nudge.is-visible {

    opacity: 1;

    transform: translateY(0);

    visibility: visible;

}


.chat-launcher svg {

    width: 28px;

    height: 28px;

    fill: currentColor;

}



.chat-window {

    pointer-events: auto;

    width: min(360px, calc(100vw - 32px));

    max-height: min(580px, 80vh);

    background: rgba(43, 31, 36, 0.92);

    border: 1px solid rgba(250, 145, 150, 0.15);

    border-radius: 20px;

    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);

    display: flex;

    flex-direction: column;

    overflow: hidden;

    opacity: 0;

    transform: translateY(12px) scale(0.98);

    transition: opacity 0.3s ease, transform 0.3s ease;

    backdrop-filter: blur(18px);

    visibility: hidden;

}



.chat-window[hidden] {

    display: none !important;

}



.chat-window.is-open {

    opacity: 1;

    transform: translateY(0) scale(1);

    visibility: visible;

}



.chat-header {

    padding: 18px 20px;

    background: linear-gradient(135deg, rgba(250, 145, 150, 0.22), rgba(43, 31, 36, 0.6));

    border-bottom: 1px solid rgba(250, 145, 150, 0.14);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

}



.chat-header-info {

    display: flex;

    flex-direction: column;

    gap: 4px;

}



.chat-header-title {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffcad2;
    font-weight: 700;
}



.chat-header-subtitle {

    margin: 0;

    font-size: 0.82rem;

    color: rgba(255, 255, 255, 0.72);

    font-weight: 400;

}



.chat-close {

    width: 32px;

    height: 32px;

    aspect-ratio: 1 / 1;

    border-radius: 50%;

    border: 1px solid rgba(250, 145, 150, 0.2);

    background: transparent;

    color: rgba(255, 255, 255, 0.8);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    cursor: pointer;

    transition: background 0.25s ease, color 0.25s ease;

    box-sizing: border-box;

}



.chat-close:hover {

    background: rgba(250, 145, 150, 0.15);

    color: #000;

}



.chat-messages {

    flex: 1;

    overflow-y: auto;

    padding: 20px;

    display: flex;

    flex-direction: column;

    gap: 12px;

    scrollbar-width: thin;

    scrollbar-color: rgba(250, 145, 150, 0.35) rgba(255, 255, 255, 0.05);

}



.chat-messages::-webkit-scrollbar {

    width: 6px;

}



.chat-messages::-webkit-scrollbar-thumb {

    background: rgba(250, 145, 150, 0.35);

    border-radius: 999px;

}



.chat-message {

    padding: 12px 14px;

    border-radius: 14px;

    max-width: 85%;

    line-height: 1.5;

    font-size: 0.95rem;

    background: rgba(20, 15, 25, 0.85);

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);

    animation: chat-pop 0.25s ease both;

}



.chat-message p {

    margin: 0;

    font-weight: 400;

    color: #fff;

}



.chat-message.is-user {

    margin-left: auto;

    background: rgba(255, 255, 255, 0.96);

    color: var(--primary-text);

    border: 1px solid rgba(250, 145, 150, 0.22);
    box-shadow: 0 12px 28px rgba(250, 145, 150, 0.18);

}

.chat-message.is-user p {
    color: var(--primary-text);
}



.chat-message.is-system {

    font-size: 0.82rem;

    align-self: center;

    background: rgba(15, 10, 18, 0.85);

    border: 1px solid rgba(250, 145, 150, 0.35);

    color: #fff;

    box-shadow: 0 6px 16px rgba(250, 145, 150, 0.2);

}



.chat-typing-bubble {

    align-self: flex-start;

    background: rgba(255, 255, 255, 0.12);

}



.chat-typing {

    display: inline-flex;

    align-items: center;

    gap: 6px;

}



.chat-typing span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: rgba(250, 145, 150, 0.65);

    animation: chat-bounce 1.2s infinite ease-in-out;

}



.chat-typing span:nth-child(2) {

    animation-delay: 0.2s;

}



.chat-typing span:nth-child(3) {

    animation-delay: 0.4s;

}



.chat-footer {

    padding: 16px 18px;

    border-top: 1px solid rgba(250, 145, 150, 0.14);

    display: flex;

    flex-direction: column;

    gap: 10px;

    background: rgba(43, 31, 36, 0.86);

}



.chat-footer form {

    display: flex;

    gap: 10px;

    align-items: flex-end;

    flex-wrap: nowrap;

}



.chat-input {

    flex: 1 1 auto;

    min-height: 48px;

    max-height: 120px;

    padding: 12px 14px;

    border-radius: 12px;

    border: 1px solid rgba(250, 145, 150, 0.3);

    background: rgba(43, 31, 36, 0.88);

    color: #fff;

    resize: none;

    font-family: inherit;

    font-weight: 400;

}



.chat-input::placeholder {

    color: rgba(255, 255, 255, 0.45);

}



.chat-send {

    border: none;

    background: var(--neon-cyan);

    color: #000;

    border-radius: 12px;

    padding: 12px 16px;

    flex: 0 0 auto;

    min-width: 96px;

    font-weight: 500;

    cursor: pointer;

    transition: transform 0.25s ease, box-shadow 0.25s ease;

}



.chat-send:disabled {

    opacity: 0.5;

    cursor: not-allowed;

    box-shadow: none;

}



.chat-send:hover:not(:disabled) {

    transform: translateY(-2px);

    box-shadow: 0 8px 16px rgba(250, 145, 150, 0.25);

}



.chat-status {

    font-size: 0.78rem;

    color: rgba(255, 255, 255, 0.55);

}



@keyframes chat-pop {

    from {

        opacity: 0;

        transform: translateY(8px) scale(0.98);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}



@keyframes chat-bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.6;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }

}



@media (max-width: 600px) {

    .chat-widget {

        bottom: 16px;

        right: 16px;

        gap: 12px;

    }

    .chat-launcher {

        width: 56px;

        height: 56px;

    }

    .chat-window {

        right: 0;

        left: 0;

        margin: 0 auto;

        width: min(420px, calc(100vw - 24px));

    }

    .chat-footer form {

        flex-direction: column;

        align-items: stretch;

        gap: 8px;

    }

    .chat-send {

        width: 100%;

    }

}





/* --- Full Width Section Helper --- */

.full-width-section {

    max-width: none;
    /* Override default section constraint */

    padding-left: 0;

    padding-right: 0;

}



/* --- Logo Slider Section --- */

.logo-slider-section {
    padding: 80px 0 0;
    margin-bottom: 60px;
    overflow: hidden;
    background-color: #ffffff;
    display: grid;
    gap: 32px;
    justify-items: center;
}

.logo-slider-section h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-text);
}

.logo-slider-track {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 48px;
    padding: 20px 0 40px;
}

.slider-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 0 48px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.slider-item:hover {
    opacity: 1;
    transform: translateY(-6px);
}

.slider-item img {
    height: 72px;
    width: auto;
}

.slider-text {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #ffcad2;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-transform: uppercase;
}

.slider-text.is-scrolling {
    text-shadow: 0 0 18px rgba(250, 145, 150, 0.35);
}



@keyframes sliderAuto {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}



@media (prefers-reduced-motion: reduce) {

    .logo-slider-section .logo-slider-track {

        animation: none !important;

    }

    .hero-section {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }

}









/* --- Responsive Styles for Contact Page --- */

@media (max-width: 1100px) {

    .contact-page-body {
        background: linear-gradient(160deg, #fff7f9 0%, #ffe6ec 55%, #ffffff 100%);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 920px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        text-align: center;
    }

    .info-box {
        justify-content: center;
    }

    .info-box div {
        text-align: left;
    }

    .contact-form-container {
        padding: 40px;
    }
}



@media (max-width: 768px) {

    .contact-main {

        padding: 90px 30px 30px 30px;

    }

    .form-grid {

        grid-template-columns: 1fr;
        /* Stack form fields for clean spacing */

    }

}



@media (max-width: 480px) {



    .contact-main {

        padding: 70px 20px 20px 20px;

    }







    .contact-info h1 {



        font-size: 2.5rem;



    }







    .contact-form-container {



        padding: 30px;



    }







    .form-grid {



        grid-template-columns: 1fr;
        /* Stack form fields on very small screens */



    }



}







/* --- Cookie Consent Modal --- */







.cookie-overlay {







    position: fixed;







    top: 0;







    left: 0;







    width: 100%;







    height: 100%;







    background-color: rgba(43, 31, 36, 0.7);







    backdrop-filter: blur(8px);







    z-index: 2000;







    display: flex;







    align-items: center;







    justify-content: center;







    opacity: 0;







    visibility: hidden;







    transition: opacity 0.4s ease, visibility 0.4s ease;







}















.cookie-overlay.is-visible {







    opacity: 1;







    visibility: visible;







}















.cookie-modal {







    background-color: var(--card-bg);







    color: var(--primary-text);







    border-radius: 20px;







    border: 1px solid var(--border-color);







    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);







    width: 90%;







    max-width: 480px;
    /* Optimal width for a vertical modal */







    display: flex;







    flex-direction: column;







    max-height: 90vh;







    transform: scale(0.95);







    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);







}















.cookie-overlay.is-visible .cookie-modal {







    transform: scale(1);







}















.cookie-modal-header {







    padding: 20px 25px;







    border-bottom: 1px solid var(--border-color);







    display: flex;







    align-items: center;







    gap: 15px;







}















.cookie-modal-header i {







    font-size: 1.8rem;







    color: #ffcad2;







}















.cookie-modal-header h3 {







    margin: 0;







    font-size: 1.2rem;







}















.cookie-modal-body {







    padding: 25px;







    overflow-y: auto;







}















.cookie-modal-body p {







    margin-top: 0;







    line-height: 1.6;







}















.cookie-modal-footer {







    padding: 20px 25px;







    border-top: 1px solid var(--border-color);







    display: flex;







    flex-direction: column;







    gap: 10px;







}















.cookie-modal-footer button {















    padding: 12px 20px;















    border-radius: 10px;















    border: none;















    cursor: pointer;















    font-weight: bold;















    width: 100%;















    display: flex;
    /* Use flexbox for robust centering */















    align-items: center;















    justify-content: center;















}















.cookie-modal .btn-primary {
    background-color: #ffcad2;
    color: #fff;
}







.cookie-modal .btn-secondary {
    background-color: #333;
    color: #fff;
}







.cookie-modal .btn-tertiary {
    background-color: transparent;
    color: var(--secondary-text);
    border: 1px solid var(--border-color);
}















.cookie-options {







    display: flex;







    flex-direction: column;







    gap: 10px;







}















.cookie-option {







    display: flex;







    align-items: flex-start;







    gap: 15px;







    padding: 15px;







    border-radius: 10px;







    background-color: #080808;







}















.cookie-option input[type="checkbox"] {







    width: 18px;







    height: 18px;







    margin-top: 5px;







    flex-shrink: 0;







}















.cookie-option label {







    font-size: 0.9rem;







    color: var(--secondary-text);







}















.cookie-option label strong {







    display: block;







    color: var(--primary-text);







    margin-bottom: 4px;







}















.hidden {







    display: none !important;







}















/* --- Cookie Settings Trigger --- */







.cookie-settings-trigger {







    position: fixed;







    bottom: 20px;







    left: 20px;







    width: 50px;







    height: 50px;







    background-color: var(--card-bg);







    color: #ffcad2;







    border: 1px solid var(--border-color);







    border-radius: 50%;







    display: flex;







    align-items: center;







    justify-content: center;







    font-size: 1.5rem;







    cursor: pointer;







    z-index: 1999;







    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);







    transition: transform 0.3s, box-shadow 0.3s;







}















.cookie-settings-trigger:hover {







    transform: scale(1.1);







    box-shadow: 0 0 20px var(--neon-cyan);







}













/* --- Case Bundle Section --- */
.case-bundle {
    max-width: none;
    width: 100%;
    padding: clamp(120px, 18vh, 160px) clamp(24px, 6vw, 80px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.65));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-bundle__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

@media (max-width: 900px) {
    .case-bundle__inner {
        grid-template-columns: 1fr;
    }
}

.case-bundle__copy {
    display: grid;
    gap: 24px;
}

.case-bundle__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(250, 145, 150, 0.15);
    color: #ffcad2;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-inline: auto;
}

.case-bundle__notes {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(250, 145, 150, 0.18);
    background: rgba(10, 10, 10, 0.7);
}

.case-bundle__notes p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.case-bundle__notes strong {
    color: var(--primary-text);
    font-weight: 600;
}

.case-bundle__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.case-bundle__panel {
    display: grid;
    gap: 24px;
    justify-items: start;
}

.case-bundle__card {
    width: 100%;
    padding: clamp(28px, 5vw, 40px);
    border-radius: 26px;
    background: rgba(43, 31, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 36px 120px -80px rgba(250, 145, 150, 0.36);
    backdrop-filter: blur(18px);
}

.case-bundle__card h3 {
    margin: 0 0 18px;
    font-size: 1.4rem;
    color: var(--primary-text);
}

.case-bundle__card ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
}

.case-bundle__card li::before {
    content: '•';
    margin-right: 8px;
    color: #ffcad2;
}

.case-bundle__tag {
    display: grid;
    gap: 4px;
    padding: 18px 24px;
    border-radius: 20px;
    background: rgba(250, 145, 150, 0.22);
    border: 1px solid rgba(250, 145, 150, 0.35);
    color: var(--primary-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-bundle__tag span {
    font-size: 0.85rem;
    font-weight: 600;
}

.case-bundle__tag small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .case-bundle__panel {
        justify-items: stretch;
    }

    .case-bundle__tag {
        justify-items: center;
        text-align: center;
    }
}

/* --- Mobile Optimization Fixes (Added by Agent) --- */

/* Fix for Services Section Padding and Overflow */
@media (max-width: 768px) {
    .services-section-reworked {
        padding: 60px 20px !important;
        /* Override existing padding */
    }

    .services-grid-reworked {
        grid-template-columns: 1fr !important;
        /* Stack cards on mobile */
        gap: 24px;
        display: flex;
        /* Use flex column to ensure stacking */
        flex-direction: column;
    }

    .service-card-reworked {
        padding: 24px !important;
        /* Reduce card padding */
        width: 100%;
        /* Ensure full width */
    }

    .service-card-reworked h3 {
        font-size: 1.35rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    /* Fix for Hero Section on Mobile */
    .hero-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 0 30px 30px !important;
        padding: 100px 20px 60px !important;
        box-sizing: border-box;
    }

    .hero-content-wrapper {
        width: 100% !important;
        padding: 24px !important;
    }

    .hero-headline {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        word-wrap: break-word;
    }
}

/* Fix for Section Title Overflow */
.section-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    max-width: 100%;
    padding: 0 10px;
}

/* General Mobile Overflow Protection */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Ensure images don't cause overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for "Warum CheckIn Plus" Headline specifically */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem !important;
        /* Smaller font for very small screens */
    }

    .service-card-reworked h3 {
        font-size: 1.25rem;
    }
}

/* --- Additional Fixes for Navigation and Hero (Added by Agent) --- */

/* Fix Navigation Bar Width */
header {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
}

/* Fix Hero Section Overflow */
@media (max-width: 768px) {
    .hero-section {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 100px 15px 60px !important;
        /* Reduced side padding further */
        margin: 0 !important;
        border-radius: 0 0 20px 20px !important;
        overflow: hidden !important;
        /* Ensure content stays inside */
    }

    .hero-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        /* Reduced padding inside wrapper */
        box-sizing: border-box !important;
    }

    .hero-headline {
        font-size: 2.2rem !important;
        /* Force smaller font size on mobile */
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        width: 100% !important;
    }

    .hero-subheadline {
        font-size: 1rem !important;
        width: 100% !important;
        word-wrap: break-word !important;
    }

    .hero-actions {
        flex-direction: column;
        /* Stack buttons on mobile */
        width: 100%;
        align-items: stretch;
        /* Full width buttons */
    }

    .hero-cta,
    .ghost-button {
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center;
        padding: 14px 20px !important;
    }
}

/* --- Chat Widget Mobile Fixes (Added by Agent) --- */
@media (max-width: 600px) {
    .chat-send {
        font-size: 1.1rem !important;
        /* Increase font size for "Senden" */
        padding: 14px 20px !important;
        /* Make button slightly larger touch target */
    }
}