 /* ===== 全局重置 & 基础 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ffffff;
            --secondary: #f8f9fc;
            --accent: #c9a84c;
            --accent-dark: #b08d3a;
            --accent-light: #f0e2b5;
            --text-dark: #1a1f2e;
            --text-gray: #5b657a;
            --text-light: #8a94a8;
            --border-light: #eaedf2;
            --shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.02);
            --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--primary);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 滚动条 ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f0f2f6;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        /* ===== 预加载动画 ===== */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .loader-ring {
            width: 48px;
            height: 48px;
            border: 4px solid rgba(201, 168, 76, 0.15);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 0.9s linear infinite;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== 导航 ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 18px 0;
            transition: all var(--transition);
            background: transparent;
        }
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
            padding: 10px 0;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo .logo-icon {
            color: var(--accent);
            font-size: 30px;
        }
        .nav-logo span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
        }
        .nav-links a {
            position: relative;
            transition: color var(--transition);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width var(--transition);
        }
        .nav-links a:hover {
            color: var(--text-dark);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-cta {
            background: var(--accent);
            color: #fff !important;
            padding: 8px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all var(--transition);
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            background: var(--accent-dark);
            transform: scale(1.04);
            color: #fff !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--text-dark);
            border-radius: 4px;
            transition: all var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== Hero ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 140px 0 80px;
            background: var(--primary);
            overflow: hidden;
        }
        .hero-bg-shape {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
            top: -250px;
            right: -200px;
            pointer-events: none;
        }
        .hero-bg-shape-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
            bottom: -150px;
            left: -100px;
            pointer-events: none;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero-content .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201, 168, 76, 0.08);
            border: 1px solid rgba(201, 168, 76, 0.15);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-dark);
            letter-spacing: 0.3px;
            margin-bottom: 28px;
        }
        .hero-content h1 {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -1.5px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        .hero-content h1 .highlight {
            color: var(--accent-dark);
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content p {
            font-size: 19px;
            color: var(--text-gray);
            max-width: 520px;
            margin-bottom: 36px;
            line-height: 1.7;
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent);
            color: #fff;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: 0 8px 28px rgba(201, 168, 76, 0.25);
        }
        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 14px 44px rgba(201, 168, 76, 0.35);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--secondary);
            border: 1px solid var(--border-light);
            color: var(--text-dark);
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all var(--transition);
            cursor: pointer;
        }
        .btn-secondary:hover {
            background: #eef1f6;
            border-color: #d0d6e0;
            transform: translateY(-3px);
        }

        /* Hero 右侧视觉 */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .hero-visual .orb {
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(201, 168, 76, 0.08), rgba(255, 255, 255, 0.9) 70%);
            border: 1px solid rgba(201, 168, 76, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: float 6s ease-in-out infinite;
            box-shadow: var(--shadow);
        }
        .orb-inner {
            text-align: center;
        }
        .orb-inner .big-icon {
            font-size: 72px;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .orb-inner h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: 2px;
        }
        .orb-inner p {
            font-size: 14px;
            color: var(--text-light);
            letter-spacing: 4px;
            text-transform: uppercase;
        }
        .orb-ring {
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            border: 1px solid rgba(201, 168, 76, 0.08);
            animation: spin 20s linear infinite;
        }
        .orb-ring-2 {
            position: absolute;
            inset: -40px;
            border-radius: 50%;
            border: 1px dashed rgba(201, 168, 76, 0.05);
            animation: spin 30s linear infinite reverse;
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-16px);
            }
        }

        .float-tag {
            position: absolute;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark);
            animation: float 5s ease-in-out infinite;
            box-shadow: var(--shadow);
        }
        .float-tag i {
            color: var(--accent);
            font-size: 18px;
        }
        .float-tag.t1 {
            top: 10%;
            right: -10%;
            animation-delay: 0.2s;
        }
        .float-tag.t2 {
            bottom: 20%;
            left: -8%;
            animation-delay: 1.2s;
        }
        .float-tag.t3 {
            bottom: 5%;
            right: 5%;
            animation-delay: 2.4s;
        }

        /* ===== 信任条 ===== */
        .trust-bar {
            padding: 40px 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            background: var(--secondary);
        }
        .trust-bar .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 14px;
            color: var(--text-gray);
        }
        .trust-item i {
            font-size: 26px;
            color: var(--accent);
            opacity: 0.7;
        }
        .trust-item strong {
            color: var(--text-dark);
            font-size: 18px;
        }

        /* ===== 通用标题 ===== */
        .section {
            padding: 90px 0;
        }
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 60px;
        }
        .section-header .tag {
            display: inline-block;
            background: rgba(201, 168, 76, 0.08);
            color: var(--accent-dark);
            padding: 4px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .section-header h2 {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -1px;
            line-height: 1.15;
            color: var(--text-dark);
            margin-bottom: 16px;
        }
        .section-header h2 .highlight {
            color: var(--accent-dark);
        }
        .section-header p {
            color: var(--text-gray);
            font-size: 18px;
        }

        /* ===== 服务特点 ===== */
        .features {
            background: var(--secondary);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: var(--primary);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 40px 32px;
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .feature-card .icon {
            font-size: 38px;
            color: var(--accent);
            margin-bottom: 18px;
            display: inline-block;
        }
        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        .feature-card p {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.7;
        }

        /* ===== 数据统计 ===== */
        .stats {
            background: var(--primary);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            padding: 30px 20px;
            border-radius: var(--radius);
            background: var(--secondary);
            border: 1px solid var(--border-light);
        }
        .stat-item .number {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .stat-item .label {
            color: var(--text-gray);
            font-size: 15px;
            margin-top: 6px;
        }

        /* ===== 服务流程 ===== */
        .process {
            background: var(--secondary);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .process-step {
            text-align: center;
            padding: 30px 16px;
            border-radius: var(--radius);
            background: var(--primary);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }
        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .process-step .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(201, 168, 76, 0.08);
            color: var(--accent-dark);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .process-step h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
        }
        .process-step p {
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.6;
        }

        /* ===== 案例展示 ===== */
        .cases {
            background: var(--primary);
        }
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .case-card {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-light);
            background: var(--primary);
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }
        .case-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .case-card .case-img {
            height: 200px;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 52px;
            color: var(--accent);
            opacity: 0.7;
        }
        .case-card .case-body {
            padding: 24px 28px 28px;
        }
        .case-card .case-body .tag {
            display: inline-block;
            background: rgba(201, 168, 76, 0.08);
            color: var(--accent-dark);
            font-size: 12px;
            padding: 2px 14px;
            border-radius: 50px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .case-card .case-body h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
        }
        .case-card .case-body p {
            color: var(--text-gray);
            font-size: 14px;
        }
        .case-card .case-body .result {
            margin-top: 12px;
            font-weight: 600;
            color: var(--accent-dark);
            font-size: 15px;
        }

        /* ===== 评价 ===== */
        .testimonials {
            background: var(--secondary);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .testimonial-card {
            background: var(--primary);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .testimonial-card .stars {
            color: var(--accent);
            font-size: 16px;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .testimonial-card blockquote {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 16px;
        }
        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .testimonial-card .author .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: #fff;
        }
        .testimonial-card .author .info strong {
            display: block;
            font-size: 15px;
            color: var(--text-dark);
        }
        .testimonial-card .author .info span {
            font-size: 13px;
            color: var(--text-gray);
        }

        /* ===== CTA 大区块 ===== */
        .cta-banner {
            padding: 90px 0;
            background: var(--secondary);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .cta-banner .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .cta-banner h2 {
            font-size: 44px;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--text-dark);
            max-width: 700px;
            margin-bottom: 16px;
        }
        .cta-banner h2 .highlight {
            color: var(--accent-dark);
        }
        .cta-banner p {
            color: var(--text-gray);
            font-size: 19px;
            max-width: 540px;
            margin-bottom: 32px;
        }
        .cta-banner .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        /* ===== 联系/表单 ===== */
        .contact {
            background: var(--primary);
        }
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .contact-info h3 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .contact-info p {
            color: var(--text-gray);
            font-size: 17px;
            margin-bottom: 28px;
            line-height: 1.7;
        }
        .contact-info .detail {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            font-size: 15px;
            color: var(--text-dark);
        }
        .contact-info .detail i {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(201, 168, 76, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-dark);
            font-size: 18px;
            flex-shrink: 0;
        }
        .contact-form {
            background: var(--secondary);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 40px 36px;
            box-shadow: var(--shadow);
        }
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        .contact-form label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
            color: var(--text-dark);
        }
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid var(--border-light);
            background: var(--primary);
            color: var(--text-dark);
            font-size: 15px;
            font-family: inherit;
            transition: all var(--transition);
            outline: none;
        }
        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }
        .contact-form .btn-submit {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 10px;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            font-size: 17px;
            cursor: pointer;
            transition: all var(--transition);
            font-family: inherit;
        }
        .contact-form .btn-submit:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
        }

        /* ===== 页脚 ===== */
        .footer {
            padding: 50px 0 30px;
            border-top: 1px solid var(--border-light);
            background: var(--primary);
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .footer .copy {
            font-size: 14px;
            color: var(--text-gray);
        }
        .footer .socials {
            display: flex;
            gap: 18px;
        }
        .footer .socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            transition: all var(--transition);
            font-size: 16px;
        }
        .footer .socials a:hover {
            border-color: var(--accent);
            color: var(--accent-dark);
            transform: translateY(-3px);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-btns {
                justify-content: center;
            }
            .hero-visual .orb {
                width: 280px;
                height: 280px;
            }
            .float-tag {
                display: none;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 34px;
            }
            .hero-content h1 {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 20px;
                transition: right var(--transition);
                border-left: 1px solid var(--border-light);
            }
            .nav-links.open {
                right: 0;
            }
            .hamburger {
                display: flex;
                z-index: 1001;
            }
            .nav-cta {
                padding: 12px 28px;
                text-align: center;
            }
            .hero {
                padding: 120px 0 60px;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .hero-content p {
                font-size: 16px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .stat-item .number {
                font-size: 34px;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .cases-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .cta-banner h2 {
                font-size: 30px;
            }
            .contact-form {
                padding: 28px 20px;
            }
            .section {
                padding: 60px 0;
            }
            .section-header h2 {
                font-size: 28px;
            }
            .hero-btns .btn-primary,
            .hero-btns .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .footer .container {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 26px;
            }
            .orb-inner .big-icon {
                font-size: 48px;
            }
            .hero-visual .orb {
                width: 200px;
                height: 200px;
            }
            .stat-item .number {
                font-size: 28px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-item {
                padding: 18px 12px;
            }
        }

        .text-accent {
            color: var(--accent-dark);
        }