/* ═══════════════════════════════════════════════════════════════
   REAL ESTATE INDEX - STYLES COMPLETS
   CSS dédié pour index-real-estate.html
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   GLOBAL OVERFLOW FIX
   ═══════════════════════════════════════════════════════════════ */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - ULTRA STYLÉ PREMIUM
   ═══════════════════════════════════════════════════════════════ */

/* Hero Container - Dégradé animé premium */
.hero-realestate {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px 2rem;
    overflow: visible;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%);
    background-size: 400% 400%;
    animation: heroGradientFlow 20s ease infinite;
}

@keyframes heroGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Background - Multi-couches */
.hero-realestate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 10s ease-in-out infinite;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Gradient Orbs - Orbes lumineux animés */
.hero-realestate::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -10%;
    left: -5%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.6) 0%, 
        rgba(99, 102, 241, 0.4) 35%, 
        transparent 70%);
    filter: blur(120px);
    opacity: 0.6;
    animation: floatOrb1 25s ease-in-out infinite;
    mix-blend-mode: screen;
    z-index: 0;
}

@keyframes floatOrb1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-20px, -80px) scale(0.95);
        opacity: 0.7;
    }
    75% { 
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.65;
    }
}

/* Second Orb */
.hero-realestate .container-fluid::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    bottom: -15%;
    right: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.6) 0%, 
        rgba(168, 85, 247, 0.4) 35%, 
        transparent 70%);
    filter: blur(120px);
    opacity: 0.6;
    animation: floatOrb2 30s ease-in-out infinite -5s;
    mix-blend-mode: screen;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatOrb2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(-30px, 50px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(20px, 80px) scale(0.95);
        opacity: 0.7;
    }
    75% { 
        transform: translate(-40px, 30px) scale(1.05);
        opacity: 0.65;
    }
}

/* Container */
.hero-realestate .container-fluid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
    overflow: visible;
}

.hero-realestate-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    overflow: visible;
    height: auto;
}

/* Real Estate Badge - Style premium glassmorphism */
.hero-realestate .realestate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-realestate .realestate-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s;
}

.hero-realestate .realestate-badge:hover::before {
    left: 100%;
}

.hero-realestate .realestate-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 48px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-realestate .realestate-badge i {
    font-size: 1.125rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(10deg); }
}

/* Headline - Titre principal */
.hero-realestate h1 {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 0;
    letter-spacing: -0.03em;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3);
    animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text - Texte avec gradient animé */
.hero-realestate .highlight-gradient {
    background: linear-gradient(135deg, 
        #60a5fa 0%, 
        #818cf8 25%, 
        #a78bfa 50%, 
        #c084fc 75%, 
        #e879f9 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 8s linear infinite;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.5));
    display: inline-block;
}

@keyframes gradientShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Subheadline - Sous-titre */
.hero-realestate p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 800px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    text-align: center;
}

/* CTA Button - Bouton principal premium */
.hero-realestate .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.4),
        0 0 0 0 rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-realestate .btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.hero-realestate .btn-hero-primary:hover::before {
    left: 100%;
}

.hero-realestate .btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background-position: right center;
    box-shadow: 
        0 16px 56px rgba(59, 130, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-realestate .btn-hero-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-realestate .btn-hero-primary i {
    transition: transform 0.3s;
    font-size: 1.25rem;
}

.hero-realestate .btn-hero-primary:hover i {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   MODULE CARDS - GRADIENT BLEU/VIOLET
   ═══════════════════════════════════════════════════════════════ */

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
}

.module-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.module-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.module-card .module-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #475569;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-features li:last-child {
    border-bottom: none;
}

