/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.08), transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.06) 0%, rgba(245, 158, 11, 0.06) 100%);
    border: 1px solid rgba(239, 68, 68, 0.16);
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.03);
    transition: all 0.3s ease;
}

.limited-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
}

.limited-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #991b1b;
}

.limited-number {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ef4444, #f59e0b) !important;
    padding: 0.2rem 0.65rem;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #18181b;
}

.highlight {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.highlight-gradient {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subhead {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3f3f46;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    font-size: 1rem;
    color: #52525b;
}

.hero-strong-sentence {
    font-size: 1.25rem;
    font-weight: 600;
    color: #18181b;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    border: 1px solid rgba(124, 58, 237, 0.12);
    padding: 0.9rem 1.8rem 0.9rem 2.2rem;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.03);
    position: relative;
    overflow: hidden;
}

.hero-strong-sentence::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.quote-mark {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.swipe-text-container {
    min-height: 90px;
    margin-bottom: 0;
}

#heroSwipeText.animate-out {
    animation: swipeOut 0.4s ease forwards;
}

#heroSwipeText.animate-in {
    animation: swipeIn 0.4s ease forwards;
}

@keyframes swipeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes swipeIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-selection {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e4e4e7;
}

.hero-selection-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #52525b;
    margin-bottom: 1rem;
    display: block;
}

.selection-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.selection-badge {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 60px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #18181b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selection-badge:hover {
    border-color: #7c3aed;
    background: #f3e8ff;
    transform: translateY(-2px);
}

.selection-badge.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

.selection-badge.active .badge-icon {
    filter: brightness(0) invert(1);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-primary-btn {
    background: #18181b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.hero-primary-btn:hover {
    background: #3f3f46;
    transform: scale(0.98);
}

.hero-primary-btn.hidden {
    display: none;
}

.hero-dynamic-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7c3aed;
    font-weight: 500;
    min-height: 40px;
    transition: all 0.3s ease;
}

/* ========== ZIELGRUPPE ========== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audience-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.audience-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15), 0 10px 15px -5px rgba(124, 58, 237, 0.05);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #18181b;
}

.audience-card p {
    color: #52525b;
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: #fafafa;
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-arrow:hover {
    background: #7c3aed;
    color: #ffffff;
    border-color: #7c3aed;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
    left: -24px;
}

.next-arrow {
    right: -24px;
}

@media (max-width: 1024px) {
    .prev-arrow {
        left: -12px;
    }
    .next-arrow {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 38px;
        height: 38px;
    }
    .prev-arrow {
        left: 5px;
    }
    .next-arrow {
        right: 5px;
    }
}

.testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

/* Perfekte Zentrierung bei einer einzelnen Rezension auf Handy & PC */
.testimonial-grid:has(> .testimonial-card:only-child) {
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-user {
    flex: 1;
}

.user-name {
    font-weight: 700;
    color: #18181b;
    font-size: 0.95rem;
    display: block;
}

.user-verified {
    font-size: 0.7rem;
    color: #10b981;
}

.testimonial-rating {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f59e0b;
}

.testimonial-date {
    font-size: 0.7rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
    padding-left: 3.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3f3f46;
    margin-bottom: 1rem;
}

.testimonial-footer {
    display: flex;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f4f4f5;
}

.testimonial-like,
.testimonial-reply {
    font-size: 0.75rem;
    color: #a1a1aa;
    cursor: pointer;
    transition: color 0.2s ease;
}

.testimonial-reply:hover {
    color: #7c3aed;
}

.comment-disabled {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-top: 1rem;
    opacity: 0.6;
}

.comment-disabled-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #d4d4d8;
}

.comment-lock {
    font-size: 0.8rem;
}

.comment-text {
    font-size: 0.75rem;
    color: #71717a;
    font-weight: 500;
}

.comment-disabled-fake {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border-radius: 60px;
    padding: 0.5rem 1rem;
    border: 1px solid #e4e4e7;
    cursor: not-allowed;
}

.fake-avatar {
    width: 28px;
    height: 28px;
    background: #e4e4e7;
    border-radius: 50%;
}

.fake-input {
    flex: 1;
    font-size: 0.85rem;
    color: #cbd5e1;
    font-style: italic;
}

.fake-button {
    font-size: 0.75rem;
    color: #a1a1aa;
    background: #f4f4f5;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
}

