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

        :root {
            --brand: #e85d3a;
            --brand-deep: #c94a2c;
            --brand-glow: #f7931e;
            --bg-warm: #fdfaf7;
            --bg-cream: #fcf8f3;
            --bg-soft: #f5ede4;
            --text-primary: #1e1a16;
            --text-secondary: rgba(30, 26, 22, 0.58);
            --text-muted: rgba(30, 26, 22, 0.38);
            --border-soft: rgba(0, 0, 0, 0.04);
            --border-card: rgba(0, 0, 0, 0.05);
            --shadow-card: 0 2px 14px rgba(0, 0, 0, 0.025);
            --shadow-hover: 0 22px 56px rgba(0, 0, 0, 0.06);
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 60px;
            --font-mono: 'SF Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
            --transition-smooth: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-warm);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ── Header ───────────────────── */
        header {
            background: rgba(253, 250, 247, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-soft);
            transition: box-shadow var(--transition-smooth);
        }
        header.scrolled {
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            transition: opacity var(--transition-smooth);
        }
        .logo:hover {
            opacity: 0.8;
        }
        .logo svg {
            width: 34px;
            height: 34px;
            color: var(--brand);
            flex-shrink: 0;
        }
        .logo span {
            color: var(--brand);
        }
        .logo small {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            margin-left: 4px;
            letter-spacing: 0.3px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.25s;
            position: relative;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
            letter-spacing: 0.1px;
        }
        nav a:hover {
            color: var(--text-primary);
        }
        nav a.active {
            color: var(--brand);
            border-bottom-color: var(--brand);
        }
        .nav-download-btn {
            background: var(--brand);
            color: #fff !important;
            padding: 11px 32px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 13px;
            border: none;
            transition: background var(--transition-smooth), transform 0.2s, box-shadow 0.3s;
            border-bottom: none !important;
            box-shadow: 0 5px 20px rgba(232, 93, 58, 0.22);
            letter-spacing: 0.2px;
        }
        .nav-download-btn:hover {
            background: var(--brand-deep);
            transform: scale(1.04);
            box-shadow: 0 8px 28px rgba(232, 93, 58, 0.32);
            color: #fff !important;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            z-index: 101;
        }
        .nav-toggle span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: 0.25s;
            transform-origin: center;
        }
        .nav-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .nav-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ── Hero ───────────────────── */
        .hero {
            padding: 100px 0 80px;
            background: linear-gradient(155deg, #fdfaf7 0%, #f5ede4 55%, #fdf0e8 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-soft);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -35%;
            right: -8%;
            width: 850px;
            height: 850px;
            background: radial-gradient(circle at 60% 40%, rgba(232, 93, 58, 0.07) 0%, transparent 68%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -12%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(247, 147, 30, 0.05) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 56px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero-content h1 {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.06;
            letter-spacing: -1.6px;
            margin-bottom: 18px;
            color: var(--text-primary);
        }
        .hero-content h1 .highlight {
            background: linear-gradient(135deg, #e85d3a 0%, #f7931e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content .tagline-meta {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 500px;
            margin-bottom: 28px;
            line-height: 1.75;
        }
        .hero-content .stats {
            display: flex;
            gap: 44px;
            margin-bottom: 34px;
        }
        .hero-content .stats .stat-item {
            text-align: left;
            position: relative;
        }
        .hero-content .stats .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -22px;
            top: 8px;
            width: 1px;
            height: 32px;
            background: rgba(0, 0, 0, 0.06);
        }
        .hero-content .stats .stat-number {
            font-size: 34px;
            font-weight: 700;
            color: var(--brand);
            line-height: 1.05;
            letter-spacing: -0.5px;
        }
        .hero-content .stats .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 3px;
            letter-spacing: 0.2px;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-primary {
            background: linear-gradient(135deg, #e85d3a 0%, #f0844e 100%);
            color: #fff;
            padding: 17px 44px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.3s, background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 9px 34px rgba(232, 93, 58, 0.22);
            letter-spacing: 0.15px;
        }
        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(232, 93, 58, 0.32);
            background: linear-gradient(135deg, #d14f2e 0%, #e8783a 100%);
        }
        .btn-secondary {
            background: #fff;
            color: var(--text-primary);
            padding: 17px 38px;
            border-radius: var(--radius-full);
            font-weight: 500;
            font-size: 15px;
            border: 1px solid rgba(0, 0, 0, 0.07);
            transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.015);
            letter-spacing: 0.15px;
        }
        .btn-secondary:hover {
            background: #fffaf6;
            border-color: rgba(232, 93, 58, 0.22);
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-card {
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.75);
            border-radius: var(--radius-xl);
            padding: 34px 30px 26px;
            width: 100%;
            max-width: 470px;
            box-shadow: 0 34px 70px rgba(0, 0, 0, 0.05);
            transition: transform 0.45s ease, box-shadow 0.45s ease;
        }
        .hero-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
        }
        .hero-card .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .hero-card .card-header .badge {
            background: rgba(232, 93, 58, 0.12);
            color: var(--brand);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 18px;
            border-radius: 40px;
            letter-spacing: 0.4px;
        }
        .hero-card .card-header .dots {
            display: flex;
            gap: 7px;
        }
        .hero-card .card-header .dots span {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }
        .hero-card .card-header .dots span:nth-child(1) {
            background: #ff5f57;
        }
        .hero-card .card-header .dots span:nth-child(2) {
            background: #ffbd2e;
        }
        .hero-card .card-header .dots span:nth-child(3) {
            background: #28c840;
        }
        .hero-card .card-body {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .hero-card .card-body .row {
            display: flex;
            align-items: center;
            gap: 13px;
            background: rgba(0, 0, 0, 0.012);
            padding: 11px 16px;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.025);
            transition: background var(--transition-smooth);
        }
        .hero-card .card-body .row:hover {
            background: rgba(232, 93, 58, 0.03);
        }
        .hero-card .card-body .row .icon {
            font-size: 21px;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(232, 93, 58, 0.07);
            border-radius: 12px;
            flex-shrink: 0;
        }
        .hero-card .card-body .row .text {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }
        .hero-card .card-body .row .text small {
            display: block;
            font-weight: 400;
            color: var(--text-muted);
            font-size: 12px;
        }
        .hero-card .card-footer {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.045);
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.2px;
        }
        .hero-card .card-footer .tag {
            color: var(--brand);
            font-weight: 600;
        }

        /* ── Trust Bar ───────────────── */
        .trust-bar {
            padding: 34px 0 42px;
            background: #fffcf9;
            border-bottom: 1px solid var(--border-soft);
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .trust-bar .logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 44px 64px;
            align-items: center;
        }
        .trust-bar .logos span {
            font-size: 14px;
            font-weight: 500;
            color: rgba(30, 26, 22, 0.28);
            letter-spacing: 1.2px;
            text-transform: uppercase;
            transition: color 0.25s;
            cursor: default;
        }
        .trust-bar .logos span:hover {
            color: rgba(30, 26, 22, 0.5);
        }

        /* ── Features ───────────────── */
        .features {
            padding: 90px 0 70px;
            background: var(--bg-warm);
            border-bottom: 1px solid var(--border-soft);
        }
        .section-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.8px;
            color: var(--brand);
            text-align: center;
            margin-bottom: 8px;
        }
        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -0.6px;
            margin-bottom: 14px;
            color: var(--text-primary);
        }
        .section-sub {
            text-align: center;
            color: var(--text-secondary);
            max-width: 540px;
            margin: 0 auto 52px;
            font-size: 17px;
            line-height: 1.7;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 38px 32px 34px;
            border: 1px solid var(--border-card);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
            box-shadow: var(--shadow-card);
            text-align: center;
            position: relative;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(232, 93, 58, 0.18);
        }
        .feature-card .icon {
            font-size: 38px;
            display: block;
            margin-bottom: 18px;
        }
        .feature-card h3 {
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
        }

        /* ── 新增创意版块：隐私仪表盘 ── */
        .dashboard-section {
            padding: 80px 0 70px;
            background: var(--bg-cream);
            border-bottom: 1px solid var(--border-soft);
            position: relative;
            overflow: hidden;
        }
        .dashboard-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -8%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 93, 58, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            position: relative;
            z-index: 2;
        }
        .dashboard-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            border: 1px solid var(--border-card);
            text-align: center;
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
            box-shadow: var(--shadow-card);
        }
        .dashboard-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .dashboard-card .dash-icon {
            font-size: 32px;
            margin-bottom: 10px;
            display: block;
        }
        .dashboard-card .dash-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--brand);
            letter-spacing: -0.5px;
            line-height: 1;
            margin-bottom: 4px;
            font-family: var(--font-mono);
        }
        .dashboard-card .dash-label {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .dashboard-card .dash-sub {
            font-size: 11px;
            color: rgba(30, 26, 22, 0.25);
            margin-top: 3px;
            letter-spacing: 0.2px;
        }
        .dashboard-card .pulse-dot {
            display: inline-block;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #28c840;
            margin-right: 5px;
            animation: pulse-green 1.8s infinite;
        }
        @keyframes pulse-green {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.45);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(40, 200, 64, 0);
            }
        }

        /* ── 新增创意版块：技术护城河 ── */
        .tech-moat-section {
            padding: 90px 0 80px;
            background: var(--bg-warm);
            border-bottom: 1px solid var(--border-soft);
            position: relative;
        }
        .tech-moat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            position: relative;
            z-index: 2;
        }
        .tech-moat-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 34px 28px 30px;
            border: 1px solid var(--border-card);
            text-align: center;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .tech-moat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--brand), transparent);
            opacity: 0;
            transition: opacity var(--transition-smooth);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }
        .tech-moat-card:hover::after {
            opacity: 1;
        }
        .tech-moat-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .tech-moat-card .moat-icon {
            font-size: 40px;
            display: block;
            margin-bottom: 14px;
        }
        .tech-moat-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }
        .tech-moat-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }
        .tech-moat-card .moat-badge {
            display: inline-block;
            margin-top: 14px;
            background: rgba(232, 93, 58, 0.08);
            color: var(--brand);
            font-size: 11px;
            font-weight: 600;
            padding: 5px 15px;
            border-radius: 40px;
            letter-spacing: 0.5px;
        }

        /* ── Testimonials ───────────────── */
        .testimonials {
            padding: 80px 0 90px;
            background: var(--bg-cream);
            border-bottom: 1px solid var(--border-soft);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 20px;
        }
        .testimonial-item {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 30px 26px;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .testimonial-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .testimonial-item .quote {
            font-size: 16px;
            color: var(--text-primary);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }
        .testimonial-item .quote::before {
            content: '“';
            position: absolute;
            left: 0;
            top: -6px;
            font-size: 38px;
            color: var(--brand);
            font-weight: 700;
            line-height: 1;
            opacity: 0.55;
        }
        .testimonial-item .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-item .author .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e85d3a, #f7931e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            flex-shrink: 0;
        }
        .testimonial-item .author .info {
            font-size: 14px;
        }
        .testimonial-item .author .info .name {
            font-weight: 600;
            color: var(--text-primary);
        }
        .testimonial-item .author .info .role {
            color: var(--text-muted);
            font-size: 12px;
        }

        /* ── CTA ───────────────────── */
        .cta-section {
            padding: 90px 0 100px;
            background: linear-gradient(155deg, #fdfaf7, #f5ede4);
            text-align: center;
            border-top: 1px solid var(--border-soft);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -25%;
            left: 50%;
            transform: translateX(-50%);
            width: 850px;
            height: 420px;
            background: radial-gradient(ellipse, rgba(232, 93, 58, 0.045), transparent 72%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.6px;
            margin-bottom: 12px;
            color: var(--text-primary);
            position: relative;
        }
        .cta-section p {
            color: var(--text-secondary);
            font-size: 18px;
            max-width: 460px;
            margin: 0 auto 34px;
            line-height: 1.7;
            position: relative;
        }
        .cta-section .btn-primary {
            font-size: 16px;
            padding: 19px 56px;
            box-shadow: 0 10px 36px rgba(232, 93, 58, 0.22);
            position: relative;
        }

        /* ── Footer ───────────────────── */
        footer {
            background: #1e1a16;
            color: rgba(255, 255, 255, 0.35);
            padding: 54px 0 34px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        .footer-brand .logo {
            font-size: 22px;
            margin-bottom: 10px;
            color: #fff;
        }
        .footer-brand .logo svg {
            color: var(--brand);
        }
        .footer-brand .logo span {
            color: var(--brand);
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 260px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.35);
        }
        .footer-col h4 {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            margin-bottom: 14px;
            font-weight: 600;
            letter-spacing: 0.2px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 22px;
            margin-top: 34px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.2);
        }
        .footer-bottom .platforms-badge {
            display: flex;
            gap: 18px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
        }
        .footer-bottom .platforms-badge span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ── Responsive ────────────── */
        @media (max-width: 1100px) {
            .dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 44px;
            }
            .hero-content .tagline-meta {
                margin: 0 auto 28px;
                max-width: 480px;
            }
            .hero-content .stats {
                justify-content: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-card {
                max-width: 430px;
                margin: 0 auto;
            }
            .features-grid {
                grid-template-columns: 1fr 1fr;
            }
            .tech-moat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .testimonial-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-content .stats .stat-item:not(:last-child)::after {
                display: none;
            }
            .hero-content .stats {
                gap: 28px;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 16px 0 8px;
                border-top: 1px solid var(--border-soft);
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            .nav-toggle {
                display: flex;
            }
            .hero-content h1 {
                font-size: 38px;
            }
            .hero {
                padding: 56px 0 44px;
            }
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 430px;
                margin: 0 auto;
            }
            .tech-moat-grid {
                grid-template-columns: 1fr;
                max-width: 430px;
                margin: 0 auto;
            }
            .dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
                max-width: 430px;
                margin: 0 auto;
            }
            .section-title {
                font-size: 32px;
            }
            .cta-section h2 {
                font-size: 32px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 26px;
            }
            .hero-content .stats {
                gap: 26px;
                flex-wrap: wrap;
            }
            .hero-content .stats .stat-number {
                font-size: 28px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 18px;
            }
            .hero-content h1 {
                font-size: 29px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 15px 30px;
                font-size: 14px;
                width: 100%;
                justify-content: center;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-card {
                padding: 22px 18px;
            }
            .hero-card .card-body .row {
                padding: 9px 13px;
            }
            .dashboard-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .dashboard-card {
                padding: 20px 14px;
            }
            .dashboard-card .dash-value {
                font-size: 28px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .section-title {
                font-size: 27px;
            }
            .cta-section h2 {
                font-size: 27px;
            }
            .trust-bar .logos {
                gap: 18px 28px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-bottom .platforms-badge {
                flex-wrap: wrap;
                justify-content: center;
            }
        }