/*
Theme Name: Procentric Technology
Theme URI: https://procentric.my
Author: Procentric Technology
Author URI: https://procentric.my
Description: A modern, responsive WordPress theme for Procentric Technology showcasing cybersecurity solutions and services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: procentric
Tags: cybersecurity, business, corporate, modern, responsive
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #F9FAFB;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navigation */
nav {
    background: #1E293B;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

nav.scrolled {
    opacity: 0.25;
    background: rgba(30, 41, 59, 0.9);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00B5D8;
}

.btn-primary {
    background: #00B5D8;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #00B5D8;
    border: 2px solid #00B5D8;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #00B5D8;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 181, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 181, 216, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Floating Particles */
.particle {
    position: absolute;
    background: rgba(0, 181, 216, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 15s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 12s;
}

/* Network Connection Lines */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 181, 216, 0.5), transparent);
    height: 1px;
    animation: pulse 4s ease-in-out infinite;
}

.network-line:nth-child(1) {
    top: 20%;
    left: 0;
    width: 40%;
    animation-delay: 0s;
}

.network-line:nth-child(2) {
    top: 60%;
    right: 0;
    width: 35%;
    animation-delay: 1s;
}

.network-line:nth-child(3) {
    top: 40%;
    left: 20%;
    width: 30%;
    animation-delay: 2s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00B5D8, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.risk-reversal {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Partners Carousel */
.partners {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.partners h3 {
    margin-bottom: 2rem;
    color: #111827;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.partner-logos {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: calc(200% + 6rem);
}

.partner-logos:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 8px;
    font-weight: 600;
    color: #6B7280;
    opacity: 0.8;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-width: 150px;
    text-align: center;
}

.partner-logo:hover {
    opacity: 1;
    border-color: #00B5D8;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Why Choose Us - 3D Cards */
.why-choose {
    padding: 6rem 0;
    background: #F9FAFB;
    perspective: 1000px;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #1E293B;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 181, 216, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card h3 {
    color: #1E293B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Solutions Cards */
.solutions {
    padding: 6rem 0;
    background: white;
}

.solutions h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #1E293B;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.solution-card:hover {
    border-color: #00B5D8;
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 181, 216, 0.15);
}

.solution-card h3 {
    color: #1E293B;
    margin-bottom: 1rem;
}

.solution-card .award {
    background: #10B981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.solution-card .award::before {
    content: "🏆";
    margin-right: 0.5rem;
}

/* Threat Statistics - Animated */
.threat-stats {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.threat-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.03) 2px,
        rgba(255,255,255,0.03) 4px
    );
    animation: slideBackground 10s linear infinite;
}

.threat-stats-content {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FEF3C7;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.urgent-cta {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes slideBackground {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(50px) translateY(50px); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Customer Logos */
.customers {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.customers h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1E293B;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.customer-logo {
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 8px;
    font-weight: 600;
    color: #6B7280;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.customer-logo:hover {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #F9FAFB;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #1E293B;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #00B5D8, #10B981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #374151;
}

.testimonial-author {
    font-weight: 600;
    color: #1E293B;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #00B5D8;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #0891b2;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #00B5D8;
}

/* Awards Section */
.awards {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: white;
    text-align: center;
}

.awards h2 {
    margin-bottom: 3rem;
    color: #00B5D8;
    font-size: 2.5rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.award-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.award-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.award-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-year {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1E293B;
    font-size: 2.5rem;
}

.faq-intro {
    text-align: center;
    margin-bottom: 4rem;
    color: #6B7280;
    font-size: 1.1rem;
}

.faq-item {
    background: #F9FAFB;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #00B5D8;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #E5E7EB;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #00B5D8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #6B7280;
    line-height: 1.7;
}

.faq-answer.show {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-cta-text {
    text-align: left;
}

.final-cta-image {
    text-align: center;
}

.final-cta-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #0F172A;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info p {
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    opacity: 0.6;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #00B5D8;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #10B981;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #00B5D8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

.mobile-menu-toggle:hover {
    background: #00B5D8;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .customer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1E293B;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Sections */
    .why-choose,
    .solutions,
    .testimonials,
    .faq {
        padding: 4rem 0;
    }

    .why-choose h2,
    .solutions h2,
    .testimonials h2,
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .benefit-card:hover {
        transform: translateY(-10px) rotateX(5deg);
    }

    .solution-card {
        padding: 1.5rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Partners */
    .partners {
        padding: 3rem 0;
    }

    .partner-logos {
        gap: 1.5rem;
    }

    .partner-logo {
        min-width: 120px;
        padding: 1rem;
    }

    /* Threat Stats */
    .threat-stats {
        padding: 4rem 0;
    }

    .threat-stats h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Customers */
    .customers {
        padding: 3rem 0;
    }

    .customers h2 {
        font-size: 2rem;
    }

    .customer-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .customer-logo {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonial {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Awards */
    .awards {
        padding: 3rem 0;
    }

    .awards h2 {
        font-size: 2rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* FAQ */
    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .faq-answer.show {
        max-height: 300px;
        padding: 0 1rem 1rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 4rem 0;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .final-cta-text {
        text-align: center;
    }

    .final-cta-text h2,
    .final-cta-text p {
        text-align: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-awards-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .why-choose h2,
    .solutions h2,
    .testimonials h2,
    .faq h2,
    .customers h2 {
        font-size: 1.75rem;
    }

    .benefit-card,
    .solution-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .partner-logo {
        min-width: 100px;
        padding: 0.75rem;
    }

    .customer-logo {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}