/* ========== FAQ (MODERN GRID ACCORDION) ========== */
.faq {
    background-color: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.faq-accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    height: fit-content;
}

.faq-accordion-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.6rem;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(124, 58, 237, 0.02);
}

.faq-question h4 {
    font-size: 0.98rem;
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    padding-right: 1rem;
    transition: color 0.2s ease;
}

.faq-accordion-item:hover .faq-question h4 {
    color: var(--accent-purple);
}

.faq-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active {
    border-color: var(--accent-purple);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08);
}

.faq-accordion-item.active .faq-icon-svg {
    transform: rotate(180deg);
    color: var(--accent-purple);
}

/* --- Hochmoderne CSS Grid Höhen-Animation --- */
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
}

.faq-answer-content p {
    padding: 0 1.6rem 1.3rem 1.6rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    border-top: 1px solid transparent;
    transition: border-color 0.3s, padding-top 0.3s;
}

.faq-accordion-item.active .faq-answer-content p {
    border-top-color: var(--border-color);
    padding-top: 1rem;
}

/* ========== MOBILE OPTIMIZATION ========== */
@media (max-width: 768px) {
    /* --- ZIELGRUPPE --- */
    .audience-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .audience-card {
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1.25rem !important;
        padding: 1.5rem !important;
        border-radius: 1.25rem !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    }

    .audience-card:hover {
        transform: translateY(-2px) !important;
    }

    .audience-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
        background: rgba(124, 58, 237, 0.06) !important;
        border: 1px solid rgba(124, 58, 237, 0.15) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5) !important;
    }

    [data-theme="dark"] .audience-icon {
        background: rgba(124, 58, 237, 0.15) !important;
        border: 1px solid rgba(124, 58, 237, 0.3) !important;
        box-shadow: none !important;
    }

    .audience-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
    }

    .audience-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0 !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }

    .audience-card p {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0 !important;
    }

    /* --- PREISE (PAKETE) --- */
    .pricing-products-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .product-card {
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    /* --- BEWERTUNGEN (SLIDER) --- */
    .testimonial-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        max-width: 320px;
        box-sizing: border-box;
    }
}

/* ========== HERO SECTION ========== */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    width: 100%;
}

.hero-content-left {
    flex: 1;
    text-align: left;
}

.hero-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-content-right .comparison-container {
    position: relative;
    width: 100%;
    max-width: 700px; /* Enlarged to 700px to give inner mockup elements ultimate horizontal space */
    margin-left: -60px; /* Shifted left into the flex column gap to maximize space on desktop */
    height: 400px; /* Micro-tuned by 1.5% from 410px to frame desktop buttons perfectly snug */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #09090b;
    display: flex;
    flex-direction: column;
}

.hero-content-right .comparison-container:hover {
    transform: translateY(-4px); /* Clean, straight lift on hover for pixel-perfect sharpness */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.25);
}

.hero-content-right .browser-mockup {
    width: 100% !important;
    height: 100% !important;
    zoom: 0.636 !important; /* Renders true widescreen desktop layout scaled perfectly to fit container fluidly */
    transform: none !important;
    transform-origin: initial !important;
}

.mockup-header {
    height: 38px;
    background: #18181b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
    position: relative;
    user-select: none;
    flex-shrink: 0;
}

.mockup-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 0.85;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-address-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(9, 9, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.15rem 1.8rem;
    font-size: 0.7rem;
    color: #a1a1aa;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
    pointer-events: none;
    white-space: nowrap;
}

.mockup-content {
    flex: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #18181b;
}

.hero-mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    animation: scrollMockup 15s ease-in-out infinite alternate;
}

@keyframes scrollMockup {
    0% {
        object-position: top;
    }
    100% {
        object-position: bottom;
    }
}

/* OVERRIDE MOBILE HERO MOCKUP */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content-left,
    .hero-content-right {
        width: 100% !important;
    }

    .hero-content-right .comparison-container {
        height: 260px !important;
        transform: none !important; /* Kept completely straight on mobile for ultimate text sharpness */
        margin-top: -0.5rem;
        margin-bottom: 2rem !important;
        margin-left: 0 !important; /* Reset layout shift on tablet/mobile screens */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 58, 237, 0.2) !important;
        border-bottom: none !important;
    }
}

