* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            background: #0a0e1a;
            color: #ffffff;
            padding: 0;
        }
        
        /* Header from baureglement.php */
        header {
            position: relative;
            z-index: 100;
            padding: 1.5rem 0;
            background: transparent;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            transition: opacity 0.2s;
        }

        nav a:hover {
            opacity: 0.8;
        }

        .header-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .language-switcher {
            position: relative;
            display: inline-block;
        }

        .language-button {
            display: flex;
            align-items: center;
            gap: 4px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.75rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            transition: all 0.2s ease;
            text-transform: uppercase;
        }

        .language-button:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.1);
        }

        .lang-dropdown-icon {
            width: 12px;
            height: 12px;
            transition: transform 0.2s ease;
        }

        .language-button[aria-expanded="true"] .lang-dropdown-icon {
            transform: rotate(180deg);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(20, 20, 30, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            min-width: 150px;
            margin-top: 8px;
            z-index: 1000;
            display: none;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .language-dropdown.active {
            display: block;
        }

        .language-option {
            display: block;
            padding: 12px 16px;
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            transition: background-color 0.2s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .language-option:last-child {
            border-bottom: none;
        }

        .language-option:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .language-option.active {
            background: rgba(59, 130, 246, 0.2);
            font-weight: 600;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            color: #fff;
        }

        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Hero Section */
        .hero {
            padding: 80px 0 60px;
        }
        
        .hero-architect {
            padding-top: 120px;
        }
        
        .hero-badge-architect {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        .hero-grid-architect {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .hero-content-architect h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        
        .hero-content-architect .highlight {
            background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle-architect {
            font-size: 1.25rem;
            color: #94a3b8;
            line-height: 1.6;
        }
        
        .hero-image-architect {
            width: 100%;
            height: 550px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            inset: -100px;
            background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            z-index: -1;
            filter: blur(60px);
        }
        
        .hero-image-architect img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.hero-image-architect {
    width: 100%;
    height: 550px; 
    
    /* Keep the desired radius */
    border-radius: 25px; 
    overflow: hidden; 
    
    /* ⭐ NEW CRITICAL RULE: Creates a new stacking context to enforce clipping */
    **isolation: isolate;** position: relative; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    /* Keep the sizing rules that prevent cutting */
    position: static; 
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    
    /* Set standard border-radius */
    border-radius: 25px; 
    
    /* ⭐ NEW CRITICAL RULE: WebKit prefix for maximum compatibility on video elements */
    **-webkit-border-radius: 25px;** }
        
        /* Search Section */
        .search-section {
            max-width: 900px;
            margin: 0 auto 80px;
        }
        
        .search-header {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .search-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 20px;
            color: #10b981;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        
        .search-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .search-header p {
            font-size: 1rem;
            color: #94a3b8;
        }
        
        .search-widget {
            display: flex;
            gap: 12px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 16px;
        }
        
        .search-input {
            flex: 1;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: #ffffff;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(59, 130, 246, 0.5);
        }
        
        .search-input::placeholder {
            color: #64748b;
        }
        
        .search-btn {
            padding: 16px 32px;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .search-btn:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }
        
        .search-btn:disabled {
            background: #64748b;
            cursor: not-allowed;
            transform: none;
        }
        
        .example-link {
            display: block;
            text-align: center;
            color: #3b82f6;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 12px 24px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            margin-top: 8px;
        }
        
        .example-link:hover {
            color: #60a5fa;
            background: rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.5);
            transform: translateY(-2px);
        }
        
        /* Results Section */
        .results-container {
            display: none;
            margin-bottom: 80px;
        }
        
        .results-container.visible {
            display: block;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        
        .data-panel {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            max-height: 700px;
            overflow-y: auto;
            overflow-x: hidden;
        }
        
        .panel-header {
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .panel-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #10b981;
            margin-bottom: 8px;
        }
        
        .panel-subtitle {
            font-size: 0.875rem;
            color: #64748b;
        }
        
        /* Tabs */
        .data-tabs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 4px;
            margin-bottom: 24px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.08);
        }
        
        .data-tab {
            padding: 10px 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .data-tab:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #94a3b8;
        }
        
        .data-tab.active {
            background: rgba(16, 185, 129, 0.15);
            border-color: #10b981;
            color: #10b981;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .data-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .data-row:last-child {
            border-bottom: none;
        }
        
        .data-label {
            font-size: 0.875rem;
            color: #94a3b8;
        }
        
        .data-value {
            font-size: 0.875rem;
            font-weight: 600;
            color: #ffffff;
            text-align: right;
        }
        
        .data-value.highlight {
            color: #10b981;
        }
        
        .data-value.warning {
            color: #ef4444;
        }
        
        /* Object Tabs for Multiple Buildings */
        .object-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        
        .object-tab {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .object-tab:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #94a3b8;
        }
        
        .object-tab.active {
            background: rgba(59, 130, 246, 0.15);
            border-color: #3b82f6;
            color: #3b82f6;
        }
        
        .object-content {
            display: none;
        }
        
        .object-content.active {
            display: block;
        }
        
        .map-container {
            width: 100%;
            height: 700px;
            background: #000;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        
        .maplibregl-ctrl-logo {
            display: none !important;
        }
        
        .maplibregl-ctrl-attrib {
            display: none !important;
        }
        
        .building-marker {
            background: #ef4444;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .building-marker:hover {
            transform: scale(1.5);
            z-index: 1000;
        }
        
        /* Layer Showcase Indicator */
        .layer-indicator {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(59, 130, 246, 0.5);
            border-radius: 12px;
            padding: 16px 24px;
            z-index: 1000;
            display: none;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            animation: slideDown 0.3s ease-out;
        }
        
        .layer-indicator.active {
            display: flex;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        .layer-indicator-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }
        
        .layer-indicator-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .layer-indicator-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #ffffff;
        }
        
        .layer-indicator-description {
            font-size: 0.75rem;
            color: #94a3b8;
        }
        
        /* Export CTA */
        .export-cta {
            margin-top: 32px;
            padding: 32px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 16px;
            text-align: center;
        }
        
        .export-cta h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .export-cta p {
            color: #94a3b8;
            margin-bottom: 24px;
        }
        
        .export-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .export-btn {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #ffffff;
            font-weight: 600;
            cursor: not-allowed;
            position: relative;
            opacity: 0.6;
        }
        
        .export-btn::after {
            content: '🔒';
            position: absolute;
            top: -8px;
            right: -8px;
            background: #3b82f6;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }
        
        .register-btn {
            padding: 16px 40px;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .register-btn:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }
        
        .time-saved {
            margin-top: 20px;
            padding: 16px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 8px;
            font-size: 0.95rem;
        }
        
        .time-saved strong {
            color: #10b981;
        }
        
        /* Loading State */
        .loading {
            text-align: center;
            padding: 40px;
        }
        
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(59, 130, 246, 0.1);
            border-top-color: #3b82f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 16px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Timeline Section */
        .timeline-section {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 20px;
            color: #3b82f6;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }
        
        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .timeline-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .timeline-column {
            position: relative;
        }
        
        .timeline-header {
            margin-bottom: 48px;
        }
        
        .timeline-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .status-negative {
            background: #ef4444;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
        }
        
        .status-positive {
            background: #10b981;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
        }
        
        .timeline-description {
            color: #64748b;
            font-size: 0.95rem;
        }
        
        .timeline-item {
            display: flex;
            gap: 24px;
            margin-bottom: 24px;
            position: relative;
        }
        
        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 31px;
            top: 48px;
            width: 2px;
            height: calc(100% - 24px);
            background: linear-gradient(180deg, rgba(100, 116, 139, 0.3) 0%, rgba(100, 116, 139, 0.1) 100%);
        }
        
        .time-marker {
            flex-shrink: 0;
            width: 64px;
            padding-top: 8px;
        }
        
        .time-text {
            font-size: 0.875rem;
            font-weight: 600;
            color: #64748b;
            font-variant-numeric: tabular-nums;
        }
        
        .activity-card {
            flex: 1;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 20px 24px;
            transition: all 0.3s ease;
        }
        
        .activity-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateX(4px);
        }
        
        .activity-frustrated {
            border-left: 3px solid #ef4444;
        }
        
        .activity-quick {
            border-left: 3px solid #3b82f6;
        }
        
        .activity-productive {
            border-left: 3px solid #10b981;
        }
        
        .activity-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: #ffffff;
        }
        
        .activity-description {
            font-size: 0.875rem;
            color: #94a3b8;
            line-height: 1.5;
        }
        
        .lunch-break {
            margin: 40px 0;
            padding: 20px;
            background: rgba(251, 191, 36, 0.05);
            border: 1px solid rgba(251, 191, 36, 0.2);
            border-radius: 12px;
            text-align: center;
            color: #fbbf24;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        
        .features-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .features-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .features-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-4px);
        }
        
        .features-card:hover::before {
            opacity: 1;
        }
        
        .features-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 1.75rem;
        }
        
        .features-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #ffffff;
        }
        
        .features-description {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.6;
        }

        /* Footer from baureglement.php */
        footer { 
            position: relative; 
            bottom: 0; 
            width: 100%; 
            overflow: hidden; 
            padding: 17px 0; 
            z-index: 10; 
            background-color: #090a0c; 
            margin-top: 120px;
        }

        .px-safe { 
            padding-left: env(safe-area-inset-left, 2rem); 
            padding-right: env(safe-area-inset-right, 2rem); 
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem 30px 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            gap: 40px;
        }

        .footer-logo {
            flex-shrink: 0;
        }

        .company-info {
            flex-shrink: 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.5;
        }

        .company-info a {
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.2s;
            text-decoration: none;
        }

        .company-info a:hover {
            color: #ffffff;
        }

        .footer-description {
            flex: 1;
            max-width: 600px;
        }

        .footer-description p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.6;
            margin: 0;
        }

        .footer-bottom {
            display: flex; 
            flex-wrap: nowrap; 
            align-items: center; 
            justify-content: space-between; 
            max-width: 1500px; 
            margin: 30px auto 0;
            padding: 0 2rem;
        }

        .footer-copyright { 
            color: rgba(255, 255, 255, 0.4);
            order: 1; 
            text-align: left; 
            width: auto; 
            font-size: 14px;
        }

        .footer-copyright a { 
            color: inherit; 
            text-decoration: none; 
            transition: color 0.2s; 
        }

        .footer-copyright a:hover { 
            color: #ffffff;
        }

        .footer-links { 
            order: 2; 
            display: flex; 
            align-items: center; 
            gap: 26px; 
            list-style: none; 
            padding-left: 0; 
            z-index: 10; 
            margin-left: 70px; 
            width: auto; 
            justify-content: flex-start; 
        }

        .footer-links a { 
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none; 
            transition: color 0.2s; 
            display: inline-flex; 
            align-items: center; 
            font-size: 14px; 
        }

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

        .footer-social { 
            order: 3; 
            margin-left: 70px; 
            display: flex; 
            gap: 18px; 
            list-style: none; 
            width: auto; 
            justify-content: flex-start; 
            padding-left: 0;
        }

        .footer-social a { 
            transition: opacity 0.3s; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }

        .footer-social svg { 
            width: 18px; 
            height: 18px; 
            opacity: 0.8; 
            transition: opacity 0.3s; 
        }

        .footer-social a:hover svg { 
            opacity: 1; 
        }

        .footer-tagline { 
            order: 4; 
            margin-left: auto; 
            display: flex; 
            height: 48px; 
            align-items: center; 
            background: linear-gradient(90deg, #F58041 0%, #AC795C 25.6%, #887064 41.58%, #716A69 56.98%, #61656B 69.44%); 
            background-clip: text; 
            -webkit-background-clip: text; 
            color: transparent; 
            text-align: right; 
            width: auto; 
            justify-content: flex-end; 
            padding: 0; 
            font-size: 14px; 
        }
        
        @media (max-width: 1024px) {
            .hero-grid,
            .timeline-container,
            .results-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-image {
                height: 350px;
            }
            
            .search-widget {
                flex-direction: column;
            }
            
            .timeline-section,
            .features-section {
                padding: 60px 0;
            }

            nav {
                display: none;
            }

            .header-container {
                padding: 0 1rem;
            }

            .footer-top {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 0 1rem 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 0 1rem;
            }
            
            .footer-links {
                margin-left: 0;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .footer-social {
                margin-left: 0;
                justify-content: center;
            }
            
            .footer-tagline {
                margin-left: 0;
                justify-content: center;
            }
        }
@media (max-width: 768px) {
    /* 1. Adjust the mobile container (Parent) */
    .hero-image-architect {
        /* Set a height appropriate for mobile */
        height: 400px;
        
        /* Apply the clipping and rounding properties */
        border-radius: 15px; /* Use a slightly smaller radius for mobile */
        overflow: hidden; 
        isolation: isolate; /* Re-apply isolation for mobile */
        
        /* Re-apply Flexbox for centering */
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    /* 2. Adjust the video element (Child) */
    .hero-video {
        /* Use the sizing rules from the desktop fix */
        position: static; 
        top: auto;
        left: auto;
        transform: none;

        /* Max constraints to fit within the 400px height */
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        
        object-fit: contain; 

        /* Re-apply the border radius for mobile */
        border-radius: 15px; 
        -webkit-border-radius: 15px;
    }
}
	.pricing-price {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}