/* Calculator Specific Styles - Brand Aligned */

:root {
    /* Brand Colors (Restored) */
    --color-brand-blue: #29abe2;
    --color-brand-yellow: #f9c62d;
    --color-fuchsia: #ee3124;
    --color-bg-light: #f9f9f9;
    --color-lime: #2ecc71;
    --color-mango: #ffcc00;
    --color-black: #1a1a1a;
    --color-white: #ffffff;

    --calc-primary: var(--color-brand-yellow);
    --calc-secondary: var(--color-brand-blue);
    --calc-accent: var(--color-fuchsia);
    --calc-bg: #ffffff;
    --calc-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Global Reset (Transferred from style.css) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.calculator-container {
    padding-bottom: 200px;
    min-height: 100vh;
    background: var(--color-bg-light);
}

/* Standalone Nav */
.standalone-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1100;
}

.standalone-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.standalone-nav .logo {
    display: flex;
    align-items: center;
}

.standalone-nav .logo img {
    transition: transform 0.3s ease;
}

.standalone-nav .logo:hover img {
    transform: scale(1.02);
}

.nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--calc-secondary);
    border: 1.5px solid rgba(41, 171, 226, 0.2);
    /* Subtle brand border */
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.nav-contact:hover {
    background: var(--calc-secondary);
    color: white;
    border-color: var(--calc-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(41, 171, 226, 0.25);
}

/* Standalone Footer */
.standalone-footer {
    text-align: center;
    padding: 40px 0;
    background: white;
    font-size: 0.9rem;
    color: #888;
}

/* Wavy Header Section */
.calc-header {
    background: var(--calc-secondary);
    padding: 80px 0 160px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge-premium {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.calc-header h1 {
    color: white;
    margin-bottom: 10px;
}

.calc-header .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Stepper */
.stepper-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.stepper-bar {
    height: 100%;
    background: var(--calc-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--calc-primary);
}

/* Step Layout */
.calculator-main {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--calc-shadow);
    max-width: 650px;
    margin: 0 auto;
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.step-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    color: var(--color-black);
}

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.option-card {
    background: #fdfdfd;
    padding: 30px 20px;
    border-radius: 20px;
    border: 3px solid #f0f0f0;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #e0e0e0;
    transform: translateY(-4px);
}

.option-card.selected {
    border-color: var(--calc-primary);
    background: #fffdf5;
    box-shadow: 0 8px 20px rgba(249, 198, 45, 0.15);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

/* Slider Customization */
.slider-container {
    padding: 20px 0;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #eee;
    margin: 30px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    background: var(--calc-primary);
    border: 6px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* Checkbox Cards */
.checkbox-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fdfdfd;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 3px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-card.selected {
    border-color: var(--calc-secondary);
    background: #f0f9ff;
}

.chk-box {
    width: 28px;
    height: 28px;
    border: 2px solid #ddd;
    border-radius: 8px;
    position: relative;
    background: white;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected .chk-box {
    background: var(--calc-secondary);
    border-color: var(--calc-secondary);
}

.selected .chk-box::after {
    content: '✓';
    color: white;
    font-size: 18px;
    font-weight: 800;
}

.badge {
    background: var(--calc-primary);
    font-weight: 700;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.7rem;
}

/* Sticky Price Bar - Re-imagined */
.price-summary {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: #1f8ec4;
    /* Darker Blue */
    color: white;
    border: 4px solid white;
    padding: 20px 32px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(31, 142, 196, 0.4);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-summary.minimized {
    transform: translate(-50%, 200%);
    /* Move completely off screen */
    opacity: 0;
    pointer-events: none;
}

@keyframes pricePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.10);
    }

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

.price-pulse {
    animation: pricePulse 0.4s ease-out;
}

.price-value {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    transition: color 0.3s;
}

/* Buttons */
.btn-calc {
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary-calc {
    background: var(--calc-primary);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(249, 198, 45, 0.3);
}

.btn-primary-calc:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 198, 45, 0.4);
}

.btn-secondary-calc {
    background: #f0f0f0;
    color: var(--color-black);
}


/* --- Budget Control Redesign --- */
.budget-grid {
    animation: fadeIn 0.5s ease-out;
}

.control-card {
    background: #fdfdfd;
    border: 3px solid #f0f0f0;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    text-align: left;
}

.control-card:hover {
    border-color: var(--calc-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.control-card.active {
    background: #fffdf5;
    border-color: var(--calc-primary);
    box-shadow: 0 8px 20px rgba(249, 198, 45, 0.15);
}

.control-card.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f9f9f9;
}

.card-icon {
    font-size: 2rem;
    background: white;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-main {
    flex: 1;
}

.card-main label {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-black);
    margin-bottom: 2px;
}

.card-main small {
    color: #888;
    font-size: 0.8rem;
}

/* Stepper Modern */
/* Stepper Modern - Refined */
.stepper-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.step-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
}

.step-btn:hover {
    background: var(--calc-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(249, 198, 45, 0.4);
}

.step-value {
    font-weight: 800;
    font-size: 1.3rem;
    min-width: 60px;
    text-align: center;
    color: var(--color-black);
    font-variant-numeric: tabular-nums;
}

.service-time-card {
    text-align: center;
    padding: 30px !important;
}

.service-time-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Card Toggle */
.card-toggle {
    width: 46px;
    height: 24px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
}

.active .card-toggle {
    background: var(--calc-primary);
}

.toggle-circle {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.active .toggle-circle {
    left: 24px;
}

/* Minimal Select */
.minimal-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 5px;
    cursor: pointer;
    background: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Mobile Optimizations - Compacted for "Alles in 1 scherm" */
@media (max-width: 600px) {
    .container { width: 95%; }

    /* Shrink Header */
    .calc-header { padding: 40px 0 100px; }
    .calc-header h1 { font-size: 1.5rem; margin-bottom: 5px; }
    .calc-header p { font-size: 0.85rem; }
    .badge-premium { margin-bottom: 10px; padding: 4px 12px; }
    .hero-content img { height: 45px !important; }

    .calculator-main { margin-top: -60px; }

    /* Compact Step Cards */
    .step-card {
        scroll-margin-top: 10px;
        padding: 20px 15px;
        border-radius: 18px;
    }

    .step-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .step-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    /* Tighter Grids */
    .option-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .option-card {
        padding: 16px;
        min-height: 80px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .option-icon {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .option-card div { flex: 1; }
    .option-card strong { font-size: 1rem; }
    .option-card small { font-size: 0.75rem; }

    /* Sticky Price Bar */
    .price-summary {
        padding: 12px 20px;
        width: 95%;
        bottom: 15px;
        border-width: 2px;
    }

    .price-value { font-size: 1.5rem; }

    /* Navigation */
    .nav-buttons {
        gap: 8px;
        margin-top: 20px;
    }

    .btn-calc {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    /* Checkbox Cards */
    .checkbox-card {
        padding: 14px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .checkbox-card .option-icon { font-size: 2rem; }

    /* Insight Boxes */
    .consumption-insight {
        padding: 12px;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    /* Slider Adjustments */
    .slider-container { padding: 10px 0; }
    .range-slider { margin: 20px 0; }
    .live-feedback div { font-size: 2.8rem !important; }

    /* Stepper Modern */
    .stepper-modern {
        gap: 12px;
        padding: 6px 12px;
    }
    .step-btn { width: 36px; height: 36px; font-size: 1.1rem; }
    .step-value { font-size: 1.1rem; min-width: 45px; }

    /* Premium Cards in Step 5 */
    .premium-card { padding: 18px !important; }
    .premium-card-header { gap: 12px !important; }
    .premium-card-icon { font-size: 1.8rem !important; }
    .cocktail-buttons { gap: 6px !important; }
    .premium-btn-style { padding: 10px 5px !important; font-size: 0.7rem !important; }
}

/* --- NEW: Conversion & Consumption Styles --- */

/* Sticky Detail Bar */
.sticky-detail-bar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--calc-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--color-brand-yellow);
    padding-bottom: 6px;
    margin-bottom: 4px;
}

.sticky-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-list li {
    font-size: 0.85rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

/* Consumption Insights */
.consumption-insight {
    margin-top: 15px;
    padding: 16px;
    background: #fffdf0;
    /* Very light yellow */
    border: 2px dashed #ffcc00;
    /* Dashed brand yellow border */
    border-radius: 12px;
    font-size: 0.95rem;
    color: #444;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.4;
    text-align: left;
}

.insight-highlight {
    color: #0ea5e9;
    /* Brand blue from image */
    font-weight: 800;
}

.insight-sub {
    font-size: 0.85rem;
    color: #888;
}

/* Improved Sliders */
.sub-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e0f2fe;
    /* Light blue track from image */
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    margin-top: 10px;
}

.sub-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #ffcc00;
    /* Brand yellow thumb */
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.sub-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.sub-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #ffcc00;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .sticky-detail-bar {
        position: static;
        width: 100%;
        margin-top: 30px;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .sticky-detail-bar {
        position: static;
        width: 100%;
        margin-top: 30px;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        display: none !important;
    }
}

/* Atmosphere Slideshow (Premium Swiper) */
.atmosphere-slider {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
    position: relative;
    padding-top: 60px !important;
}

.atmospheric-swiper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 70px !important;
    /* Space for pagination */
}

/* --- End Mobile Context Accordion --- */

@media (max-width: 768px) {
    .mobile-context-details {
        display: block;
        /* Show on Mobile */
    }

    .desktop-inline-context {
        display: none;
    }

    .step-col-benefits {
        display: none !important;
        /* Hide original column on Mobile */
    }
}

.glass-card {
    background: white;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}

.swiper-slide-active .glass-card {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 198, 45, 0.3);
    /* Subtle brand highlight */
}

.gallery-slide {
    position: relative;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.slide-caption {
    display: block;
    text-align: center;
    font-weight: 700;
    color: var(--color-black);
    margin-top: 18px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--color-black);
    transition: all 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-black);
    /* Default to black */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--calc-primary);
    transform: scale(1.1);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: white;
}

/* Hide navigation on mobile */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .atmosphere-slider {
        padding-top: 40px !important;
    }

    .gallery-slide img {
        height: 320px;
    }
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--calc-primary);
    width: 32px;
    border-radius: 6px;
}

/* Tablet (iPad) Responsive */
@media (max-width: 1024px) {
    .gallery-slide img {
        height: 350px;
    }

    .atmospheric-swiper {
        padding: 15px 0 50px 0;
    }

    .glass-card {
        padding: 12px;
    }

    .slide-caption {
        font-size: 0.9rem;
        margin-top: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .atmosphere-slider {
        padding-bottom: 60px;
        margin-top: 30px;
    }

    .gallery-slide img {
        height: 280px;
    }

    .atmospheric-swiper {
        padding: 10px 0 40px 0;
    }

    .glass-card {
        padding: 10px;
        border-radius: 20px;
    }

    .slide-caption {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination-bullet-active {
        width: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gallery-slide img {
        height: 240px;
    }

    .glass-card {
        padding: 8px;
        border-radius: 16px;
    }

    .slide-caption {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px;
    }

    .atmosphere-slider h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}

/* Mobile Summary Optimization */
@media (max-width: 600px) {
    .summary-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 2px;
        margin-bottom: 12px;
        border-bottom: 1px dashed #eee;
        padding-bottom: 8px;
        width: 100%;
    }

    .summary-item span:first-child {
        font-weight: 700;
        color: var(--calc-secondary);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .summary-item strong {
        padding-left: 0;
        font-size: 1rem;
        line-height: 1.3;
    }

    .step-content {
        padding-bottom: 160px;
        /* Clear sticky footer */
    }

    .step-title {
        font-size: 1.5rem;
        /* Smaller title on mobile */
        line-height: 1.2;
    }

    .control-group {
        padding: 16px !important;
    }
}

/* Hero Slideshow Atmosphere */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 15s infinite;
}

.hero-slideshow .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slideshow .slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slideshow .slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    43% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.95), rgba(41, 171, 226, 0.75));
    z-index: 1;
}

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

