
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        :root {
            --primary-blue: #2478f5;
            --primary-dark-blue: #0b347a;
            --red-accent: #e6212a;
            --light-bg: #f0f6ff;
            --text-dark: #1a2b49;
            --text-gray: #666666;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text-dark);
            background: #ffffff;
            overflow-x: hidden;
        }
        /* 滚动动画 */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }
        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }
        /* 三个模块内部文字：h2 → h3/sub-title → p 快速错开入场；产品功能模块改为每个 function-item 各自触发 */
        .advantage-section h2, .function-section h2, .about-section h2,
        .advantage-section h3, .function-section h3, .about-section .sub-title,
        .advantage-section p, .function-section p, .about-section p {
            opacity:0;
            transform: translateY(20px);
        }
        .advantage-section.active h2, .function-section.active h2, .about-section.active h2 {
            animation: sectionTextIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
        }
        .advantage-section.active h3, .about-section.active .sub-title {
            animation: sectionTextIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
        }
        .advantage-section.active p, .about-section.active p {
            animation: sectionTextIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
        }
        /* 产品功能模块：滚动到每个 function-item 时，其内部 h3 → p 才错开入场 */
        .function-item.active h3 {
            animation: sectionTextIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
        }
        .function-item.active p {
            animation: sectionTextIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
        }
        @keyframes sectionTextIn {
            from { opacity:0; transform: translateY(20px); }
            to   { opacity:1; transform: translateY(0); }
        }
        /* 导航栏 */
        header {
            width: 100%;
            background: #fff;
            /* header整体投影：近距清晰阴影 + 中距柔和大阴影 */
            box-shadow:
                0 2px 8px rgba(0,0,0,0.08),
                0 4px 16px rgba(11,52,122,0.06);
            position: sticky;
            top:0;
            z-index:999;
        }
        .nav-container {
            max-width:1200px;
            margin:0 auto;
            display:flex;
            justify-content: space-between;
            align-items:center;
            padding:5px 20px;
        }
        .logo {
            display:flex;
            align-items:center;
            gap:8px;
        }
        .logo-icon {
            width:140px;
            height:52px;
        }
        .logo-icon svg {
            width:100%;
            height:100%;
        }
        .logo-icon img {
            width:100%;
            height:100%;
            display:block;
            object-fit:contain;
        }
        .nav-menu {
            display:flex;
            gap:28px;
            margin-left:auto;
            margin-right:40px;
        }
        .nav-menu a {
            text-decoration:none;
            color:var(--text-dark);
            font-size:16px;
            position:relative;
            padding-bottom:6px;
            transition: color 0.3s;
        }
        .nav-menu a::after {
            content:'';
            position:absolute;
            left:50%;
            bottom:0;
            width:0;
            height:3px;
            background:var(--primary-blue);
            border-radius:2px;
            transform:translateX(-50%);
            transition: width 0.3s ease;
        }
        .nav-menu a:hover {
            color:var(--primary-blue);
        }
        .nav-menu a:hover::after {
            width:100%;
        }
        .nav-buttons {
            display:flex;
            gap:10px;
        }
        .btn-blue {
            background: var(--primary-blue);
            color:#fff;
            border:none;
            padding:7px 16px;
            border-radius:4px;
            cursor:pointer;
            font-size:16px;
            transition: all 0.3s;
        }
        .btn-blue:hover {
            background:#1860d8;
            transform: translateY(-2px);
            box-shadow:0 4px 12px rgba(36,120,245,0.3);
        }
        .btn-outline {
            background:#fff;
            color:var(--primary-blue);
            border:1px solid var(--primary-blue);
            padding:7px 16px;
            border-radius:4px;
            cursor:pointer;
            font-size:16px;
            transition: all 0.3s;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            text-decoration:none;
        }
        .btn-outline:hover {
            background:var(--primary-blue);
            color:#fff;
        }
        .mobile-menu-btn {
            display:none;
            border:none;
            background:none;
            font-size:24px;
        }
        /* Hero区域 */
        .hero {
            max-width:1200px;
            margin:0 auto;
            padding:40px 20px;
            display:grid;
            grid-template-columns: 1fr 1fr;
            align-items:center;
            gap:30px;
        }
        .hero-title {
            margin-left:20px;
        }
        .hero-title h1 {
            font-size:44px;
            font-weight:bold;
            line-height:1.4;
            color:var(--primary-dark-blue);
        }
        .hero-title h1 .hero-line-1,
        .hero-title h1 .hero-line-2 {
            display:inline-block;
        }
        .hero-title h1 .hero-line-2 {
            color:var(--red-accent);
        }
        .hero-desc {
            font-size:16px;
            color:var(--text-gray);
            margin:18px 0 30px;
            line-height:1.8;
        }
        .hero-buttons {
            display:flex;
            gap:18px;
            align-items:center;
        }
        /* Hero 5 元素错开进场动画（缓慢、丝滑、渐显） */
        .hero-title .hero-a {
            opacity:0;
            animation:heroFadeInUp 1.3s cubic-bezier(0.22,1,0.36,1) forwards;
        }
        .hero-title .d1 { animation-delay:0.15s; }
        .hero-title .d2 { animation-delay:0.55s; }
        .hero-title .d3 { animation-delay:0.95s; }
        .hero-title .d4 { animation-delay:1.35s; }
        .hero-title .d5 { animation-delay:1.75s; }
        @keyframes heroFadeInUp {
            from { opacity:0; transform:translateY(30px); }
            to   { opacity:1; transform:translateY(0); }
        }
        /* Hero区胶囊按钮：比导航按钮更大、更圆 */
        .hero-buttons .btn-blue {
            position:relative;
            z-index:0;
            padding:12px 20px;
            border-radius:30px;
            font-size:16px;
            display:inline-flex;
            align-items:center;
            gap:8px;
            box-shadow:0 6px 16px rgba(36,120,245,0.28);
        }
        /* 按钮永恒柔光：四周向外扩散，先渐显后渐隐，丝滑缓慢（进场完成后开始） */
        .hero-buttons .btn-blue::before {
            content:'';
            position:absolute;
            inset:0;
            border-radius:30px;
            background:rgba(102,179,255,0.55);
            filter:blur(14px);
            transform:scale(0.85);
            opacity:0;
            z-index:-1;
            animation:heroBtnGlow 4s ease-in-out 2.8s infinite;
            pointer-events:none;
        }
        @keyframes heroBtnGlow {
            0%   { opacity:0; transform:scale(0.85); }
            35%  { opacity:0.9; transform:scale(1.06); }
            100% { opacity:0; transform:scale(1.4); }
        }
        /* 文字先放大（与柔光同步起步，幅度+1px） */
        .hero-btn-text {
            display:inline-block;
            animation:heroBtnText 4s ease-in-out 2.8s infinite;
        }
        @keyframes heroBtnText {
            0%   { transform:scale(1); }
            15%  { transform:scale(1.03); }
            35%  { transform:scale(1.0625); }
            55%  { transform:scale(1.045); }
            75%  { transform:scale(1.015); }
            100% { transform:scale(1); }
        }
        /* 按钮形状随后小幅放大（延迟在文字之后，幅度更小） */
        .hero-btn-scale {
            display:inline-block;
            animation:heroBtnScale 4s ease-in-out 3.6s infinite;
        }
        @keyframes heroBtnScale {
            0%   { transform:scale(1); }
            15%  { transform:scale(1.012); }
            35%  { transform:scale(1.02); }
            55%  { transform:scale(1.015); }
            75%  { transform:scale(1.006); }
            100% { transform:scale(1); }
        }
        /* 导航栏「注册」按钮：复用同一套两层呼吸动画，页面加载即开始（无进场等待） */
        .nav-buttons .hero-btn-text {
            animation-delay:0.2s;
        }
        .nav-buttons .hero-btn-scale {
            animation-delay:0.7s;
        }
        /* SVG图标：右箭头｜尺寸：16×16px｜白色线条箭头 */
        .hero-buttons .btn-blue::after {
            content:"";
            display:inline-block;
            width:16px;
            height:16px;
            background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
            transition: transform 0.3s ease;
        }
        .hero-buttons .btn-blue:hover {
            background:#1860d8;
            transform: translateY(-2px);
            box-shadow:0 8px 20px rgba(36,120,245,0.4);
        }
        .hero-buttons .btn-blue:hover::after {
            transform: translateX(4px);
        }
        .hero-buttons .btn-outline {
            padding:11px 28px;
            border-radius:30px;
            font-size:16px;
        }
        .hero-img-wrap {
            width:100%;
            min-height:300px;
            display:flex;
            align-items:center;
            justify-content:center;
        }
        .hero-img-wrap svg {
            width:100%;
            max-width:500px;
            height:auto;
        }
        .hero-slider {
            position:relative;
            width:100%;
            max-width:500px;
            aspect-ratio:4/3;
            border-radius:16px;
            overflow:hidden;
        }
        .hero-slide {
            position:absolute;
            inset:0;
            opacity:0;
            transform:translateX(-85px);
            transition:opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.16,1,0.3,1);
        }
        .hero-slide.active {
            opacity:1;
            transform:translateX(0);
            z-index:2;
        }
        .hero-slide img {
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
        }
        .slide-2 {
            background:#eaf2ff;
        }
        .slide-2::before {
           /* content:"images/banner02.jpg";*/
            position:absolute;
            inset:0;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#8aa8d8;
            font-size:15px;
            text-align:center;
            line-height:1.8;
            padding:20px;
            box-sizing:border-box;
        }
        /* 优势模块 */
        .advantage-section {
            min-height:493px;
            /*background: linear-gradient(180deg, #e8f2ff 0%, #f0f6ff 100%);*/
			background-image: url(../images/bg.jpg);
			background-repeat: no-repeat;
			background-attachment: fixed;
			background-position: 0px 0px;
			background-size:cover;
            padding:60px 20px;
        }
        .section-title {
            text-align:center;
            font-size:32px;
            font-weight:bold;
            margin-bottom:48px;
            color:var(--text-dark);
        }
        .advantage-wrap {
            max-width:1000px;
            margin:0 auto;
            display:flex;
            gap:28px;
            align-items:stretch;
        }
        .adv-card {
            flex:1;
            background:#fff;
            padding:44px 30px 38px;
            border-radius:10px;
            text-align:center;
            box-shadow:0 2px 14px rgba(11,52,122,0.08);
            transition: transform 0.4s ease,box-shadow 0.4s;
            display:flex;
            flex-direction:column;
            align-items:center;
        }
        .adv-card:hover {
            transform: translateY(-8px);
            box-shadow:0 10px 26px rgba(11,52,122,0.14);
        }
        .adv-icon {
            width:80px;
            height:80px;
            margin:0 auto 24px;
            display:flex;
            align-items:center;
            justify-content:center;
        }
        .adv-icon svg {
            width:100%;
            height:100%;
        }
        .adv-icon img {
            width:100%;
            height:100%;
            display:block;
            object-fit:contain;
            transition:transform 0.55s cubic-bezier(0.65,0,0.35,1);
        }
        .adv-card:hover .adv-icon img {
            transform:scale(1.12);
            transition-delay:0.1s;   /* 放大比卡片上浮晚 0.1s，时间错开 */
        }
        .adv-card h3 {
            font-size:22px;
            font-weight:bold;
            line-height:1.3;
            margin-bottom:16px;
            color:var(--primary-dark-blue);
        }
        .adv-card p {
            font-size:16px;
            color:var(--text-gray);
            line-height:1.85;
            margin:0;
        }
        /* 功能模块 */
        .function-section {
            max-width:1100px;
            margin:60px auto;
            padding:0 20px;
        }
        .function-item {
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:30px;
            align-items:center;
            margin-bottom:48px;
        }
        .function-item.reverse {
            direction: rtl;
        }
        .function-item.reverse .func-text {
            direction:ltr;
        }
        .func-text h3 {
            font-size:30px;
            font-weight:bold;
            line-height:1.2;
            margin-bottom:18px;
            display:flex;
            align-items:center;
            gap:12px;
            color:var(--primary-dark-blue);
        }
        /* SVG图标：h3内联小图标｜尺寸：48×48px｜与标题文字居中对齐 */
        .func-text h3 img {
            width:48px;
            height:48px;
            display:block;
            object-fit:contain;
            flex-shrink:0;
        }
        .func-text p {
            font-size:16px;
            color:var(--text-gray);
            line-height:1.85;
        }
        .func-img {
            width:100%;
            min-height:220px;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
            border-radius:16px;
        }
        .func-img img {
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
            transition:transform 0.5s ease;
        }
        .func-img:hover img {
            transform:scale(1.03);
        }
        .func-img svg {
            width:100%;
            max-width:460px;
            height:auto;
        }
        /* 数据统计模块 */
        .stats-section {
            /*background: linear-gradient(135deg, #0b347a 0%, #1654a8 100%);*/
			background-image: url(../images/bg3.jpg);
			background-repeat: no-repeat;
			background-attachment: fixed;
			background-position: 0px 0px;
			background-size:cover;
            color:#fff;
            padding:75px 20px;
			min-height: 380px;
        }
        .stats-container {
            max-width:1000px;
            margin:0 auto;
        }
        .stats-title {
            text-align:center;
            font-size:28px;
            margin-bottom:55px;
            font-weight:bold;
            letter-spacing:1px;
        }
        .stats-row {
            display:grid;
            grid-template-columns: repeat(4,1fr);
            gap:40px;
            text-align:center;
        }
        .stats-num {
            font-size:60px;
            font-weight:bold;
            margin-bottom:14px;
            line-height:1;
        }
        .stats-desc {
            font-size:16px;
            opacity:0.9;
            letter-spacing:1px;
        }
        /*关于我们*/
        .about-section {
            max-width:1100px;
            margin:80px auto;
            padding:0 20px;
            display:grid;
            grid-template-columns: 1fr 1.15fr;
            gap:60px;
            align-items:center;
        }
        .about-text h2 {
            font-size:39px;
            margin-bottom:12px;
            color:var(--text-dark);
            font-weight:bold;
        }
        .about-text .sub-title {
            color:var(--red-accent);
            font-weight:bold;
            margin-bottom:28px;
            font-size:22px;
            letter-spacing:0.5px;
        }
        .about-text p {
            font-size:16px;
            line-height:1.85;
            color:var(--text-gray);
        }
        .about-img {
            width:100%;
            min-height:320px;
            border-radius:16px;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
            box-shadow:0 12px 40px rgba(0,0,0,0.12);
        }
        .about-img img {
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
            transition:transform 0.5s ease;
        }
        .about-img:hover img {
            transform:scale(1.1);
        }
        .about-img svg {
            width:100%;
            height:auto;
        }
        /*表单申请模块*/
        .apply-section {
            /*background:#f0f6ff;*/
			background-image: url(../images/bg4.jpg);
			background-repeat: no-repeat;
			background-attachment: fixed;
			background-position: 0px 0px;
			background-size:cover;
            padding:60px 20px;
            position:relative;
            overflow:hidden;
        }
        .apply-container {
            max-width:600px;
            margin:0 auto;
            position:relative;
            z-index:2;
        }
        .apply-title {
            text-align:center;
            font-size:34px;
            color:#b81600;
            margin-bottom:12px;
            font-weight:bold;
        }
        .apply-sub {
            text-align:center;
            font-size:16px;
            color:var(--text-gray);
            margin-bottom:26px;
        }
        .apply-form {
            background:#fff;
            padding:30px;
            border-radius:8px;
            box-shadow:0 4px 18px rgba(0,0,0,0.07);
            transition:transform 0.35s ease, box-shadow 0.35s ease;
        }
        .apply-form:hover {
            transform:translateY(-4px);
            box-shadow:0 10px 28px rgba(0,0,0,0.12);
        }
        .form-row {
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:16px;
            margin-bottom:16px;
        }
        .apply-form input, .apply-form textarea {
            width:100%;
            border:1px solid #ddd;
            border-radius:4px;
            padding:9px 12px;
            font-size:16px;
            outline:none;
            transition:border-color 0.35s ease, box-shadow 0.35s ease;
        }
        .apply-form input:focus, .apply-form textarea:focus {
            border-color:#66b3ff;
            box-shadow:0 0 0 3px rgba(102,179,255,0.25);
        }
        .form-field {
            position:relative;
        }
        .form-field .req {
            position:absolute;
            right:12px;
            top:50%;
            transform:translateY(-50%);
            color:#e4393c;
            font-weight:bold;
            font-size:16px;
            pointer-events:none;
        }
        .apply-form textarea {
            min-height:90px;
            resize:vertical;
            margin-bottom:20px;
        }
        .btn-orange {
            width:100%;
            background:#ff7800;
            color:#fff;
            border:none;
            padding:15px;
			font-weight: bold;
            border-radius:6px;
            cursor:pointer;
            font-size:16px;
            transition:all 0.3s;
        }
        .btn-orange:hover {
            background:#e56b00;
            transform:translateY(-2px);
            box-shadow:0 5px 14px rgba(255,120,0,0.28);
        }
        .decor-rocket {
            position:absolute;
            left:8%;
            bottom:20px;
            width:140px;
            height:200px;
            z-index:1;
        }
        .decor-rocket svg {
            width:100%;
            height:100%;
        }
        .decor-cloud {
            position:absolute;
            right:8%;
            bottom:30px;
            width:200px;
            height:140px;
            z-index:1;
        }
        .decor-cloud svg {
            width:100%;
            height:100%;
        }
        /*浮动上下导航按钮*/
        .scroll-nav {
            position:fixed;
            right:18px;
            bottom:110px;
            z-index:999;
            display:flex;
            flex-direction:column;
            gap:10px;
        }
        .scroll-nav-btn {
            width:44px;
            height:44px;
            border:none;
            border-radius:10px;
            background:var(--primary-blue);
            color:#fff;
            cursor:pointer;
            display:flex;
            align-items:center;
            justify-content:center;
            box-shadow:0 4px 12px rgba(36,120,245,0.35);
            transition:transform 0.3s cubic-bezier(0.65,0,0.35,1), background 0.3s ease, box-shadow 0.3s ease;
        }
        .scroll-nav-btn svg {
            width:20px;
            height:20px;
            display:block;
            transition:transform 0.3s cubic-bezier(0.65,0,0.35,1);
        }
        #scrollTopBtn:hover svg {
            transform:translateY(-2px);
        }
        #scrollBottomBtn:hover svg {
            transform:translateY(2px);
        }
        .scroll-nav-btn:hover {
            transform:translateY(-2px);
            background:#1a5fd0;
            box-shadow:0 6px 16px rgba(36,120,245,0.45);
        }
        .scroll-nav-btn:active {
            transform:scale(0.94);
        }
        /*页脚*/
        footer {
            background:var(--primary-dark-blue);
            color:#fff;
            padding:40px 20px;
        }
        .footer-wrap {
            max-width:1100px;
            margin:0 auto;
            display:flex;
            align-items:center;
            gap:15px;
            font-size:14px;
            line-height:2;
        }
        .footer-logo {
            width:72px;
            height:72px;
            flex-shrink:0;
            border-radius:10px;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
        }
        .footer-logo img {
            width:100%;
            height:100%;
            object-fit:contain;
            display:block;
        }
        .footer-info {
            opacity:0.9;
        }
        /*===== 通用弹窗组件 =====*/
        .modal-mask {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(10, 26, 50, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .modal-mask.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-box {
            width: 400px;
            max-width: 100%;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(11, 52, 122, 0.28);
            transform: translateY(24px) scale(0.95);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .modal-mask.active .modal-box {
            transform: translateY(0) scale(1);
        }
        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 16px 13px 22px;
            background: var(--primary-blue);
        }
        .modal-title {
            color: #fff;
            font-size: 17px;
            font-weight: bold;
            letter-spacing: 0.5px;
        }
        .modal-close {
            width: 28px;
            height: 28px;
            border: none;
            background: rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .modal-close svg {
            width: 15px;
            height: 15px;
            display: block;
        }
        .modal-close:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(90deg);
        }
        .modal-body {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 26px 24px 8px;
        }
        .modal-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
        }
        .modal-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }
        .modal-msg {
            flex: 1;
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-dark);
            padding-top: 3px;
            word-break: break-word;
        }
        .modal-footer {
            display: flex;
            justify-content: center;
            gap: 14px;
            padding: 18px 24px 24px;
        }
        .modal-btn {
            min-width: 100px;
            padding: 9px 24px;
            border-radius: 4px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            border: 1px solid transparent;
            transition: all 0.25s ease;
        }
        .modal-btn-confirm {
            background: var(--primary-blue);
            color: #fff;
        }
        .modal-btn-confirm:hover {
            background: #1860d8;
        }
        .modal-btn-cancel {
            background: #fff;
            color: var(--text-gray);
            border-color: #ccd4e0;
        }
        .modal-btn-cancel:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }
        @media(max-width:480px) {
            .modal-body {
                padding: 20px 18px 6px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .modal-footer {
                padding: 16px 18px 20px;
            }
            .modal-btn {
                min-width: 88px;
                padding: 9px 16px;
            }
        }
        /*移动端适配*/
        @media(max-width:768px) {
            .nav-menu {
                display:none;
            }
            .mobile-menu-btn {
                display:block;
            }
            .hero {
                grid-template-columns: 1fr;
            }
            .advantage-wrap {
                flex-direction:column;
                gap:20px;
            }
            .function-item {
                grid-template-columns:1fr;
            }
            .function-item.reverse {
                direction:ltr;
            }
            .stats-row {
                grid-template-columns: repeat(2,1fr);
                gap:36px 24px;
            }
            .stats-title {
                font-size:22px;
                margin-bottom:36px;
            }
            .stats-num {
                font-size:42px;
                margin-bottom:10px;
            }
            .stats-desc {
                font-size:14px;
            }
            .about-section {
                grid-template-columns: 1fr;
                gap:30px;
                margin:60px auto;
            }
            .about-text h2 {
                font-size:28px;
                margin-bottom:8px;
            }
            .about-text .sub-title {
                font-size:18px;
                margin-bottom:18px;
            }
            .about-text p {
                font-size:14px;
                line-height:1.8;
            }
            .about-img {
                min-height:240px;
                border-radius:12px;
            }
            .footer-wrap {
                flex-direction:column;
                gap:18px;
                text-align:center;
                font-size:13px;
            }
            .footer-logo {
                width:60px;
                height:60px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .hero-title h1 {
                font-size:30px;
            }
            .decor-rocket, .decor-cloud {
                display:none;
            }
            .scroll-nav {
                right:10px;
                bottom:80px;
                gap:8px;
            }
            .scroll-nav-btn {
                width:38px;
                height:38px;
                border-radius:8px;
            }
            .scroll-nav-btn svg {
                width:17px;
                height:17px;
            }
        }
    