.module-features li i {
    color: #10b981;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES GRID - CARTES DÉTAILLÉES
   ═══════════════════════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.feature-icon i {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   WORKFLOW GRID - HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-step {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.workflow-step:hover::before {
    transform: scaleX(1);
}

.workflow-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.workflow-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.workflow-step h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.workflow-step p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   DEMO SECTION ENHANCEMENT
   ═══════════════════════════════════════════════════════════════ */

.demo-realestate {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.demo-realestate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════════
   COUNTRY FLAGS GRID
   ═══════════════════════════════════════════════════════════════ */

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.country-flag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.country-flag:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.country-flag .flag {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.country-flag .name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS - PADDING OPTIMISÉ
   ═══════════════════════════════════════════════════════════════ */

.features-section,
.analytics-section,
.demo-realestate,
.cta-final {
    padding: 3rem 1rem !important;
    margin: 0 !important;
    min-height: auto !important;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE - HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-realestate {
        padding: 120px 1.5rem 80px 1.5rem;
    }

    .hero-realestate h1 {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-realestate .container-fluid::before,
    .hero-realestate::after {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-realestate {
        min-height: 100vh;
        padding: 140px 1.5rem 100px 1.5rem;
        overflow: visible;
    }

    .hero-realestate-content {
        gap: 1.75rem;
        overflow: visible;
    }

    .hero-realestate .realestate-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .hero-realestate h1 {
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.15;
    }

    .hero-realestate p {
        font-size: clamp(1rem, 4vw, 1.125rem);
        line-height: 1.6;
    }

    .hero-realestate p br {
        display: none;
    }

    .hero-realestate .btn-hero-primary {
        padding: 1.125rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .hero-realestate .container-fluid::before,
    .hero-realestate::after {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    .features-section,
    .analytics-section,
    .demo-realestate,
    .cta-final {
        padding: 2.5rem 1rem !important;
    }

    /* TITRES CENTRÉS SUR MOBILE */
    .section-header,
    .section-tag,
    .section-title,
    .section-description,
    .demo-title,
    .demo-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        display: block !important;
    }

    /* SCROLL HORIZONTAL POUR CARTES */
    .modules-grid,
    .features-grid,
    .workflow-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1rem !important;
        margin: 2rem -1rem 0 -1rem !important;
        max-width: 100vw !important;
    }

    .modules-grid::-webkit-scrollbar,
    .features-grid::-webkit-scrollbar,
    .workflow-grid::-webkit-scrollbar {
        display: none;
    }

    .modules-grid,
    .features-grid,
    .workflow-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .module-card,
    .feature-card,
    .workflow-step {
        flex: 0 0 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        min-height: 380px !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .module-card:first-child,
    .feature-card:first-child,
    .workflow-step:first-child {
        margin-left: 0.5rem !important;
    }

    .module-card:last-child,
    .feature-card:last-child,
    .workflow-step:last-child {
        margin-right: 0.5rem !important;
    }

    /* Demo section responsive */
    .demo-realestate .browser-chrome {
        display: none;
    }

    .demo-realestate [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .demo-realestate [style*="padding: 2rem"] {
        padding: 1.5rem 1rem !important;
    }

    .country-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-realestate {
        min-height: 100vh;
        padding: 130px 1.25rem 90px 1.25rem;
    }

    .hero-realestate-content {
        gap: 1.5rem;
    }

    .hero-realestate .realestate-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .hero-realestate h1 {
        font-size: clamp(1.875rem, 10vw, 2.5rem);
    }

    .hero-realestate p {
        font-size: clamp(0.9375rem, 4.5vw, 1.0625rem);
    }

    .hero-realestate .btn-hero-primary {
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .hero-realestate {
        min-height: 100vh;
        padding: 120px 1rem 80px 1rem;
    }

    .hero-realestate-content {
        gap: 1.5rem;
    }

    .hero-realestate .realestate-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .hero-realestate h1 {
        font-size: clamp(1.75rem, 11vw, 2.25rem);
    }

    .hero-realestate p {
        font-size: clamp(0.875rem, 5vw, 1rem);
    }

    .hero-realestate .btn-hero-primary {
        width: 100%;
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    .module-card,
    .feature-card,
    .workflow-step {
        flex: 0 0 90vw !important;
        min-width: 90vw !important;
        max-width: 90vw !important;
        padding: 1.5rem 1.125rem !important;
        min-height: 360px !important;
    }
}