.calc-header .wave-divider {
    z-index: 3;
    position: absolute;
}

/* Client Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 15px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ccc;
    font-family: 'Outfit', sans-serif;
    /* Try to match brand font */
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

/* Logo Ticker Styling */
.ticker-logo {
    height: 40px;
    /* Increased from 28px to allow more room */
    width: auto;
    max-width: 120px;
    /* Prevents wide logos from being huge */
    object-fit: contain;
    margin: 0 30px;
    filter: grayscale(100%) opacity(0.6);
    vertical-align: middle;
    transition: filter 0.3s ease;
}

.ticker-logo:hover {
    filter: grayscale(0%) opacity(1);
}

/* Dynamic UX Header Upgrade */
.calc-header {
    background: linear-gradient(120deg, var(--calc-secondary) 0%, #007bb5 100%);
    position: relative;
    overflow: hidden;
}

.calc-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.badge-premium {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Floating Icon Animation */
.hero-icon-animate {
    animation: floatIcon 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Typography */
.calc-header h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.calc-header p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
    font-weight: 500;
}

/* USP Text Rotator */
.usp-list {
    animation: uspSlide 21s infinite;
}

.usp-list div {
    height: 1.2em;
    line-height: 1.2em;
    /* Ensure vertical centering matches height */
    white-space: nowrap;
}

@keyframes uspSlide {

    0%,
    12% {
        transform: translateY(0);
    }

    14%,
    26% {
        transform: translateY(-1.2em);
    }

    28%,
    40% {
        transform: translateY(-2.4em);
    }

    42%,
    54% {
        transform: translateY(-3.6em);
    }

    56%,
    68% {
        transform: translateY(-4.8em);
    }

    70%,
    82% {
        transform: translateY(-6.0em);
    }

    84%,
    96% {
        transform: translateY(-7.2em);
    }

    98%,
    100% {
        transform: translateY(-8.4em);
    }
}

/* Desktop Mood Impressions */
.hero-mood-left,
.hero-mood-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.2);
    display: none;
    /* Hidden by default (mobile) */
    z-index: 1;
}

