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

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 30%, #f8fafc 60%, #ffffff 100%);
    min-height: 100vh;
    transition: background 0.3s, color 0.3s;
}

@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 30%, #334155 60%, #475569 100%);
        color: #f8fafc;
    }

    .navbar {
        background: rgba(15, 23, 42, 0.6);
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }

    .company-name {
        color: #e2e8f0;
    }

    .navbar-nav a {
        color: #e2e8f0;
    }

    .navbar-nav a:hover {
        color: #94a3b8;
    }

    .lang-btn {
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(15, 23, 42, 0.6);
        color: #e2e8f0;
    }

    .lang-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #e2e8f0;
    }

    .lang-btn.active {
        background: #3b82f6;
        color: #fff;
        border-color: #3b82f6;
    }

    .navbar-toggle span {
        background: #e2e8f0;
    }

    .section-header h2 {
        color: #e2e8f0;
    }

    .section-header p {
        color: #94a3b8;
    }

    .service-card {
        background: rgba(30, 41, 59, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        background: rgba(51, 65, 85, 0.9);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .service-card h3 {
        color: #e2e8f0;
    }

    .service-card p {
        color: #94a3b8;
    }

    .solution-card {
        background: rgba(30, 41, 59, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        background: rgba(51, 65, 85, 0.9);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .solution-card h3 {
        color: #e2e8f0;
    }

    .solution-card p {
        color: #94a3b8;
    }

    .solution-image {
        background: rgba(59, 130, 246, 0.1);
    }

    .about-content h2 {
        color: #e2e8f0;
    }

    .about-content p {
        color: #94a3b8;
    }

    .stat-item {
        background: rgba(30, 41, 59, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .stat-label {
        color: #94a3b8;
    }

    .info-text h4 {
        color: #e2e8f0;
    }

    .info-text p {
        color: #94a3b8;
    }

    .contact-form {
        background: rgba(30, 41, 59, 0.9);
        border: 2px solid rgba(59, 130, 246, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .form-group label {
        color: #e2e8f0;
    }

    .form-group input,
    .form-group textarea {
        background: rgba(15, 23, 42, 0.8);
        border: 2px solid rgba(59, 130, 246, 0.2);
        color: #e2e8f0;
    }

    .form-group input:hover,
    .form-group textarea:hover {
        border-color: rgba(59, 130, 246, 0.4);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), inset 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .info-icon {
        background: rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.3);
        color: #60a5fa;
    }

    .footer {
        background: #0f172a;
    }

    .footer-bottom p,
    .footer-bottom a {
        color: #64748b;
    }

    .footer-bottom a:hover {
        color: #94a3b8;
    }

    .navbar-nav {
        background: rgba(15, 23, 42, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .contact-form button {
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }

    .contact-form button:hover {
        background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
    will-change: transform;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 60px;
    height: 40px;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.navbar-nav a {
    text-decoration: none;
    color: #1e40af;
    font-weight: 500;
    transition: color 150ms ease-out;
}

.navbar-nav a:hover {
    color: #3b82f6;
}

.language-switch {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.mobile-language-switch {
    display: none;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    color: #1e40af;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 200ms ease-out, border-color 200ms ease-out;
}

.lang-btn:hover {
    background: rgba(30, 64, 175, 0.1);
    border-color: #1e40af;
}

.lang-btn.active {
    background: #1e40af;
    color: #fff;
    border-color: #1e40af;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.hero {
    padding: 120px 0 120px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 20%, #312e81 40%, #4c1d95 50%, #7c3aed 60%, #8b5cf6 70%, #a855f7 80%, #c084fc 100%);
    background-size: 400% 400%;
    animation: gradientFlow 12s ease-in-out infinite;
    will-change: background-position;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(168, 85, 247, 0.25) 0%, transparent 40%);
    z-index: -1;
}

.hero .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
}

.hero-content h1::after {
    content: '|';
    opacity: 0.4;
    color: rgba(255, 255, 255, 0.4);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    overflow: hidden;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #7c3aed;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    will-change: transform;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateZ(0);
    will-change: transform;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
    transform: translateZ(0);
}

.visual-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-align: center;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
    padding: 12px 20px;
    min-width: 80px;
    transform: translateZ(0);
    will-change: transform;
}

.visual-card:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.25);
}

.icon-circle {
    font-size: 24px;
    margin-bottom: 5px;
}

.visual-card span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services {
    padding: 80px 0;
    background: transparent;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(30, 64, 175, 0.15);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.05);
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
    transform: translateZ(0);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.15);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(30, 64, 175, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 14px;
    color: #2563eb;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
}

.solutions {
    padding: 80px 0;
    background: transparent;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(30, 64, 175, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
    transform: translateZ(0);
    will-change: transform;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.15);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(30, 64, 175, 0.3);
}

.solution-image {
    background: rgba(30, 64, 175, 0.05);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-image svg {
    width: 80px;
    height: 80px;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    padding: 20px 20px 10px;
}

.solution-card p {
    font-size: 14px;
    color: #64748b;
    padding: 0 20px 20px;
}

.about {
    padding: 80px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image svg {
    width: 100%;
    max-width: 300px;
}

.contact {
    padding: 80px 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.1);
    border: 2px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #1e40af;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    color: #64748b;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(30, 64, 175, 0.2);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
    background: rgba(255, 255, 255, 0.9);
    color: #1e40af;
    box-shadow: inset 0 2px 8px rgba(30, 64, 175, 0.05);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(30, 64, 175, 0.4);
    box-shadow: inset 0 2px 8px rgba(30, 64, 175, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(30, 64, 175, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), inset 0 2px 8px rgba(30, 64, 175, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.contact-form button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
}

.contact-form button:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo svg {
    width: 80px;
    height: 50px;
}

.footer-brand p {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 150ms ease-out;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 10px;
        width: 260px;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(168, 85, 247, 0.3);
        border-radius: 16px;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        gap: 5px;
        z-index: 1001;
    }

    @keyframes slideRight {
        from {
            opacity: 0;
            transform: translateX(10px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .navbar-nav.active {
        display: flex;
        animation: slideRight 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .navbar-nav a {
        padding: 12px 16px;
        color: #e2e8f0;
        border-radius: 10px;
        transition: background 150ms ease-out, color 150ms ease-out, transform 150ms ease-out;
        font-size: 14px;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }

    .navbar-nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), transparent);
        transition: left 0.5s ease;
    }

    .navbar-nav a:hover {
        background: rgba(168, 85, 247, 0.2);
        color: #fff;
        transform: translateX(3px);
    }

    .navbar-nav a:hover::before {
        left: 100%;
    }

    .language-switch {
        display: none;
    }

    .mobile-language-switch {
        display: flex;
        gap: 8px;
        justify-content: center;
        padding: 15px 10px 5px;
        margin-top: 5px;
        border-top: 1px solid rgba(168, 85, 247, 0.2);
    }

    .mobile-language-switch .lang-btn {
        padding: 8px 20px;
        border: 1px solid rgba(168, 85, 247, 0.3);
        border-radius: 20px;
        background: rgba(168, 85, 247, 0.1);
        color: #e2e8f0;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background 150ms ease-out, border-color 150ms ease-out, transform 150ms ease-out;
    }

    .mobile-language-switch .lang-btn:hover {
        border-color: rgba(168, 85, 247, 0.6);
        background: rgba(168, 85, 247, 0.2);
        transform: scale(1.05);
    }

    .mobile-language-switch .lang-btn.active {
        background: linear-gradient(135deg, #7c3aed, #a855f7);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    }

    .navbar-toggle {
        display: flex;
        padding: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: background 150ms ease-out;
    }

    .navbar-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .company-name {
        font-size: 14px;
        color: #fff;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    .hero-visual {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
        padding: 0 10px;
    }

    .visual-card {
        padding: 10px 15px;
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .icon-circle {
        font-size: 20px;
    }

    .visual-card span {
        font-size: 11px;
    }

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

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
        padding: 0 10px;
    }

    .services,
    .solutions,
    .about,
    .contact {
        padding: 50px 0;
    }

    .services-grid,
    .solutions-grid {
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 40px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p,
    .service-features li {
        font-size: 13px;
    }

    .solution-image {
        padding: 20px;
    }

    .solution-image svg {
        width: 60px;
        height: 60px;
    }

    .solution-card h3 {
        font-size: 17px;
        padding: 15px 15px 8px;
    }

    .solution-card p {
        font-size: 13px;
        padding: 0 15px 15px;
    }

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

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 14px;
    }

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

    .stat-item {
        padding: 15px;
    }

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

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

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

    .info-item {
        gap: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .info-text h4 {
        font-size: 15px;
    }

    .info-text p {
        font-size: 13px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 15px;
        font-size: 15px;
    }

    .footer-content {
        text-align: center;
        gap: 30px;
    }

    .footer-brand .logo svg {
        width: 60px;
        height: 40px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .visual-card {
        min-width: 100%;
        max-width: 100%;
    }

    .icon-circle {
        font-size: 40px;
    }

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

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

    .footer-bottom {
        padding: 15px 10px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}