.elementor-6586 .elementor-element.elementor-element-5483c23{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6586 .elementor-element.elementor-element-7d4f061{--spacer-size:30px;}.elementor-6586 .elementor-element.elementor-element-d755a5e{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-158f977 */:root {
            --navy: #2D4356;
            --navy-dark: #1a2d3d;
            --sage: #A8B9A5;
            --sage-light: #E8EDE8;
            --cream: #F5F5F0;
            --text-gray: #6B7280;
            --text-dark: #1a1a1a;
            --white: #ffffff;
            --green-success: #7CB342;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            line-height: 1.5;
        }

        /* Compact Hero */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--white);
            padding: 2.5rem 1rem;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.15);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        /* Phase Card - Mobile First Compact Design */
        .phase-card {
            background: var(--white);
            margin: 0.75rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }

        /* Phase Image - Full Width Banner */
        .phase-banner {
            position: relative;
            height: 140px;
            overflow: hidden;
        }

        .phase-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .phase-banner.show-top img {
            object-position: center top;
        }

        .phase-banner.show-right img {
            object-position: right center;
        }

        .phase-banner.contain img {
            object-fit: contain;
            object-position: center center;
        }

        .phase-banner.contain {
            height: auto;
            aspect-ratio: 16/9;
            background: var(--navy);
        }

        .phase-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            background: var(--navy);
            color: var(--white);
            padding: 0.35rem 0.75rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .phase-timeline-badge {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: rgba(255,255,255,0.95);
            color: var(--navy);
            padding: 0.35rem 0.65rem;
            border-radius: 6px;
            font-size: 0.65rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .phase-timeline-badge svg {
            width: 12px;
            height: 12px;
        }

        /* Phase Header */
        .phase-header {
            padding: 1rem;
            border-bottom: 1px solid var(--sage-light);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .phase-icon {
            width: 44px;
            height: 44px;
            background: var(--navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .phase-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
        }

        .phase-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.25rem;
            color: var(--navy);
            line-height: 1.2;
        }

        /* Steps - Compact List */
        .steps-container {
            padding: 0.75rem;
        }

        .step {
            display: flex;
            gap: 0.75rem;
            padding: 0.75rem;
            background: var(--cream);
            border-radius: 8px;
            margin-bottom: 0.5rem;
            border-left: 3px solid var(--sage);
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step.highlight {
            border-left-color: var(--navy);
            background: var(--sage-light);
        }

        .step-num {
            width: 28px;
            height: 28px;
            background: var(--sage-light);
            color: var(--navy);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .step.highlight .step-num {
            background: var(--navy);
            color: var(--white);
        }

        .step-info {
            flex: 1;
            min-width: 0;
        }

        .step-info h4 {
            font-size: 0.9rem;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .step-time {
            font-size: 0.65rem;
            color: var(--sage);
            background: var(--white);
            padding: 0.15rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            display: inline-block;
            margin-bottom: 0.3rem;
        }

        .step-info p {
            font-size: 0.8rem;
            color: var(--text-gray);
            line-height: 1.4;
        }

        /* Start Badge */
        .start-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: var(--green-success);
            color: var(--white);
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        /* CTA Section - Compact */
        .cta {
            background: var(--navy);
            color: var(--white);
            padding: 2rem 1rem;
            text-align: center;
            margin: 0.75rem;
            border-radius: 12px;
        }

        .cta h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .cta p {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 1.25rem;
        }

        .cta-btns {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.2s, opacity 0.2s;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: var(--sage);
            color: var(--navy);
        }

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

        .btn svg {
            width: 18px;
            height: 18px;
        }

        /* Footer - Compact */
        .footer {
            background: var(--navy-dark);
            color: var(--white);
            padding: 1.5rem 1rem;
            text-align: center;
        }

        .footer p {
            opacity: 0.8;
            font-size: 0.75rem;
            margin-bottom: 0.3rem;
        }

        .footer a {
            color: var(--sage);
            text-decoration: none;
        }

        /* Tablet & Desktop Enhancements */
        @media (min-width: 600px) {
            .hero {
                padding: 3.5rem 2rem;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .phase-card {
                margin: 1rem auto;
                max-width: 700px;
            }

            .phase-banner {
                height: 180px;
            }

            .phase-header {
                padding: 1.25rem;
            }

            .phase-title {
                font-size: 1.5rem;
            }

            .steps-container {
                padding: 1rem;
            }

            .step {
                padding: 1rem;
            }

            .step-info h4 {
                font-size: 1rem;
            }

            .step-info p {
                font-size: 0.85rem;
            }

            .cta {
                max-width: 700px;
                margin: 1rem auto;
                padding: 2.5rem 2rem;
            }

            .cta-btns {
                flex-direction: row;
                justify-content: center;
            }

            .btn {
                width: auto;
                min-width: 200px;
            }
        }

        @media (min-width: 900px) {
            .hero h1 {
                font-size: 2.75rem;
            }

            .phase-card {
                max-width: 900px;
            }

            .phase-banner {
                height: 220px;
            }

            .steps-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 0.75rem;
            }

            .step {
                margin-bottom: 0;
            }

            .cta {
                max-width: 900px;
            }
        }/* End custom CSS */