.hero-mood-left img,
.hero-mood-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1200px) {
    .hero-mood-left {
        display: block;
        left: 5%;
        transform: translateY(-50%) rotate(-5deg);
        animation: floatMood 8s ease-in-out infinite;
    }

    .hero-mood-right {
        display: block;
        right: 5%;
        transform: translateY(-50%) rotate(5deg);
        animation: floatMood 8s ease-in-out infinite reverse;
    }
}

@keyframes floatMood {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -20px;
    }
}

/* Mood Slideshow Animation */
.mood-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeCycle 24s infinite;
    /* 4 images * 6s per image */
}

/* Stagger animation delays for sequence */
.mood-slide:nth-child(1) {
    animation-delay: 0s;
}

.mood-slide:nth-child(2) {
    animation-delay: 6s;
}

.mood-slide:nth-child(3) {
    animation-delay: 12s;
}

.mood-slide:nth-child(4) {
    animation-delay: 18s;
}

@keyframes fadeCycle {
    0% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    /* Fade in duration approx 1s */
    21% {
        opacity: 1;
    }

    /* Stay visible for approx 4s */
    25% {
        opacity: 0;
    }

    /* Fade out */
    100% {
        opacity: 0;
    }
}

/* Creative Mobile Responsive Adjustments */
@media (max-width: 1199px) {
    .calc-header {
        padding: 60px 20px 100px;
        /* Tighter padding */
    }

    /* Reuse Mood Slideshow as Subtle Background on Mobile */
    .hero-mood-left {
        display: block;
        /* Show it! */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Full Cover */
        transform: none;
        /* No tilt */
        border: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 0;
        /* Behind text */
        opacity: 0.15;
        /* Very subtle texture */
        mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
        -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
        animation: none;
        /* No floating */
    }

    /* Hide the right one to avoid chaos, or maybe overlap it? Let's stick to Left (Cocktails/Bar) as primary bg */
    .hero-mood-right {
        display: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        /* Text stays on top */
    }

    /* Adjust Badge & Typography */
    .badge-premium {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .calc-header h1 {
        font-size: 1.8rem;
        /* Smaller headline */
        line-height: 1.2;
    }

    /* Float Icon smaller */
    .hero-icon-animate {
        height: 60px !important;
        /* Override inline styles */
    }

    /* Adjust Ticker for Mobile */
    .ticker-logo {
        height: 32px;
        /* Slightly smaller logos */
        margin: 0 15px;
        /* Tighter spacing */
    }

    .ticker-wrap {
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .trust-pill {
        width: 100%;
        min-width: auto !important;
        font-size: 0.75rem !important;
        padding: 8px 15px !important;
    }

    .usp-rotator {
        font-size: 0.8rem;
    }

    /* Hide Hero Logo on Mobile */
    .hero-icon-animate,
    .hero-logo-container {
        display: none !important;
    }
}

/* Tiny Phone Optimization (iPhone SE / older droids) */
@media (max-width: 374px) {
    .step-card {
        padding: 20px 12px;
        /* Maximize width */
    }

    .step-title {
        font-size: 1.3rem;
    }

    .option-card {
        padding: 16px 10px;
    }

    .btn-calc {
        padding: 14px 16px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Ensure price summary fits */
    .price-summary {
        width: 94%;
        padding: 12px 14px;
        bottom: 16px;
    }

    .price-value {
        font-size: 1.5rem;
    }
}

/* 
   --------------------------------------------------------------
   DYNAMIC ELEMENT STYLING (Restored/Added for functionality)
   --------------------------------------------------------------
*/

/* Cocktail Style Selector (Card Grid) */
.style-selector-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .style-selector-group {
        grid-template-columns: 1fr;
    }
}

.style-option {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.style-option:hover {
    border-color: #ddd;
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.style-option.active {
    border-color: var(--calc-primary);
    background: rgba(249, 198, 45, 0.08);
    /* Transparent Brand Yellow */
    box-shadow: 0 4px 15px rgba(249, 198, 45, 0.15);
}

.style-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.style-name {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-black);
    margin-bottom: 6px;
}

.style-desc {
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Recommended Badge */
.style-option.recommended {
    border-color: var(--calc-secondary);
    /* Blue border for contrast */
}

/* Ensure active overrides recommended border if selected */
.style-option.recommended.active {
    border-color: var(--calc-primary);
}

.style-recc {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--calc-secondary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Custom Checkbox Styling */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    /* Align top for multiline text */
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    min-height: 25px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--calc-secondary);
    border-color: var(--calc-secondary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

/* Additional fix for km-display inputs usually missing style */
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- Premium Card System (Refactored for Mobile) --- */
.premium-card {
    border: 3px solid #ffcc00;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 40px rgba(255, 204, 0, 0.1);
    /* overflow: hidden; Removed to allow tooltips */
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
}

.premium-card-header {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.premium-card-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid #f5f5f5;
    flex-shrink: 0;
}

.premium-insight-box {
    border: 2px dashed #ffcc00;
    background: #fffdf0;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: #444;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cocktail-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.premium-btn-style {
    padding: 16px 8px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.premium-btn-style.featured {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    z-index: 2;
    transform: scale(1.05);
}

.addon-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
}

.school-alert {
    margin-top: 20px;
    background: #e1f5fe;
    border-left: 5px solid #29abe2;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: start;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    .premium-card {
        padding: 20px 16px;
        /* Reduced padding */
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .premium-card-header {
        gap: 16px;
        /* Tighten header */
        margin-bottom: 16px;
    }

    .premium-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        /* Smaller icon */
        border-radius: 12px;
    }

    .cocktail-buttons {
        gap: 8px;
        /* Tighter buttons */
    }

    .premium-btn-style {
        padding: 12px 2px;
        /* Minimal side padding */
        border-radius: 12px;
    }

    .premium-btn-style span,
    .premium-btn-style small {
        font-size: 0.75rem !important;
        /* Force smaller text */
        white-space: nowrap;
    }

    .premium-btn-style span:first-child {
        font-size: 0.65rem !important;
        /* Title (Regular/Premium) smaller */
        letter-spacing: 0;
    }

    .premium-btn-style.featured {
        transform: scale(1.0);
        /* Remove scale spread on mobile */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .premium-btn-style.featured span.badge {
        font-size: 0.55rem !important;
        top: -9px;
        padding: 2px 6px;
    }

    .addon-card {
        padding: 16px;
        gap: 12px;
    }

    .addon-card .text-content div:first-child {
        font-size: 0.65rem !important;
    }

    .addon-card .text-content div:nth-child(2) {
        font-size: 0.95rem !important;
    }
}

/* --- Updated Category Selection (Step 1) --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 columns */
    gap: 12px;
    margin-bottom: 24px;
}

.category-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    height: 100%;
    min-height: 140px;
    /* Ensure click area is nice and big */
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: #ffd54f;
    /* Light yellow hover */
}

.category-card.selected {
    border-color: #ffcc00;
    background: #fffdf0;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
    transform: scale(1.02);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}

.category-label {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Desktop Adjustment */
@media (min-width: 769px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .category-card {
        padding: 30px 20px;
    }

    .category-icon {
        font-size: 3.5rem;
    }

    .category-label {
        font-size: 1.1rem;
    }
}

/* Centered Control Card Variant */
.control-card.centered {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 30px 20px;
    /* Slightly more vertical padding */
}

.control-card.centered .card-icon {
    margin-bottom: 12px;
    font-size: 2.5rem;
    /* Slightly larger icon for emphasis */
}

.control-card.centered .card-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Info Icon & Tooltip */
.info-icon {
    display: inline-block;
    cursor: help;
    font-style: normal;
    margin-left: 6px;
    position: relative;
    font-size: 1.0rem;
    color: var(--calc-primary);
    background: rgba(255, 204, 0, 0.15);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
}

.info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 220px;
    white-space: normal;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    pointer-events: none;
}

.info-icon:hover::before {
    content: '';
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border: 6px solid transparent;
    border-top-color: #333;
}

/* Tooltip Mobile Fix */
@media (max-width: 600px) {
    .premium-card {
        overflow: visible !important;
        /* Allow tooltip to overflow */
    }

    .info-icon:hover::after {
        bottom: auto;
        top: 140%;
        /* Position BELOW */
        left: -100px;
        /* Shift left to stay on screen */
        transform: none;
        width: 250px;
        text-align: left;
    }

    .info-icon:hover::before {
        bottom: auto;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-top-color: transparent;
        border-bottom-color: #333;
        /* Triangle points up */
    }
}

/* New Breakdown Grid Layout for perfect alignment */
.breakdown-container {
    margin-top: 30px;
    border-top: 2px solid #eee;
    padding-top: 20px;
    text-align: left;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    /* Label - Euro - Amount */
    gap: 8px 4px;
    /* Row gap - Column gap */
    font-size: 0.95rem;
    color: #555;
    align-items: baseline;
}

.breakdown-label {
    grid-column: 1;
    text-align: left;
}

.breakdown-currency {
    grid-column: 2;
    text-align: right;
    color: #999;
    padding-left: 10px;
    font-weight: 400;
}

.breakdown-amount {
    grid-column: 3;
    text-align: right;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    /* Ensures numbers align vertically */
    min-width: 60px;
}

.breakdown-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: #eaeaea;
    margin: 8px 0;
    border: none;
}

.breakdown-subtotal {
    font-weight: 600;
    color: #333;
}

.breakdown-total {
    font-size: 1.2rem;
    color: var(--color-black);
    font-weight: 800;
    padding-top: 5px;
}

.breakdown-total .breakdown-amount {
    color: var(--calc-primary);
}

.breakdown-note {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    margin-top: -4px;
    margin-bottom: 4px;
    padding-left: 10px;
    /* Indent slightly */
}

/* Specific styling for the detail box in Cocktails */
.cocktail-details-box {
    grid-column: 1 / -1;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    margin: 5px 0;
}

/* Mobile optimizations */
@media (max-width: 600px) {
    .breakdown-grid {
        font-size: 0.9rem;
        gap: 10px 2px;
    }

    .breakdown-currency {
        padding-left: 4px;
    }
}

/* --- Toggle Switch --- */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--calc-primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--calc-primary);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

/* --- Internal Split Layout (Minimalist) for Step 2 --- */

.step-body-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    /* More breathing room */
}

