.elementor-32619 .elementor-element.elementor-element-3173d5f{--display:flex;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-32619 .elementor-element.elementor-element-3173d5f:not(.elementor-motion-effects-element-type-background), .elementor-32619 .elementor-element.elementor-element-3173d5f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EBFBFFB5;}.elementor-32619 .elementor-element.elementor-element-e138aff > .elementor-widget-container{margin:050px 0px 0px 0px;}.elementor-32619 .elementor-element.elementor-element-e138aff.elementor-element{--align-self:center;}/* Start custom CSS */.pse-reset * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .pse-body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .pse-estimator-container {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 255, 0.95));
            backdrop-filter: blur(40px);
            border-radius: 32px;
            padding: 30px;
            width: 100%;
            max-width: 1000px;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.12),
                0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .pse-estimator-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
        }

        .pse-estimator-container::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(79, 172, 254, 0.03) 0%, transparent 70%);
            animation: pse-subtleGlow 8s ease-in-out infinite alternate;
            pointer-events: none;
        }

        @keyframes pse-subtleGlow {
            0% { opacity: 0.3; transform: scale(1) rotate(0deg); }
            100% { opacity: 0.6; transform: scale(1.1) rotate(1deg); }
        }

        .pse-header-title {
            font-size: 30px;
            font-weight: 800;
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 30%, #4299e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            text-align: center;
            line-height: 1.2;
            position: relative;
            animation: pse-titleShimmer 3s ease-in-out infinite;
        }

        .pse-header-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #4299e1, #3182ce, #4299e1);
            border-radius: 2px;
            animation: pse-lineGlow 2s ease-in-out infinite alternate;
        }

        .pse-header-subtitle {
            font-size: 16px;
            color: #718096;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 400;
        }

        @keyframes pse-titleShimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.1); }
        }

        @keyframes pse-lineGlow {
            0% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
            100% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
        }

        .pse-step {
            display: none;
            animation: pse-slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .pse-step.pse-active {
            display: block;
        }

        @keyframes pse-slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .pse-step-title {
            font-size: 20px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            text-align: center;
        }

        .pse-property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .pse-property-card {
            padding: 20px 15px;
            border: 2px solid rgba(226, 232, 240, 0.6);
            border-radius: 16px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
            color: #4a5568;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 
                0 4px 12px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .pse-property-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .pse-property-card:hover {
            border-color: rgba(66, 153, 225, 0.6);
            background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(247, 250, 252, 0.95));
            transform: translateY(-3px) scale(1.02);
            box-shadow: 
                0 12px 24px rgba(66, 153, 225, 0.15),
                0 6px 12px rgba(0, 0, 0, 0.08),
                inset 0 2px 0 rgba(255, 255, 255, 0.9);
        }

        .pse-property-card:hover::before {
            left: 100%;
        }

        .pse-property-card.pse-selected {
            border-color: #3182ce;
            background: linear-gradient(145deg, #ebf8ff, #bee3f8);
            color: #2d3748;
            transform: translateY(-2px);
            box-shadow: 
                0 16px 32px rgba(147, 197, 253, 0.4),
                0 8px 16px rgba(96, 165, 250, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
            animation: pse-selectedPulse 2s ease-in-out infinite;
        }

        @keyframes pse-selectedPulse {
            0%, 100% { box-shadow: 
                0 16px 32px rgba(147, 197, 253, 0.4),
                0 8px 16px rgba(96, 165, 250, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
            }
            50% { box-shadow: 
                0 20px 40px rgba(147, 197, 253, 0.5),
                0 12px 24px rgba(96, 165, 250, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
            }
        }

        .pse-property-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 10px;
            display: block;
            object-fit: contain;
            filter: grayscale(20%) opacity(0.8);
            transition: all 0.3s ease;
        }

        .pse-property-card:hover .pse-property-icon {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        .pse-property-card.pse-selected .pse-property-icon {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        .pse-property-name {
            font-weight: 600;
            font-size: 1rem;
            hyphens: auto;
            word-break: break-word;
        }

        .pse-property-showcase {
            background: linear-gradient(145deg, 
                rgba(247, 250, 252, 0.95) 0%, 
                rgba(255, 255, 255, 0.9) 100%);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 15px;
            margin: 10px auto;
            border: 2px solid rgba(255, 255, 255, 0.5);
            box-shadow: 
                0 8px 16px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
            max-width: 600px;
        }
        
        @media (max-width: 768px) {
            .pse-property-showcase {
                padding: 10px;
                margin: 5px 0;
                max-width: 100%;
            }
        }

        .pse-property-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(66, 153, 225, 0.6) 30%, 
                rgba(49, 130, 206, 0.8) 50%, 
                rgba(66, 153, 225, 0.6) 70%, 
                transparent 100%);
            animation: pse-topLineGlow 3s ease-in-out infinite;
        }

        @keyframes pse-topLineGlow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .pse-showcase-title {
            font-size: 16px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 2px;
            text-align: center;
        }

        .pse-showcase-size {
            font-size: 13px;
            color: #4299e1;
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
        }

        .pse-size-metric {
            display: inline-block;
            margin-right: 8px;
        }

        .pse-size-conversion {
            font-size: 12px;
            color: #718096;
            font-weight: 500;
            display: inline-block;
        }

        .pse-intro-blurb {
            background: linear-gradient(145deg, rgba(79, 172, 254, 0.05), rgba(255, 255, 255, 0.9));
            border: 1px solid rgba(79, 172, 254, 0.2);
            border-radius: 12px;
            padding: 6px 10px;
            margin-bottom: 8px;
            font-style: italic;
            color: #4a5568;
            text-align: center;
            font-size: 11px;
            line-height: 1.3;
        }

        .pse-browse-hint {
            background: rgba(79, 172, 254, 0.05);
            border-left: 4px solid #4299e1;
            padding: 6px 10px;
            margin: 8px 0;
            font-style: italic;
            color: #4a5568;
            border-radius: 0 8px 8px 0;
            font-size: 11px;
        }

        .pse-carousel-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .pse-tab-button {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
            border: 2px solid rgba(226, 232, 240, 0.6);
            border-radius: 20px;
            padding: 5px 10px;
            font-size: 11px;
            font-weight: 600;
            color: #4a5568;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .pse-tab-button:hover {
            border-color: rgba(66, 153, 225, 0.6);
            background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(247, 250, 252, 0.95));
            transform: translateY(-1px);
        }

        .pse-tab-button.pse-active {
            border-color: #3182ce;
            background: linear-gradient(145deg, #4299e1, #3182ce);
            color: white;
            box-shadow: 0 4px 12px rgba(65, 153, 225, 0.3);
        }

        /* FIXED: Carousel container constraints for Elementor */
        .pse-carousel-container {
            position: relative;
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden !important;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            aspect-ratio: 16/9;
            min-height: 200px;
            max-height: 350px;
        }
        
        @media (max-width: 768px) {
            .pse-carousel-container {
                aspect-ratio: 16/10;
                min-height: 180px;
                max-height: 280px;
            }
        }

        /* FIXED: Carousel wrapper */
        .pse-carousel {
            display: flex !important;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100% !important;
            width: 100% !important;
            position: relative;
        }

        /* FIXED: Individual slides */
        .pse-carousel-slide {
            min-width: 100% !important;
            width: 100% !important;
            height: 100% !important;
            position: relative;
            overflow: hidden !important;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8fafc;
        }

        /* FIXED: Images with proper aspect ratio handling */
        .pse-carousel-image {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center !important;
            transition: transform 0.4s ease;
            max-width: none !important;
            max-height: none !important;
        }

        /* Different handling for floor plans vs room images */
        .pse-carousel-image.floor-plan {
            object-fit: contain !important;
            background: white;
        }

        .pse-carousel-slide:hover .pse-carousel-image {
            transform: scale(1.05);
        }

        .pse-carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(66, 153, 225, 0.3);
            color: #4299e1;
            font-size: 0.9rem;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            font-weight: 600;
            z-index: 10;
        }

        .pse-carousel-nav:hover {
            background: #4299e1;
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 16px rgba(66, 153, 225, 0.3);
        }

        .pse-carousel-prev {
            left: 8px;
        }

        .pse-carousel-next {
            right: 8px;
        }

        .pse-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 8px;
        }

        .pse-carousel-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(226, 232, 240, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .pse-carousel-dot.pse-active {
            background: #4299e1;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(66, 153, 225, 0.5);
        }

        .pse-comparison-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 12px auto;
            max-width: 400px;
        }

        .pse-comparison-btn, .pse-percentage-btn {
            padding: 10px 12px;
            border: 2px solid rgba(226, 232, 240, 0.6);
            border-radius: 12px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
            color: #4a5568;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .pse-comparison-btn::before, .pse-percentage-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .pse-comparison-btn:hover, .pse-percentage-btn:hover {
            border-color: rgba(66, 153, 225, 0.6);
            background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(247, 250, 252, 0.95));
            transform: translateY(-2px) scale(1.01);
            box-shadow: 
                0 8px 16px rgba(66, 153, 225, 0.12),
                0 4px 8px rgba(0, 0, 0, 0.06),
                inset 0 2px 0 rgba(255, 255, 255, 0.9);
        }

        .pse-comparison-btn:hover::before, .pse-percentage-btn:hover::before {
            left: 100%;
        }

        .pse-comparison-btn.pse-selected, .pse-percentage-btn.pse-selected {
            border-color: #3182ce;
            background: linear-gradient(145deg, #ebf8ff, #bee3f8);
            color: #2d3748;
            transform: translateY(-1px);
            box-shadow: 
                0 12px 24px rgba(147, 197, 253, 0.3),
                0 6px 12px rgba(96, 165, 250, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
            animation: pse-buttonPulse 2.5s ease-in-out infinite;
        }

        @keyframes pse-buttonPulse {
            0%, 100% { 
                box-shadow: 
                    0 12px 24px rgba(147, 197, 253, 0.3),
                    0 6px 12px rgba(96, 165, 250, 0.2),
                    inset 0 2px 0 rgba(255, 255, 255, 0.2);
            }
            50% { 
                box-shadow: 
                    0 16px 32px rgba(147, 197, 253, 0.4),
                    0 8px 16px rgba(96, 165, 250, 0.3),
                    inset 0 3px 0 rgba(255, 255, 255, 0.3);
            }
        }

        .pse-percentage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin: 20px 0;
        }

        .pse-result-container {
            background: linear-gradient(145deg, 
                rgba(79, 172, 254, 0.05) 0%, 
                rgba(255, 255, 255, 0.95) 20%, 
                rgba(49, 130, 206, 0.05) 100%);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
            border: 2px solid rgba(255, 255, 255, 0.6);
            box-shadow: 
                0 16px 32px rgba(79, 172, 254, 0.1),
                0 8px 16px rgba(0, 0, 0, 0.05),
                inset 0 2px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: visible;
            animation: pse-valueGlow 4s ease-in-out infinite alternate;
        }

        .pse-result-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, transparent 50%);
            animation: pse-rotateGlow 10s linear infinite;
            pointer-events: none;
        }

        @keyframes pse-valueGlow {
            0% { box-shadow: 
                0 16px 32px rgba(79, 172, 254, 0.1),
                0 8px 16px rgba(0, 0, 0, 0.05),
                inset 0 2px 0 rgba(255, 255, 255, 0.8);
            }
            100% { box-shadow: 
                0 24px 48px rgba(79, 172, 254, 0.15),
                0 12px 24px rgba(0, 0, 0, 0.08),
                inset 0 3px 0 rgba(255, 255, 255, 0.9);
            }
        }

        @keyframes pse-rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .pse-result-label {
            font-size: 14px;
            font-weight: 600;
            color: #718096;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pse-result-value {
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 8px;
            color: #4299e1;
            position: relative;
            z-index: 1;
        }

        .pse-result-conversion {
            font-size: 16px;
            color: #718096;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .pse-email-section {
            background: linear-gradient(145deg, rgba(79, 172, 254, 0.05), rgba(255, 255, 255, 0.95));
            border: 2px solid rgba(79, 172, 254, 0.2);
            border-radius: 20px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
        }

        .pse-email-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .pse-email-subtitle {
            font-size: 13px;
            color: #718096;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .pse-email-input-group {
            display: flex;
            gap: 10px;
            max-width: 350px;
            margin: 0 auto 10px;
        }

        .pse-email-input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid rgba(226, 232, 240, 0.6);
            border-radius: 25px;
            font-size: 13px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            outline: none;
        }

        .pse-email-input:focus {
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
        }

        .pse-email-send-btn {
            background: linear-gradient(145deg, #48bb78, #38a169);
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 13px;
        }

        .pse-email-send-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
        }

        .pse-privacy-note {
            font-size: 11px;
            color: #718096;
            margin-top: 8px;
        }

        .pse-skip-email {
            background: none;
            border: none;
            color: #718096;
            text-decoration: underline;
            cursor: pointer;
            font-size: 13px;
            margin-top: 10px;
        }

        .pse-skip-email:hover {
            color: #4a5568;
        }

        .pse-restart-btn {
            background: linear-gradient(145deg, #4299e1, #3182ce);
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            color: white;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 
                0 8px 16px rgba(65, 153, 225, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
        }

        .pse-restart-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 12px 24px rgba(65, 153, 225, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
        }

        /* ELEMENTOR COMPATIBILITY FIXES */
        .elementor-widget-container .pse-estimator-container,
        .elementor-section .pse-estimator-container {
            max-width: none !important;
            width: 100% !important;
        }

        .elementor-widget-container .pse-carousel-container,
        .elementor-section .pse-carousel-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
        }

        .elementor-widget-container .pse-carousel-image,
        .elementor-section .pse-carousel-image {
            max-width: none !important;
            width: 100% !important;
            height: 100% !important;
        }

        @media (min-width: 769px) {
            .pse-property-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* MOBILE OPTIMIZATIONS */
        @media (max-width: 768px) {
            /* 📱 1. Container width increased by ~5% */
            .pse-estimator-container {
                padding: 20px 16px; /* Slightly more horizontal padding */
                margin: 8px; /* Reduced margin for more width */
                max-width: calc(100vw - 16px); /* Use more of viewport width */
            }
            
            /* 📱 2. Header text resizing for single line */
            .pse-header-title {
                font-size: 22px; /* Reduced from 30px to fit on one line */
                line-height: 1.1;
                margin-bottom: 8px;
            }
            
            /* 📱 3. Subheading resizing for single line */
            .pse-header-subtitle {
                font-size: 14px; /* Reduced from 16px to fit on one line */
                line-height: 1.2;
                margin-bottom: 18px;
            }
            
            /* 🏡 4. Step 1 question text size for single line */
            .pse-step-title {
                font-size: 16px; /* Reduced from 20px */
                margin-bottom: 12px;
                line-height: 1.2;
            }
            
            /* 🏡 5. Property icon vertical spacing reduced */
            .pse-property-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px; /* Reduced from 15px */
            }
            
            .pse-property-card {
                padding: 15px 12px; /* Reduced vertical padding */
            }
            
            .pse-property-icon {
                width: 45px; /* Slightly smaller */
                height: 45px;
                margin: 0 auto 8px; /* Reduced bottom margin */
            }
            
            .pse-property-name {
                font-size: 0.9rem;
            }
            
            /* 🏘️ 6. Step 2 viewport scroll anchor point - handled in JavaScript */
            
            /* 📏 7. Comparison prompt resizing for single line */
            #pse-step2 .pse-step-title {
                font-size: 15px; /* Reduced to fit on one line */
                line-height: 1.2;
            }
            
            /* 💾 8. Final step container resizing */
            .pse-result-container {
                padding: 20px 15px; /* Reduced padding */
                margin: 20px 0;
                max-width: calc(100vw - 40px); /* Constrain width */
            }
            
            .pse-email-section {
                padding: 15px; /* Reduced padding */
                margin-top: 15px;
            }
            
            .pse-email-title {
                font-size: 16px; /* Slightly smaller */
            }
            
            .pse-email-subtitle {
                font-size: 12px; /* Slightly smaller */
                margin-bottom: 12px;
            }
            
            .pse-result-value {
                font-size: 28px; /* Reduced from 40px */
            }
            
            .pse-email-input-group {
                flex-direction: column;
                max-width: 100%; /* Use full width on mobile */
            }
            
            .pse-percentage-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pse-carousel-tabs {
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
            }
            
            .pse-tab-button {
                padding: 8px 14px;
                font-size: 12px;
            }

            .pse-carousel-nav {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .pse-carousel-prev {
                left: 10px;
            }

            .pse-carousel-next {
                right: 10px;
            }

            .pse-property-showcase {
                padding: 12px;
                margin: 10px 0;
            }

            .pse-intro-blurb {
                padding: 8px 10px;
                margin-bottom: 10px;
                font-size: 12px;
            }

            .pse-browse-hint {
                padding: 8px 12px;
                margin: 10px 0;
                font-size: 12px;
            }

            .pse-comparison-grid {
                margin: 15px auto;
                gap: 8px;
                grid-template-columns: 1fr;
                max-width: 280px;
            }
            
            .pse-comparison-btn {
                padding: 12px 16px;
                font-size: 13px;
            }

            .pse-showcase-title {
                font-size: 18px;
            }

            .pse-showcase-size {
                font-size: 14px;
                margin-bottom: 10px;
            }
        }
    </style>/* End custom CSS */