/* ========== 品牌变量 ========== */
:root {
    --brand-background: #ffffff;
    --brand-foreground: #1a2b4d;
    --brand-card: #ffffff;
    --brand-card-foreground: #1a2b4d;
    --brand-popover: #ffffff;
    --brand-popover-foreground: #1a2b4d;
    --brand-primary: #0066ff;
    --brand-primary-foreground: #ffffff;
    --brand-secondary: #f5f8ff;
    --brand-secondary-foreground: #1a2b4d;
    --brand-muted: #f5f8ff;
    --brand-muted-foreground: #5a6a8a;
    --brand-accent: #00c6ff;
    --brand-accent-foreground: #ffffff;
    --brand-destructive: #ef4444;
    --brand-destructive-foreground: #ffffff;
    --brand-border: #e2e8f4;
    --brand-input: #fafbfe;
    --brand-ring: #0066ff;
    --brand-radius-sm: 8px;
    --brand-radius-md: 16px;
    --brand-radius-lg: 24px;
    --brand-radius-xl: 32px;
    --state-success: #22c55e;
    --state-warning: #f59e0b;
    --state-error: #ef4444;
    --state-info: #3b82f6;

    /* 兼容旧变量 */
    --primary: #0066ff;
    --primary-light: #33a3ff;
    --primary-dark: #0047b3;
    --cyan: #00c6ff;
    --bg-dark: #051438;
    --bg-blue: #0a2463;
    --bg-light: #f5f8ff;
    --text-dark: #1a2b4d;
    --text-gray: #5a6a8a;
    --text-light: #ffffff;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 80, 200, 0.2);
}

/* ========== 基础 Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--brand-foreground);
    background: var(--brand-background);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========== 容器 ========== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(2, 11, 36, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: auto;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
}

.nav a:hover {
    color: #fff;
}

.nav a.active {
    color: #00c6ff;
    font-weight: 600;
}

.nav a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00c6ff;
    border-radius: 1px;
}

/* ========== 移动端导航 ========== */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 201;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #060e1f;
    z-index: 200;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.mobile-nav-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: auto;
}

.mobile-nav-header .logo-img {
    height: 40px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    flex-shrink: 0;
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.mobile-nav-body {
    flex: 1;
    padding: 8px 0;
}

.mobile-nav-body a {
    display: block;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    position: relative;
}

.mobile-nav-body a:last-child {
    border-bottom: none;
}

.mobile-nav-body a:hover,
.mobile-nav-body a:active {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-body a.active {
    color: #00c6ff;
    font-weight: 600;
    background: rgba(0, 198, 255, 0.05);
}

.mobile-nav-body a.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #00c6ff;
    border-radius: 0 2px 2px 0;
}

/* ========== Section 公共 ========== */
.section {
    padding: 110px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-white {
    background: #fff;
}

.section-dark {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 198, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-blue) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(800px) rotateX(60deg) translateY(20%);
    transform-origin: center bottom;
    opacity: 0.4;
    pointer-events: none;
}

.section-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.04;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-dark .section-tag {
    color: var(--cyan);
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: 1px;
}

.section-dark .section-title {
    color: #fff;
}

.section-desc {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.section p strong,
.section-desc strong,
.section-dark p strong,
.section-dark .section-desc strong {
    color: inherit;
    font-weight: inherit;
}

/* ========== Page Hero 公共 ========== */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    max-height: 900px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(0, 198, 255, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #020617 0%, #0a2463 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 40px;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 0.35) 18%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0.65) 70%, rgba(2, 6, 23, 0.85) 100%),
        radial-gradient(ellipse at 50% 45%, rgba(2, 6, 23, 0.5) 0%, rgba(2, 6, 23, 0.2) 50%, transparent 75%);
    pointer-events: none;
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.75;
    z-index: 1;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan), 0 0 16px rgba(0, 198, 255, 0.5);
    opacity: 0;
    animation: particle-rise linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-duration: 7s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    left: 70%;
    animation-duration: 7.5s;
    animation-delay: 0.5s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.particle:nth-child(7) {
    left: 92%;
    animation-duration: 6.5s;
    animation-delay: 2.5s;
}

.page-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.page-hero-divider::before,
.page-hero-divider::after {
    content: "";
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg,
    transparent,
    rgba(0, 198, 255, 0.6),
    transparent);
}

.page-hero-divider span {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
}

.page-hero-meta {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.hero-meta-item {
    text-align: center;
}

.hero-meta-num {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    font-family: "Courier New", monospace;
}

.hero-meta-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

@keyframes particle-rise {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0);
    }

    10% {
        opacity: 0.8;
    }

    50% {
        transform: translateX(20px);
    }

    90% {
        opacity: 0.8;
    }

    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-10px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.page-hero-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    width: 100%;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.25);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    color: var(--cyan);
    letter-spacing: 2px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.page-hero-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: blink 2s ease-in-out infinite;
}