.benefit-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-check {
    color: var(--calc-primary);
    /* Gold/Primary color */
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-top: 1px;
    flex-shrink: 0;
}

.benefit-row strong {
    display: block;
    font-size: 1rem;
    color: #222;
    margin-bottom: 4px;
}

.benefit-row span {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    display: block;
}

.benefits-minimal {
    position: sticky;
    top: 20px;
}


/* --- Feature: Expandable Desktop Benefits (UX) --- */
.benefit-details {
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.benefit-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.benefit-details summary {
    list-style: none;
    /* Hide default triangle */
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
    transition: all 0.2s;
    color: var(--calc-secondary);
}

.benefit-desc {
    padding-left: 30px;
    /* Indent matching checkmark width */
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-top: 4px;
    animation: fadeIn 0.3s ease;
}

/* --- Mobile Context Accordion (UX Improvement) --- */
.mobile-context-details {
    display: none;
    /* Hidden on Desktop */
    margin-bottom: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-context-details[open] {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--calc-primary);
}

.mobile-context-details summary {
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--color-black);
    user-select: none;
}

/* Remove default marker */
.mobile-context-details summary::-webkit-details-marker {
    display: none;
}

/* Custom Arrow */
.mobile-context-details summary::after {
    content: '❯';
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 15px;
    flex-shrink: 0;
}

