/* Font Face Declarations */
@font-face {
    font-family: 'Poppins';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Poppins/FZ Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Poppins/FZ Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Poppins/FZ Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Poppins/FZ Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Poppins/FZ Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Gilroy/SVN-Gilroy Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Gilroy/SVN-Gilroy Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Gilroy/SVN-Gilroy Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Gilroy/SVN-Gilroy SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('https://mg-demo.lepus.pw/assets/fonts/Gilroy/SVN-Gilroy Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Color Scheme */
:root {
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #4a4a4a;
    --medium-gray: #6b6b6b;
    --light-gray: #9a9a9a;
    --lighter-gray: #e5e5e5;
    --white: #FFFFFF;
    --red: #D02915;
    --dark-red: #a01f10;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background-color: var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

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

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('https://mg-demo.lepus.pw/assets/img/bg/bg.jpg') no-repeat center center/cover;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    z-index: 1;
}

.hero-headline {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.hero-stat-number.counting {
    transform: scale(1.1);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
    font-family: 'Gilroy', sans-serif;
}

.btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.btn:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transition: box-shadow 0.3s ease;
}

.btn-secondary:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.4rem;
    background: linear-gradient(90deg, rgba(122, 24, 13, 1) 0%, rgba(208, 41, 21, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--black), var(--gray));
    border-radius: 2px;
}

.section-title p {
    font-size: 1rem;
    color: #555;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
}

/* Products Section */
.products {
    background-color: #f8f8f8;
}

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

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-img {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    position: relative;
    overflow: hidden;
}

.product-img i {
    font-size: 4rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-img i {
    transform: scale(1.1);
    color: var(--black);
}


.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    margin-bottom: 0.8rem;
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 600;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

.price {
    font-weight: 700;
    color: var(--black);
    font-size: 1.2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card p {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

.service-card:hover {
    border-color: var(--gray);
}

.service-icon {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.3rem;
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1.5rem;
    transition: all 0.3s ease;
    justify-self: center;
}

.service-link:hover {
    color: var(--gray);
}

.price-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1.5rem;
    transition: all 0.3s ease;
    justify-self: center;
}

.price-link:hover {
    color: var(--gray);
}

/* Contact Section */
.contact {
    background-color: #f8f8f8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: var(--red);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail > div:last-child {
    flex: 1;
}

.contact-detail h4 {
    margin: 0 0 0.5rem 0;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
}

.contact-detail p {
    margin: 0;
    color: var(--gray);
    line-height: 1.4;
}

.contact-detail a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    color: var(--red);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Gilroy', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gray);
    box-shadow: 0 0 0 3px rgba(106, 107, 107, 0.1);
    background-color: var(--white);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-form {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    width: auto;
    min-width: 200px;
}

.btn-form:hover {
    background-color: var(--dark-gray);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 8% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Gilroy', sans-serif;
}

.footer-column ul li a:hover {
    color: var(--red);
}

.store-info p {
    margin-bottom: 0.8rem;
}

.store-info a {
    color: var(--white);
    text-decoration: none;
}

.store-info a:hover {
    color: var(--red);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--red);
}

.social-link i {
    width: 20px;
    color: var(--red);
}

.payment-methods h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icons span {
    background-color: #333;
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-bottom img {
    height: 32px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #aaa;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--white);
}

.copyright {
    text-align: right;
}

.copyright p {
    color: #aaa;
    font-size: 0.9rem;
    font-family: 'Gilroy', sans-serif;
    margin: 0;
}

.partner-badges, .certifications {
    margin-bottom: 1.5rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.partner-badges p, .certifications p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.partner-badges strong, .certifications strong {
    color: var(--white);
}

/* Partners & Customers Sections */
.partners, .customers {
    background-color: #f8f8f8;
    padding: 5rem 0 6rem 0;
}

.customers {
    background-color: var(--white);
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-slide, .customer-slide {
    padding: 0 15px;
    text-align: center;
}

.partner-card, .customer-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.customer-card {
    background-color: var(--white);
    border: 1px solid #e5e5e5;
}


.partner-logo, .customer-logo {
    width: 160px;
    height: 90px;
    background: var(--white);
    border-radius: 4px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
}

.partner-logo img, .customer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-info h3, .customer-info h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.partner-info p, .customer-info p {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

/* Slick Slider Customization */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: var(--gray);
    font-size: 12px;
}

.slick-prev, .slick-next {
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    color: var(--gray);
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container, .section-container, .header-container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
    
    .product-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--black);
        transition: right 0.3s ease;
        z-index: 100;
        padding-top: 80px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }
    
    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid #333;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-radius: 0;
        transition: color 0.2s ease;
    }
    
    .nav-menu ul li a:hover {
        color: var(--red);
        background-color: transparent;
    }
    
    .nav-menu ul li:last-child {
        border-bottom: none;
    }
    
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-content > div {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-stats {
        gap: 2rem !important;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .partner-card, .customer-card {
        height: 180px;
        padding: 1.2rem;
        margin: 0 5px;
    }
    
    .partner-logo, .customer-logo {
        width: 140px;
        height: 80px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    .product-grid, .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem !important;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .partner-card, .customer-card {
        height: 160px;
        padding: 1rem;
        margin: 0 5px;
    }
    
    .partner-logo, .customer-logo {
        width: 120px;
        height: 70px;
    }
    
    .slider-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}