/* APPENED FIXES FOR MOBILE LAYOUT */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem 2rem 1.5rem !important;
        min-height: auto !important;
    }
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.5rem !important;
    }
    .hero-subhead {
        font-size: 1.1rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.4 !important;
    }
    .swipe-text-container {
        min-height: 95px !important; /* Fixed height to prevent vertical jittering during transitions */
        margin-bottom: 1rem !important;
    }
    .limited-badge {
        margin-bottom: 1.2rem !important;
        padding: 0.35rem 0.8rem !important;
        gap: 0.35rem !important;
    }
    .limited-badge .limited-text {
        font-size: 0.65rem !important;
    }
    .limited-badge .limited-number {
        font-size: 0.95rem !important;
        padding: 0.1rem 0.4rem !important;
    }
    .hero-strong-sentence {
        margin-bottom: 1rem !important;
        font-size: 1.1rem !important;
        padding: 0.6rem 1.2rem 0.6rem 1.6rem !important;
    }
    .hero-benefits {
        margin-bottom: 1.2rem !important;
    }
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 100% !important;
        margin-top: 0 !important;
    }
}
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .hero-content-left,
    .hero-content-right {
        width: 100% !important;
    }
    .hero-content-right .comparison-container {
        height: 260px !important; /* Micro-tuned to fit larger mobile image and headline comfortably */
        transform: none !important; /* Kept completely straight on mobile for ultimate text sharpness */
        margin-top: -0.5rem !important;
        margin-bottom: 2rem !important;
        margin-left: 0 !important; /* Reset layout shift on mobile screens */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 58, 237, 0.2) !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        border-bottom: none !important;
    }
    
    .hero-content-right .browser-mockup {
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        transform-origin: initial !important;
    }
}

/* ========== MORE THAN WEBSITES (BENTO GRID) ========== */
.more-than-websites {
    background: #fafafa;
    padding: 6rem 0;
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 2rem;
    margin-top: 3rem;
}

.bento-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #e4e4e7;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.bento-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.bento-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 0.8rem;
}

.bento-content p {
    font-size: 0.95rem;
    color: #52525b;
    line-height: 1.5;
}

.bento-visual {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    min-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    border-top: 1px solid #e4e4e7;
}

/* Mockup Images Base Style (Edge to edge, cover container) */
.social-mockup-img,
.logo-mockup-img,
.print-mockup-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: filter 0.4s ease;
}

/* Hover effects (Subtle brightness/clarity on hover) */
.bento-social:hover .social-mockup-img,
.bento-logo:hover .logo-mockup-img,
.bento-print:hover .print-mockup-img {
    filter: brightness(1.05);
}

/* Image wrappers */
.social-image-wrapper,
.logo-image-wrapper,
.print-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo slideshow styling */
.logo-image-wrapper {
    overflow: hidden;
}

.logo-image-wrapper .logo-mockup-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, filter 0.4s ease;
    z-index: 1;
}

.logo-image-wrapper .logo-mockup-img.active {
    opacity: 1;
    z-index: 2;
}

/* Mobile optimization for Bento Grid */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card {
        flex-direction: row;
    }
    
    .bento-content {
        flex: 1;
    }
    
    .bento-visual {
        flex: 0 0 260px;
        min-height: auto;
        padding: 0;
        border-top: none;
        border-left: 1px solid #e4e4e7;
    }

    .social-mockup-img,
    .logo-mockup-img,
    .print-mockup-img {
        width: 100% !important;
        height: 100% !important;
        min-height: 220px !important;
    }
}

@media (max-width: 768px) {
    .bento-card {
        flex-direction: column;
    }
    
    .bento-visual {
        min-height: 280px;
        flex: 1;
        border-left: none;
        border-top: 1px solid #e4e4e7;
        padding: 0;
    }

    .social-mockup-img {
        object-fit: contain !important; /* Premium containing to keep mockup fully visible and fit perfectly without cutoffs */
        padding: 1.2rem !important; /* Breathing space for phone illustration */
        min-height: auto !important;
        height: 280px !important;
    }

    .logo-mockup-img,
    .print-mockup-img {
        width: 100% !important;
        height: 100% !important;
        min-height: 280px !important;
    }
}

