

.container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}

.section-divider {
    display: none;
    
}

.small-heading {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2,
.main-heading {
    font-size: clamp(2rem, 6vw, 3.2rem);
    margin-bottom: 25px;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.chic-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
    margin-top: 0;
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}
.hero-slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}
.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
}

.hero-title {
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    word-break: break-word;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-heading);
    text-transform: none;
    display: block;
    font-size: 2.5rem;
    letter-spacing: 0;
    margin-top: 5px;
}

.hero-subtitle {
    color: #ddd;
    letter-spacing: clamp(1px, 1vw, 4px);
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-btns .cta-button {
    min-width: 180px;
}

.about-section {
    padding: 140px 0;
    background: var(--bg-body);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    gap: 60px;
    align-items: center;
}

.about-image-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 450px;

    
    border-radius: 80px 0 80px 0;

    
    border: 3px solid var(--gold);

    overflow: hidden;
    transition: 0.5s ease;
    
    box-shadow: 15px 15px 0px rgba(198, 168, 124, 0.15);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.5s ease;
    filter: grayscale(10%);
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-text-col {
    position: relative;
}

.about-text-wrapper {
    
    padding: 20px 0;
    position: relative;
}

.about-text-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.3;
}

.small-heading {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.main-heading {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

[dir="rtl"] .about-text-wrapper::after {
    left: auto;
    right: -40px;
}

[dir="rtl"] .about-desc,
[dir="rtl"] .signature {
    text-align: right;
}

[dir="rtl"] .about-image-wrapper {
    border-radius: 0 80px 0 80px;
    
    box-shadow: -15px 15px 0px rgba(198, 168, 124, 0.15);
    
}

.signature {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: left;
    font-style: italic;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    
    .about-image-col {
        order: 1;
    }

    .about-text-col {
        order: 2;
    }

    .about-image-wrapper {
        height: 300px;
        border-radius: 40px 0 40px 0;
    }

    .about-text-wrapper {
        padding: 30px 20px;
    }

    .main-heading {
        font-size: 2rem;
    }
}

.partners-section {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLoop 25s linear infinite;
}

[dir="rtl"] .partners-track {
    animation: scrollLoopRTL 25s linear infinite;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLoopRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-box {
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    
    background: linear-gradient(135deg, var(--gold), #f3e5ab);

    
    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 8px;
    flex-shrink: 0;
    transition: 0.3s;

    
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.partner-box img {
    max-width: 80%;
    max-height: 80%;

    
    object-fit: contain;

    opacity: 1;

    
    

    transition: 0.3s;
}

.partner-box:hover {
    transform: translateY(-5px);
    
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f3e5ab, var(--gold));
    
}

.partner-box:hover img {
    transform: scale(1.1);
}

.services-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.services-grid {
    display: grid;
    
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-card);
    padding: 50px 30px;
    border: none;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 168, 124, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: 0.4s;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.icon-gold {
    font-size: 35px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card {
    
    cursor: pointer;
    
}

.video-banner-section {
    margin: 0;
    position: relative;
    height: 350px;
    background: #000;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    overflow: hidden;
}
.banner-slider {
    position: absolute;
    inset: 0;
}
.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 5s ease;
}
.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner-overlay h2 {
    color: #fff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    padding: 20px 40px;
    backdrop-filter: blur(3px);
    text-align: center;
}

.portfolio-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 30px;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow);
}

.filter-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(198, 168, 124, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
}

.portfolio-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    opacity: 1;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

.portfolio-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.portfolio-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.portfolio-thumb:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(0);
    opacity: 1;
    transition: 0.4s;
    z-index: 3;
}

.portfolio-thumb:hover .project-overlay {
    padding-bottom: 25px; 
}

.project-overlay h3 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.project-overlay span {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section {
    padding: 100px 0;
    background: var(--bg-body);
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    opacity: 0.3;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

[dir="rtl"] .timeline-item.left {
    text-align: right;
    left: auto;
    right: 0;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

[dir="rtl"] .timeline-item.right {
    text-align: left;
    left: auto;
    right: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-body);
    border: 3px solid var(--gold);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item.right::after {
    left: -10px;
}

[dir="rtl"] .timeline-item.left::after {
    right: auto;
    left: -10px;
}

[dir="rtl"] .timeline-item.right::after {
    left: auto;
    right: -10px;
}

.timeline-item:hover::after {
    background-color: var(--gold);
    box-shadow: 0 0 15px rgba(198, 168, 124, 0.6);
}

.timeline-content {
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: 15px;
    
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(198, 168, 124, 0.15);
    
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 700;
    line-height: 1;
}

[dir="rtl"] .step-num {
    right: auto;
    left: 20px;
}

.timeline-content h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--gold);
}

@media screen and (max-width: 768px) {

    
    .timeline::after {
        left: 31px;
    }

    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
        
    }

    [dir="rtl"] .timeline-item.left,
    [dir="rtl"] .timeline-item.right {
        text-align: right;
        padding-left: 25px;
        padding-right: 70px;
        left: auto;
        right: 0;
    }

    [dir="rtl"] .timeline::after {
        left: auto;
        right: 31px;
    }

    
    .timeline-item::after {
        left: 21px;
    }

    .timeline-item.right::after {
        left: 21px;
    }

    [dir="rtl"] .timeline-item::after {
        left: auto;
        right: 21px;
    }

    [dir="rtl"] .timeline-item.right::after {
        left: auto;
        right: 21px;
    }
}

.philosophy-section {
    padding: 72px 0 84px;
    background:
        radial-gradient(circle at top left, rgba(198, 168, 124, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(198, 168, 124, 0.10), transparent 30%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, rgba(15, 15, 15, 1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(198, 168, 124, 0.16);
    border-bottom: 1px solid rgba(198, 168, 124, 0.12);
}
.philosophy-content {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    padding: clamp(32px, 5vw, 56px) clamp(22px, 5vw, 54px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(12, 12, 12, 0.82);
    border: 1px solid rgba(198, 168, 124, 0.24);
    border-radius: 32px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.philosophy-content::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(198, 168, 124, 0.12);
    border-radius: 24px;
    pointer-events: none;
}
.philosophy-content .small-heading {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}
.philosophy-quote {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 4.1vw, 3.35rem);
    font-family: var(--font-heading);
    color: #f4efe9;
    line-height: 1.32;
    margin: 0;
    font-weight: 300;
    letter-spacing: -0.02em;
}
.philosophy-quote span {
    color: var(--gold);
    font-style: italic;
}

.stats-section {
    padding: 100px 0;
    background: #000;
    color: #fff;
    border-top: 1px solid rgba(198, 168, 124, 0.2);
    border-bottom: 1px solid rgba(198, 168, 124, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: linear-gradient(135deg, var(--gold) 0%, #faebb1 50%, var(--gold) 100%);
    padding: 30px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 
                inset 2px 2px 10px rgba(255, 255, 255, 0.6), 
                inset -3px -3px 15px rgba(150, 110, 50, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4),
                inset 2px 2px 10px rgba(255, 255, 255, 0.8), 
                inset -3px -3px 15px rgba(150, 110, 50, 0.7);
}

.stat-item h2 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: #333;
    font-weight: 600;
}

.testimonials-section {
    padding: 140px 0;
    background: var(--bg-card);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 1s ease;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-text {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.client-info h4 {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-section {
    padding: 160px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('uploads/2025/07/1-5-1024x576-2.png') fixed center/cover;
    text-align: center;
    border-top: none;
}

.cta-container h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.cta-container p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

@media (max-width: 1024px) {

    .section-header h2,
    .main-heading {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .philosophy-quote {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .stats-section {
        padding: 48px 0;
    }
    .section-header h2,
    .main-heading {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }
    .hero-section {
        min-height: calc(100svh - 84px);
        height: auto;
        padding: 80px 0 60px;
    }
    .hero-slider-dots {
        bottom: 20px;
    }

    .about-section,
    .philosophy-section,
    .testimonials-section,
    .cta-section {
        padding: 72px 0;
    }
    .philosophy-content {
        border-radius: 26px;
    }
    .philosophy-content::before {
        inset: 14px;
        border-radius: 18px;
    }

    .container.stats-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding-left: 16px;
        padding-right: 16px;
    }
    .stat-item {
        min-width: 0;
        padding: 18px 8px;
        border-radius: 16px;
    }
    .stat-item h2 {
        font-size: 1.95rem;
    }
    .stat-item p {
        font-size: 9px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }
    .video-banner-section {
        height: 260px;
        background-attachment: scroll;
    }
    .banner-overlay h2 {
        font-size: 1.7rem;
        padding: 16px 20px;
        letter-spacing: 2px;
    }
    .portfolio-filter {
        gap: 10px;
    }
    .filter-btn {
        flex: 1 1 calc(50% - 10px);
        min-width: 130px;
        padding: 10px 16px;
        margin: 0;
    }

    .testimonial-text {
        font-size: 1.4rem;
        height: auto;
    }

    .testimonial-slider {
        height: auto;
        min-height: 400px;
    }

}
@media (max-width: 500px) {
    .stats-section {
        padding: 36px 0;
    }
    .hero-section {
        padding: 60px 0 48px;
    }
    .hero-slider-dots {
        gap: 8px;
    }
    .hero-dot {
        width: 9px;
        height: 9px;
    }
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .cta-container h2 {
        font-size: 2.5rem;
    }
    .about-image-wrapper {
        height: 260px;
    }
    .philosophy-quote {
        font-size: 1.9rem;
    }
    .philosophy-section {
        padding: 56px 0 64px;
    }
    .philosophy-content {
        padding: 28px 18px 30px;
        border-radius: 22px;
    }
    .philosophy-content::before {
        inset: 12px;
        border-radius: 16px;
    }
    .partner-box {
        width: 120px;
        height: 76px;
    }
    .container.stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        max-width: 390px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .stat-item {
        padding: 16px 6px;
    }
    .stat-item h2 {
        font-size: 1.7rem;
    }
    .stat-item p {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
}