.page-hero-title {
    font-size: 76px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg,
    #ffffff 0%,
    #ffffff 55%,
    #66d9ff 80%,
    #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 40px rgba(0, 150, 255, 0.4));
    letter-spacing: 6px;
}

.page-hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    letter-spacing: 2px;
    margin: 0 auto;
    max-width: 900px;
}



/* ========== Footer 公共 ========== */
.footer {
    background: #020b24;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    text-align: left;
}

.footer-brand .logo {
    margin-bottom: 20px;
    justify-content: flex-start;
    display: inline-flex !important;
}

.footer-brand .logo img {
    object-position: left;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: left;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ========== 动画 ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.btn-group {
    display: flex;
    gap: 16px;
    /* 两个按钮之间的间距 */
    align-items: center;
    justify-content: center;
}

/* 按钮基础通用样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* 文字和箭头的间距 */
    padding: 12px 32px;
    border-radius: 50px;
    /* 胶囊形状 */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

/* 左侧按钮：渐变蓝 */
.btn-gradient {
    background: linear-gradient(135deg, #4597d3 0%, #50a9d2 100%);
    /* 青蓝渐变，贴合图片色彩 */
    color: #050a1b;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
    /* 柔和光晕 */
}

/* 左侧按钮：悬停效果 */
.btn-gradient:hover {
    transform: translateY(-2px);
    /* 微微上浮 */
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.45);
    /* 光晕加强 */
    filter: brightness(1.05);
    /* 稍微提亮 */
}

/* 左侧按钮的箭头 */
.btn-arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* 左侧按钮悬停时箭头右移 */
.btn-gradient:hover .btn-arrow {
    transform: translateX(4px);
}

/* 右侧按钮：深色半透明 */
.btn-dark {
    background: rgba(13, 25, 48, 0.6);
    /* 深蓝黑半透明 */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* 微弱的浅色边框 */
    backdrop-filter: blur(10px);
    /* 毛玻璃效果 */
    -webkit-backdrop-filter: blur(10px);
}

/* 右侧按钮：悬停效果 */
.btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    /* 变亮 */
    border-color: rgba(255, 255, 255, 0.3);
    /* 边框变亮 */
    transform: translateY(-2px);
}

.page-404 {
    position: relative;
    height: 100vh;
    min-height: 680px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: center;
}

.page-404 .img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 450px;
}

.page-404 .text {
    margin-top: 30px;
    max-width: 280px;
    margin: 0 auto;
}