/* Mobile optimization for FAQ Grid */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .faq-question {
        padding: 1.1rem 1.3rem;
    }
    
    .faq-question h4 {
        font-size: 0.92rem;
    }
    
    .faq-answer-content p {
        padding: 0 1.3rem 1.1rem 1.3rem;
        font-size: 0.86rem;
    }
}

/* ========== TRANSFORMATION SECTION & COMPARISON SLIDER ========== */
.comparison-slider {
    display: none !important;
}

.transformation-section {
    padding: 7rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 400px; /* Micro-tuned by 1.5% from 410px to frame desktop buttons perfectly snug */
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    user-select: none;
    cursor: ew-resize;
    touch-action: none;
}

.comparison-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.before-side {
    z-index: 1;
    background: #f1f5f9;
}

.after-side {
    z-index: 2;
    background: #090d16;
    /* Real-time clipping mask controlled by CSS property --position */
    clip-path: polygon(calc(var(--position, 50) * 1%) 0, 100% 0, 100% 100%, calc(var(--position, 50) * 1%) 100%);
}

.browser-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.browser-header {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    gap: 8px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.before-side .browser-header {
    background: #e2e8f0;
}

.after-side .browser-header {
    background: #0f172a;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.before-side .dot { background: #94a3b8; }
.after-side .dot:nth-child(1) { background: #ef4444; }
.after-side .dot:nth-child(2) { background: #eab308; }
.after-side .dot:nth-child(3) { background: #22c55e; }

.browser-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 280px; /* Fixed width to prevent text offsets and horizontal shifting */
    height: 26px;
    border-radius: 6px;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    white-space: nowrap;
    box-sizing: border-box;
}

.browser-address .url-text {
    font-size: 0.72rem;
    font-family: inherit;
    color: inherit;
    text-align: center;
}

.browser-address .lock-icon {
    position: absolute;
    left: 10px;
    display: flex;
    align-items: center;
    font-size: 0.72rem;
}

.before-side .browser-address {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.before-side .browser-address.unsafe .lock-icon {
    color: #ef4444;
    font-weight: 800;
}

.after-side .browser-address {
    background: rgba(0, 0, 0, 0.3);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.after-side .browser-address.safe .lock-icon {
    color: #22c55e;
}

.browser-badge-speed {
    margin-left: auto;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.browser-viewport {
    flex: 1;
    padding: 0 !important; /* Unified padding: 0 for seamless vertical aligning of website headers */
    overflow: hidden;
    box-sizing: border-box;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: calc(var(--position, 50) * 1%);
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.2), #7c3aed, rgba(37, 99, 235, 0.2));
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-line {
    flex: 1;
    width: 2px;
    background: rgba(124, 58, 237, 0.5);
}

.handle-knob {
    width: 44px;
    height: 44px;
    background: #7c3aed;
    border: 4px solid #fff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
    transition: transform 0.2s ease;
}

.comparison-container:hover .handle-knob {
    transform: scale(1.1);
    background: #2563eb;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.8);
}

/* ---------- VORHER WEBSEITE (ALT & CLUNKY - GRÜNES THEMA) ---------- */
.before-viewport {
    font-family: "Times New Roman", Times, serif;
    color: #1e3a1e;
    background: #f4fbf7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
}

.old-site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #2d6a4f;
    padding: 8px 16px; /* Exactly aligns with new site's navbar padding */
    flex-shrink: 0;
}

.old-logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1b4332;
}

.old-nav {
    font-size: 0.85rem;
    word-spacing: 4px;
    color: #2d6a4f;
}

.old-site-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 16px; /* Compact padding to prevent vertical stretching */
    flex: 0 0 auto;
}

.old-hero h3 {
    font-size: 1.4rem; /* Slightly smaller for a tighter, neater 90s aesthetic */
    margin-bottom: 0.4rem;
    color: #1b4332;
}

.old-hero p {
    font-size: 0.88rem; /* Slightly more compact */
    line-height: 1.35;
    color: #40916c;
    margin: 0 auto;
    max-width: 500px;
}

.old-divider {
    height: 1px;
    background: #74c69d;
    margin: 1rem 0; /* Reduced from 1.5rem to compress vertical space */
}

.old-grid {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.old-card {
    flex: 1;
    border: 1px solid #52b788;
    background: #e9f5ed;
    padding: 0.85rem; /* Slightly more compact padding */
    text-align: left;
    font-size: 0.8rem; /* Compact size */
    color: #1e3a1e;
}

.old-card b {
    display: block;
    margin-bottom: 0.25rem;
    color: #1b4332;
}

/* Override full height inside the main hero mockup wrapper */
.mockup-content .after-viewport-nurmoon {
    height: 100%;
}

/* ---------- NACHHER WEBSEITE (EDEL & DYNAMISCH - LIVE NURMOON CODES) ---------- */
.after-viewport-nurmoon {
    --tuerkis: #23FFFF;
    --tuerkis-light: #D6FCFC;
    --tuerkis-dark: #00C4C4;
    --tuerkis-deep: #009999;
    --text-dark: #1A2A2A;
    --text-soft: #2E4242;
    --text-muted: #5C7272;
    --bg-white: #FFFFFF;
    --bg-offwhite: #F8FDFD;
    --bg-subtle: #EEF9F9;
    --bg-gray-light: #F5F7F7;
    --bg-card: #FFFFFF;
    --border-light: #C5E8E8;
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 35px -8px rgba(35, 255, 255, 0.12);
    --shadow-lg: 0 25px 40px -12px rgba(0, 196, 196, 0.2);
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--bg-white);
    padding: 0 !important;
    overflow-y: scroll;
    height: calc(100% - 42px);
    width: 100%;
    position: relative;
    box-sizing: border-box;
    scrollbar-width: none;
    text-align: left;
}

.after-viewport-nurmoon::-webkit-scrollbar {
    display: none;
}

.after-viewport-nurmoon .navbar-wrapper {
    border-bottom: 1px solid rgba(197, 232, 232, 0.5);
    background: rgba(255, 255, 255, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
}

.after-viewport-nurmoon .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
}

.after-viewport-nurmoon .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.after-viewport-nurmoon .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.after-viewport-nurmoon .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.after-viewport-nurmoon .logo-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.after-viewport-nurmoon .logo-text span {
    color: var(--tuerkis-dark);
    display: inline !important; /* Keep it inline next to each other exactly like the original branding */
    font-size: inherit !important; /* Inherit font-size to prevent subtitle appearance */
    font-weight: inherit !important;
    margin-left: 6px !important;
}

.after-viewport-nurmoon .nav-links {
    display: flex;
    gap: 16px;
}

.after-viewport-nurmoon .nav-links span {
    font-size: 0.75rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
    cursor: pointer;
    color: var(--text-soft);
}

.after-viewport-nurmoon .nav-links span:hover,
.after-viewport-nurmoon .nav-links span.active {
    border-bottom-color: var(--tuerkis-dark);
    color: var(--tuerkis-deep);
}

/* ========== HERO SECTION (NURMOON) ========== */
.after-viewport-nurmoon .hero-section {
    background: transparent !important; /* Fixed: Removed off-white gradient box to make the background completely seamless and uniform */
    padding: 36px 24px 48px 24px; /* More generous and premium spacing */
    position: relative;
    overflow: hidden;
}

.after-viewport-nurmoon .hero-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: heroShineOverlay 15s infinite;
    animation-delay: 2s;
    pointer-events: none;
    z-index: 5;
}

.after-viewport-nurmoon .hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--tuerkis-light) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.after-viewport-nurmoon .hero-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(35, 255, 255, 0.15) 0%, transparent 70%);
    bottom: -50px;
    right: -75px;
    border-radius: 50%;
    z-index: 0;
}

