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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #1B3B5F;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
    
    /* Image de background avec overlay */
    background-image: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.90) 100%),
        url('../IMG/immobilier-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(184, 120, 84, 0.05), transparent 70%);
    pointer-events: none;
}

.hero-highlight {
    color: #B87854;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(184, 120, 84, 0.15);
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #B87854;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1B3B5F;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 50px;
    max-width: 650px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    background: #1B3B5F;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #2d5280;
    transform: translateX(5px);
}

.cta-secondary {
    background: transparent;
    color: #1B3B5F;
    border: 2px solid #1B3B5F;
}

.cta-secondary:hover {
    background: #1B3B5F;
    color: white;
}

/* Section */
.section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-light {
    background: #f8f9fa;
}

.section-dark {
    background: #1B3B5F;
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 70px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-dark .section-header h2 {
    color: white;
}

.section-header p {
    font-size: 19px;
    color: #4A5568;
    max-width: 700px;
    line-height: 1.7;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Problems & Solutions Layout */
.problems-section,
.solutions-section {
    margin-bottom: 50px;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.problem-item,
.solution-item {
    background: white;
    padding: 35px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(27, 59, 95, 0.03);
}

.problem-item:hover,
.solution-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(27, 59, 95, 0.08);
}

.problem-item h3,
.solution-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem-icon {
    color: #dc2626;
    font-size: 24px;
}

.solution-icon {
    color: #16a34a;
    font-size: 24px;
}

.problem-item p,
.solution-item p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
}

.problem-item strong,
.solution-item strong {
    color: #1B3B5F;
    font-weight: 600;
}

/* Separator */
.separator {
    text-align: center;
    margin: 60px 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.separator-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #B87854;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   SECTION PRICING - VERSION CONSOLIDÉE
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
    opacity: 1;
    transform: translateY(0);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(27, 59, 95, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid #f0f0f0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.15s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(27, 59, 95, 0.18);
}

.pricing-card-featured,
.pricing-card.featured {
    border: 3px solid #1B3B5F;
    box-shadow: 0 12px 35px rgba(27, 59, 95, 0.2);
    transform: scale(1.02);
}

.pricing-card-featured:hover,
.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 25px 60px rgba(27, 59, 95, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: #B87854;
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(184, 120, 84, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-title,
.pricing-header h3 {
    font-size: 1.85rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 0.75rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-amount {
    text-align: center;
    margin: 2rem 0;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #B87854;
    line-height: 1;
    display: inline-block;
}

.price-period,
.price-sub {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
    display: block;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li,
.feature {
    padding: 0.75rem 0;
    color: #4A5568;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    position: relative;
}

.pricing-features li i,
.feature i {
    color: #16a34a;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    position: relative;
    left: 0;
}

.pricing-cta,
.pricing-best {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    background: #1B3B5F;
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(27, 59, 95, 0.3);
    margin-top: 1.5rem;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    background: #2d5280;
    box-shadow: 0 10px 30px rgba(27, 59, 95, 0.4);
}

.pricing-card-featured .pricing-cta,
.pricing-card.featured .pricing-cta {
    background: #B87854;
    box-shadow: 0 6px 20px rgba(184, 120, 84, 0.35);
}

.pricing-card-featured .pricing-cta:hover,
.pricing-card.featured .pricing-cta:hover {
    background: #a36848;
    box-shadow: 0 10px 30px rgba(184, 120, 84, 0.45);
}

.pricing-best {
    background: #f8f9fa;
    color: #1B3B5F;
    box-shadow: none;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.price-justif {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: #f7fafc;
    border-left: 5px solid #B87854;
    border-radius: 10px;
}

.justif-text {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.justif-text em {
    font-style: normal;
    font-weight: 600;
    color: #1B3B5F;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 60px;
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #B87854;
    margin-bottom: 12px;
}

.section-dark .stat-number {
    color: #B87854;
}

.stat-label {
    font-size: 15px;
    color: #4A5568;
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fbfbfc 0%, #dbdee1 100%);
    color: rgb(34, 53, 92);
    padding: 100px 60px;
    margin: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 120, 84, 0.2), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: rgb(36, 60, 97);
}

.cta-content p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-button-white {
    display: inline-block;
    background: #1B3B5F;
    color: #f8fafd;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(27, 59, 95, 0.3);
}

.cta-button-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 120, 84, 0.1), transparent);
    transition: left 0.5s;
}

.cta-button-white:hover::before {
    left: 100%;
}

.cta-button-white:hover {
    background: #2d5280;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 59, 95, 0.4);
}

/* Utility Classes */
.text-3xl {
    font-size: 24px;
}

.text-4xl {
    font-size: 36px;
}

.text-5xl {
    font-size: 48px;
}

.text-bold {
    font-weight: 700;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 40px 60px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-cta-group {
        gap: 15px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 15px;
    }

    .section {
        padding: 80px 40px;
    }

    .section-header h2,
    .cta-content h2 {
        font-size: 40px;
    }

    .section-header p {
        font-size: 17px;
    }

    .content-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 44px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .hero {
        padding: 80px 24px 50px;
        min-height: auto;
        padding-top: 140px;
    }

    .hero::before {
        width: 100%;
        opacity: 0.5;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-highlight::after {
        height: 6px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        display: block;
    }

    .section {
        padding: 60px 24px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 16px;
        max-width: 100%;
    }

    .content-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .problem-item,
    .solution-item {
        padding: 28px 24px;
        margin-bottom: 20px;
    }

    .problem-item h3,
    .solution-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .problem-icon,
    .solution-icon {
        font-size: 20px;
    }

    .problem-item p,
    .solution-item p {
        font-size: 15px;
    }

    .separator {
        margin: 40px 0;
    }

    .separator-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* PRICING MOBILE */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card-featured,
    .pricing-card.featured {
        transform: scale(1);
        border-width: 2px;
    }

    .pricing-card:hover,
    .pricing-card-featured:hover,
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-badge {
        top: -12px;
        right: 20px;
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }

    .pricing-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .pricing-title,
    .pricing-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .pricing-subtitle {
        font-size: 0.875rem;
    }

    .price {
        font-size: 2.75rem;
    }

    .price-period,
    .price-sub {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .pricing-features li,
    .feature {
        font-size: 0.875rem;
        padding: 0.6rem 0;
    }

    .pricing-features li i,
    .feature i {
        font-size: 1rem;
    }

    .pricing-cta {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .pricing-best {
        padding: 0.875rem;
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .price-justif {
        margin: 3rem auto 0;
        padding: 2rem 1.5rem;
    }

    .justif-text {
        font-size: 0.875rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 24px;
        margin: 60px 0 0 0;
    }

    .cta-section::before {
        display: none;
    }

    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-button-white {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        display: block;
        text-align: center;
    }

    .text-3xl {
        font-size: 20px;
    }

    .text-4xl {
        font-size: 28px;
    }

    .text-5xl {
        font-size: 32px;
    }

    .problem-item:hover,
    .solution-item:hover {
        transform: translateY(-4px);
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
}

/* Petits mobiles (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 70px 20px 40px;
        padding-top: 120px;
    }

    .hero-label {
        font-size: 10px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-highlight::after {
        height: 5px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    .section {
        padding: 50px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .section-header p {
        font-size: 15px;
    }

    .problem-item,
    .solution-item {
        padding: 24px 20px;
        margin-bottom: 18px;
    }

    .problem-item h3,
    .solution-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
        gap: 8px;
    }

    .problem-icon,
    .solution-icon {
        font-size: 18px;
    }

    .problem-item p,
    .solution-item p {
        font-size: 14px;
    }

    .separator {
        margin: 35px 0;
    }

    .separator-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .pricing-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-badge {
        top: -10px;
        right: 16px;
        padding: 0.4rem 1rem;
        font-size: 0.65rem;
    }

    .pricing-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .pricing-title,
    .pricing-header h3 {
        font-size: 1.35rem;
        margin-bottom: 0.4rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-period,
    .price-sub {
        font-size: 0.85rem;
    }

    .pricing-features li,
    .feature {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .pricing-cta {
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
    }

    .pricing-best {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .price-justif {
        margin: 2.5rem auto 0;
        padding: 1.5rem 1.25rem;
    }

    .justif-text {
        font-size: 0.8rem;
    }

    .stats {
        gap: 25px;
        margin-top: 35px;
    }

    .stat-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 13px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .cta-button-white {
        padding: 14px 28px;
        font-size: 14px;
    }

    .text-3xl {
        font-size: 18px;
    }

    .text-4xl {
        font-size: 24px;
    }

    .text-5xl {
        font-size: 28px;
    }
}

/* Mode paysage mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 24px 40px;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-cta-group {
        flex-direction: row;
        gap: 10px;
    }

    .cta-button {
        width: auto;
        flex: 1;
        padding: 12px 24px;
    }

    .section {
        padding: 50px 24px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Amélioration espacement sections */
@media (max-width: 767px) {
    .section:first-of-type {
        padding-top: 40px;
    }

    .section:last-of-type {
        padding-bottom: 40px;
    }

    .section-light {
        padding: 60px 24px;
    }
}

/* Optimisation des icônes sur mobile */
@media (max-width: 480px) {
    .cta-button i,
    .cta-button-white i {
        font-size: 14px;
        margin-right: 5px;
    }
}

/* Amélioration lisibilité pricing sur très petits écrans */
@media (max-width: 360px) {
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2.25rem;
    }

    .pricing-title,
    .pricing-header h3 {
        font-size: 1.25rem;
    }
}

/* Gestion margin top pour éviter chevauchement header */
@media (max-width: 767px) {
    main {
        margin-top: 0 !important;
    }
}

/* Fix pour les cartes featured sur mobile */
@media (max-width: 767px) {
    .pricing-card-featured,
    .pricing-card.featured {
        margin: 0;
        box-shadow: 0 10px 30px rgba(184, 120, 84, 0.15);
    }
}

/* Corrections overflow */
@media (max-width: 767px) {
    * {
        max-width: 100%;
    }

    .hero-container,
    .container,
    .cta-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }
}