.page-404 .btn_body {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-404 .btn_body a {
    padding: 0 15px;
    background: linear-gradient(44deg, var(--primary), var(--cyan));
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
}

/* ========== 响应式公共 ========== */
@media (max-width: 1024px) {
    .page-hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .page-hero-subtitle {
        font-size: 20px;
        letter-spacing: 2px;
    }

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

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .nav {
        display: none;
    }

    .container {
        padding: 0 20px !important;
    }

    .hero,
    .page-hero {
        height: auto !important;
        min-height: 360px !important;
    }

    .page-hero-title {
        font-size: 32px !important;
        letter-spacing: 2px;
    }

    .page-hero-subtitle {
        font-size: 16px !important;
        letter-spacing: 1px;
    }

    .page-hero-tag {
        font-size: 13px !important;
        padding: 8px 20px !important;
        margin-bottom: 24px !important;
        letter-spacing: 2px;
    }

    .section {
        padding: 56px 0 !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .section-desc {
        font-size: 15px !important;
    }

    .section-tag {
        font-size: 13px !important;
    }

    .tech-grid,
    .industry-grid,
    .advantage-list,
    .team-grid,
    .culture-grid,
    .milestone-grid,
    .contact-layout,
    .form-row,
    .footer-grid,
    .stats-inner,
    .vision-stats,
    .pillars-grid,
    .path-grid,
    .targets-grid,
    .principles-grid {
        grid-template-columns: 1fr !important;
    }

    .footer {
        padding: 48px 0 0 !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: left !important;
        padding: 20px 0 !important;
    }

    .footer-links {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .footer-brand {
        text-align: left !important;
    }

    .footer-brand p {
        text-align: left !important;
        font-size: 13px !important;
    }

    .footer-col {
        text-align: left !important;
    }

    .footer-col h4 {
        text-align: left !important;
        font-size: 15px !important;
    }

    .footer-col ul {
        text-align: left !important;
    }

    .footer-col a {
        font-size: 13px !important;
    }

    .footer-brand .logo {
        justify-content: flex-start !important;
        display: inline-flex !important;
    }

    .footer-brand .logo img {
        object-position: left !important;
    }

    .footer-brand,
    .footer-brand .logo,
    .footer-brand .logo-img,
    .footer-brand p {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    img:not(.logo-img) {
        max-width: 100% !important;
        height: auto !important;
    }

    .about-card,
    .solution-card,
    .tech-card {
        padding: 28px 24px !important;
    }

    .about-card h3,
    .solution-card h3,
    .tech-card h3 {
        font-size: 20px !important;
    }

    .about-card p,
    .solution-card p,
    .tech-card p {
        font-size: 15px !important;
    }

    .btn-primary,
    .btn-secondary {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .page-hero-meta {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-meta-num {
        font-size: 28px;
    }

    .hero-bg-image {
        opacity: 0.45;
    }

    .btn-group {
        gap: 10px;
        /* 减小按钮间距 */
        justify-content: center;
        /* 居中显示 */
    }

    .btn {
        padding: 10px 20px;
        /* 缩小内边距 */
        font-size: 14px;
        /* 缩小字体 */
        gap: 6px;
        /* 缩小图标和文字间距 */
    }

    .btn-arrow {
        font-size: 15px;
        /* 缩小箭头 */
    }
}

@media (max-width: 640px) {

    .page-hero-title {
        font-size: 24px !important;
    }

    .section {
        padding: 48px 0 !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    .section-desc {
        font-size: 14px !important;
    }

    .container {
        padding: 0 16px !important;
    }

    .footer-grid {
        gap: 28px !important;
    }

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

    .footer-col h4 {
        font-size: 15px !important;
    }

    .footer-col a {
        font-size: 13px !important;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        padding: 24px 16px !important;
    }

    .stat-number {
        font-size: 32px !important;
    }

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

    .about-card,
    .solution-card,
    .tech-card {
        padding: 24px 20px !important;
    }

    .about-card h3,
    .solution-card h3,
    .tech-card h3 {
        font-size: 18px !important;
    }

    .page-404 .btn_body a {
        line-height: 32px;
        font-size: 14px;
    }
}

@media (min-width: 769px) {

    .hamburger-btn,
    .mobile-nav-overlay {
        display: none !important;
    }

    .nav {
        display: flex !important;
    }

    .page-hero-tag {
        font-size: 14px !important;
        padding: 10px 24px !important;
        margin-bottom: 32px !important;
    }

    .section {
        padding: 100px 0 !important;
    }

    .section-title {
        font-size: 38px !important;
    }

    .section-desc {
        font-size: 17px !important;
    }

    .section-tag {
        font-size: 14px !important;
    }

    .about-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .contact-layout {
        grid-template-columns: 1fr 1fr !important;
    }

    .form-row {
        grid-template-columns: 1fr 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
        gap: 48px !important;
        padding-bottom: 60px !important;
    }

    .stats-inner {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 32px !important;
        padding: 48px 40px !important;
    }

    .btn-primary,
    .btn-secondary {
        display: inline-flex !important;
        width: auto !important;
    }

    .footer {
        padding: 80px 0 0 !important;
    }

    .footer-bottom {
        flex-direction: row !important;
        text-align: left !important;
    }

    .footer-links {
        justify-content: flex-start !important;
    }

    .about-card,
    .solution-card,
    .tech-card {
        padding: 40px 32px !important;
    }

    .about-card h3,
    .solution-card h3,
    .tech-card h3 {
        font-size: 22px !important;
    }

    .stat-number {
        font-size: 48px !important;
    }

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