.after-viewport-nurmoon .hero-section .container {
    position: relative;
    z-index: 1;
}

.after-viewport-nurmoon .hero {
    display: flex;
    flex-direction: row;
    gap: 36px; /* Increased gap for original desktop spacing ratios */
    align-items: center;
    min-height: auto !important; /* Overrides ByKine global .hero min-height: 90vh style bleeding on desktop */
    height: auto !important;
    background: transparent !important; /* Fixed: Removes ByKine's global background gradient bleeding behind the content */
    overflow: visible !important; /* Fixed: Removes ByKine's global overflow: hidden bleeding to prevent image clipping */
}

.after-viewport-nurmoon .hero-content {
    flex: 1.2;
}

.after-viewport-nurmoon .hero-visual {
    flex: 0.8;
    width: 100%;
    position: relative;
    margin-top: 16px; /* Adds margin so that the image never overlaps the sticky navbar at its peak upward float */
    animation: float 6s ease-in-out infinite; /* Applies the float animation to the container, making the image and its background box float together! */
}

.after-viewport-nurmoon .hero-visual::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    background: var(--tuerkis-light);
    border-radius: 24px; /* More elegant original corner rounding scale */
    z-index: -1;
    opacity: 0.5;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes heroShineOverlay {
    0% { left: -150%; }
    10% { left: 200%; }
    100% { left: 200%; }
}