.mobile-context-details[open] summary::after {
    transform: rotate(90deg);
    background: var(--calc-primary);
    color: var(--color-black);
}

/* Title text layout */
.context-title {
    flex-grow: 1;
    /* Pushes hint to the right */
    text-align: left;
    font-weight: 700;
}

.context-hint {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
    white-space: nowrap;
}

.mobile-context-details summary small {
    font-weight: 400;
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
}

/* Content Area */
.mobile-benefits-content {
    padding: 0 20px 20px 20px;
    background: white;
    border-top: 1px solid #f5f5f5;
    animation: fadeIn 0.3s ease;
}

.benefit-row-mobile {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.benefit-row-mobile strong {
    color: var(--color-black);
    font-weight: 700;
    display: block;
    /* Force new line for text if needed, or keep inline */
}

.benefit-row-mobile strong {
    color: #333;
    font-weight: 700;
}

/* Language Toggle */
.lang-toggle {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: var(--color-black);
    color: white;
    border-color: var(--color-black);
}

/* Mobile Nav Buttons */
.mobile-nav-btn {
    display: none;
    /* Hidden by default on desktop */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-phone {
    background: #f0f0f0;
    color: #333;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.mobile-nav-btn:active {
    transform: scale(0.95);
}

/* Responsive Visibility */
.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    /* Force spacing between mobile buttons */
    .nav-contact {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .mobile-context-details {
        display: block !important;
    }
}