@keyframes buttonShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.after-viewport-nurmoon .hero-image {
    width: 100%;
    height: 210px; /* Upgraded to 3:2 landscape aspect ratio instead of vertical square */
    object-fit: cover;
    border-radius: 24px; /* More elegant original corner rounding scale */
    box-shadow: var(--shadow-lg);
    display: block; /* Ensures block alignment without baseline spacing */
}

.after-viewport-nurmoon .hero-content h1 {
    font-size: 2.1rem; /* Leicht vergrößert */
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, var(--text-dark), var(--tuerkis-deep));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
    font-weight: 700 !important; /* Fixed: Original 700 font weight instead of 800 */
}

.after-viewport-nurmoon .hero-subheadline {
    font-size: 0.88rem;
    margin-bottom: 1.6rem;
    color: var(--text-soft);
    font-weight: 400 !important; /* Fixed: Original 400 font weight instead of 500 */
    line-height: 1.5;
}

.after-viewport-nurmoon .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--tuerkis-light), rgba(255, 255, 255, 1));
    color: var(--tuerkis-deep);
    font-weight: 700;
    font-size: 0.58rem;
    padding: 4px 10px;
    border-radius: 60px;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(35, 255, 255, 0.4);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 196, 196, 0.08);
}

.after-viewport-nurmoon .btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--border-light);
    padding: 8px 18px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.after-viewport-nurmoon .btn-primary {
    background: linear-gradient(135deg, var(--tuerkis), var(--tuerkis-dark));
    border: none;
    color: #0A2A2A;
    font-weight: 700;
    box-shadow: 0 8px 15px -5px rgba(35, 255, 255, 0.4);
    position: relative;
    overflow: hidden; /* Necessary to crop button shine light ray */
}

.after-viewport-nurmoon .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: buttonShine 6s infinite;
}

.after-viewport-nurmoon .btn-primary:hover {
    background: linear-gradient(135deg, var(--tuerkis-dark), var(--tuerkis-deep));
    color: white;
    transform: translateY(-2px);
}

.after-viewport-nurmoon .hero-buttons.desktop-buttons {
    display: flex;
    gap: 8px;
}

.after-viewport-nurmoon .hero-buttons.mobile-buttons {
    display: none; /* Hidden on desktop view */
}



/* RESPONSIVE COMPARISON MOBILE FIXES */
@media (max-width: 768px) {
    .comparison-container {
        height: 260px !important; /* Micro-tuned to fit larger mobile image and headline comfortably */
    }
    .new-hero h1 {
        font-size: 1.6rem !important;
    }
    .new-logo {
        font-size: 1.1rem;
    }
    .new-nav {
        gap: 0.8rem;
    }
    .new-nav span:not(.new-nav-cta) {
        display: none;
    }
    .old-site-header {
        margin-bottom: 0.8rem;
    }
    .old-grid {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Pixel-perfect URL centering on small screens */
    .browser-address {
        width: 200px !important;
    }

    .browser-address .lock-icon {
        left: 6px !important;
    }

    /* Behebung des riesigen oberen Abstands (Padding-Isolierung) */
    .after-viewport-nurmoon .hero-section {
        padding: 12px 12px 16px 12px !important; /* Compact padding for mobile browser viewport */
    }

    /* Flex row to column for miniaturized Nurmoon viewport to avoid squished lettering */
    .after-viewport-nurmoon .hero {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding: 0 !important; /* Completely overrides and blocks ByKine's global mobile .hero padding bleeding */
        margin: 0 !important;
    }

    /* Hamburger-Menü-Wechsel (wie im Original zur Vermeidung von Header-Quetschungen) */
    .after-viewport-nurmoon .nav-links {
        display: none !important; /* Hide links on mobile */
    }

    .after-viewport-nurmoon .navbar::after {
        content: '☰' !important;
        font-size: 1.1rem !important;
        color: var(--tuerkis-dark) !important;
        font-weight: bold !important;
        cursor: pointer !important;
        display: block !important; /* Show hamburger menu icon on mobile navbar right side */
    }

    /* Logo-Skalierung auf Handys zur Vermeidung von Umbrüchen */
    .after-viewport-nurmoon .logo-text {
        font-size: 0.78rem !important;
    }

    .after-viewport-nurmoon .hero-content {
        text-align: center !important;
        width: 100% !important;
    }

    .after-viewport-nurmoon .hero-content h1 {
        font-size: 1.32rem !important; /* Upgraded heading size for stronger mobile visual impact */
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
    }

    .after-viewport-nurmoon .hero-subheadline {
        font-size: 0.7rem !important;
        margin-bottom: 0.6rem !important;
    }

    .after-viewport-nurmoon .hero-buttons.desktop-buttons {
        display: none !important;
    }

    .after-viewport-nurmoon .hero-buttons.mobile-buttons {
        display: flex !important;
        flex-direction: column !important; /* Stack vertically underneath each other */
        gap: 8px !important;
        width: 100% !important;
        padding: 0 20px !important; /* Elegant margin breathing room on the sides */
        margin-top: 16px !important; /* Spacing to the visual image above */
        box-sizing: border-box !important;
    }

    .after-viewport-nurmoon .hero-buttons.mobile-buttons .btn {
        width: 100% !important; /* Stretch fully from left to right */
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
        padding: 10px 18px !important; /* Generous touch area for phone thumbs */
        font-size: 0.72rem !important;
    }

    .after-viewport-nurmoon .btn {
        padding: 5px 12px !important;
        font-size: 0.65rem !important;
    }

    .after-viewport-nurmoon .hero-visual {
        width: 80% !important;
        margin: 12px auto 0 auto !important; /* Safe spacing to float perfectly on phone screens */
    }

    .after-viewport-nurmoon .hero-image {
        height: 145px !important; /* Upgraded mobile image height for better vertical presence */
    }

    .after-viewport-nurmoon .badge {
        font-size: 0.5rem !important;
        padding: 2px 8px !important;
        margin-bottom: 0.3rem !important;
    }
}

/* ========== BENEFITS SECTION (NURMOON REDESIGN) ========== */
.after-viewport-nurmoon .benefits-section {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
    text-align: center;
}

.after-viewport-nurmoon .benefits-header {
    margin-bottom: 1.5rem;
}

.after-viewport-nurmoon .benefits-divider {
    width: 45px;
    height: 3px;
    background: var(--tuerkis-dark);
    margin: 0.6rem auto 0.85rem auto;
    border-radius: 2px;
}

.after-viewport-nurmoon .benefits-header h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0.5rem 0 0.25rem 0;
    font-weight: 700;
    font-family: var(--font-main);
}

.after-viewport-nurmoon .benefits-sub {
    font-size: 0.8rem;
    color: var(--text-soft);
    max-width: 450px;
    margin: 0 auto;
    font-family: var(--font-main);
}

.after-viewport-nurmoon .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.after-viewport-nurmoon .benefit-card {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 232, 232, 0.3);
    transition: var(--transition);
}

.after-viewport-nurmoon .benefit-card:hover {
    transform: translateY(-3px);
    border-color: var(--tuerkis-dark);
    box-shadow: 0 15px 30px rgba(0, 196, 196, 0.08);
}

.after-viewport-nurmoon .benefit-card-icon {
    font-size: 1.3rem;
    color: var(--tuerkis-dark);
    margin-bottom: 0.85rem;
}

.after-viewport-nurmoon .benefit-card h3 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.45rem;
    font-weight: 700;
    font-family: var(--font-main);
}

.after-viewport-nurmoon .benefit-card p {
    font-size: 0.75rem;
    color: var(--text-soft);
    line-height: 1.4;
    font-family: var(--font-main);
}

@media (max-width: 768px) {
    .after-viewport-nurmoon .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }
    
    .after-viewport-nurmoon .benefits-section {
        padding: 2rem 1rem !important;
    }
    
    .after-viewport-nurmoon .benefits-header h2 {
        font-size: 1.15rem !important;
    }
    
    .after-viewport-nurmoon .benefits-sub {
        font-size: 0.72rem !important;
    }
    
    .after-viewport-nurmoon .benefit-card {
        padding: 1.1rem !important;
    }
}
