﻿/* ===== 全局重置 ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dyse-bg: #0d0c10;
            --dyse-bg-card: rgba(255, 255, 255, 0.03);
            --dyse-primary: #f6b83d;
            --dyse-primary-dim: rgba(246, 184, 61, 0.15);
            --dyse-secondary: #e8822a;
            --dyse-accent: #ff6b35;
            --dyse-text: #f0ede8;
            --dyse-text-dim: rgba(240, 237, 232, 0.5);
            --dyse-border: rgba(246, 184, 61, 0.12);
            --dyse-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            --dyse-radius: 18px;
            --dyse-radius-sm: 10px;
            --dyse-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--dyse-font);
            background: var(--dyse-bg);
            color: var(--dyse-text);
            line-height: 1.7;
            font-weight: 400;
            overflow-x: hidden;
        }

        .dyse-wrap {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .dyse-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ===== 顶部导航 — 底部固定式 ===== */
        .dyse-header {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0 16px;
            background: rgba(13, 12, 16, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--dyse-border);
            transition: background 0.3s;
        }

        .dyse-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 16px;
        }

        .dyse-brand {
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: -0.4px;
            color: var(--dyse-text);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dyse-brand span {
            color: var(--dyse-primary);
        }

        .dyse-brand small {
            font-size: 0.6rem;
            font-weight: 500;
            color: var(--dyse-text-dim);
            letter-spacing: 0.3px;
            background: var(--dyse-primary-dim);
            padding: 2px 12px;
            border-radius: 40px;
            border: 1px solid var(--dyse-border);
        }

        .dyse-nav-links {
            display: flex;
            align-items: center;
            gap: 6px 20px;
            flex-wrap: wrap;
            list-style: none;
        }

        .dyse-nav-links a {
            color: var(--dyse-text-dim);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: color 0.25s;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }

        .dyse-nav-links a:hover {
            color: var(--dyse-text);
            border-bottom-color: var(--dyse-primary);
        }

        .dyse-nav-cta {
            background: var(--dyse-primary);
            color: #0d0c10 !important;
            padding: 6px 20px !important;
            border-radius: 40px;
            font-weight: 700 !important;
            border-bottom: none !important;
            transition: background 0.25s, transform 0.2s;
            font-size: 0.8rem !important;
        }

        .dyse-nav-cta:hover {
            background: #facc6b !important;
            transform: scale(1.03);
            border-bottom: none !important;
            color: #0d0c10 !important;
        }

        /* ===== Hero — 倾斜分割 ===== */
        .dyse-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 70px 0 100px;
            position: relative;
            background:
                radial-gradient(ellipse at 70% 20%, rgba(246, 184, 61, 0.07) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 80%, rgba(232, 130, 42, 0.05) 0%, transparent 45%),
                var(--dyse-bg);
            overflow: hidden;
        }

        .dyse-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 55%;
            height: 70%;
            background: linear-gradient(135deg, transparent 45%, var(--dyse-primary-dim) 100%);
            clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
            opacity: 0.25;
            pointer-events: none;
        }

        .dyse-hero-grid {
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            gap: 50px 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .dyse-hero-content h1 {
            font-size: clamp(2.4rem, 7vw, 4.2rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            color: var(--dyse-text);
            margin-bottom: 16px;
        }

        .dyse-hero-content h1 .dyse-highlight {
            background: linear-gradient(135deg, var(--dyse-primary), var(--dyse-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dyse-hero-badge {
            display: inline-block;
            background: var(--dyse-primary-dim);
            color: var(--dyse-primary);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 18px;
            border-radius: 40px;
            border: 1px solid var(--dyse-border);
            margin-bottom: 14px;
        }

        .dyse-hero-desc {
            font-size: 1.05rem;
            color: var(--dyse-text-dim);
            max-width: 500px;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .dyse-hero-desc strong {
            color: var(--dyse-text);
            font-weight: 600;
        }

        .dyse-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 18px;
            align-items: center;
        }

        .dyse-btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--dyse-primary), var(--dyse-secondary));
            color: #0d0c10;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: transform 0.25s, box-shadow 0.3s;
            box-shadow: 0 4px 28px rgba(246, 184, 61, 0.25);
            border: none;
            cursor: pointer;
        }

        .dyse-btn-primary:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 8px 48px rgba(246, 184, 61, 0.35);
        }

        .dyse-btn-secondary {
            display: inline-block;
            color: var(--dyse-text-dim);
            padding: 14px 30px;
            border-radius: 60px;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            border: 2px solid var(--dyse-border);
            transition: color 0.25s, border-color 0.25s;
            background: transparent;
        }

        .dyse-btn-secondary:hover {
            color: var(--dyse-text);
            border-color: var(--dyse-primary);
        }

        /* Hero 右侧 — 浮动卡片组 */
        .dyse-hero-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            position: relative;
        }

        .dyse-hero-card {
            background: var(--dyse-bg-card);
            border-radius: var(--dyse-radius);
            padding: 24px 20px 22px;
            border: 1px solid var(--dyse-border);
            backdrop-filter: blur(6px);
            transition: background 0.3s, transform 0.25s, border-color 0.3s;
        }

        .dyse-hero-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(246, 184, 61, 0.25);
            transform: translateY(-4px);
        }

        .dyse-hero-card:nth-child(1) {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
        }
        .dyse-hero-card:nth-child(2) {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
            margin-top: 30px;
        }
        .dyse-hero-card:nth-child(3) {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
        }

        .dyse-hero-card .dyse-card-icon {
            font-size: 1.8rem;
            display: block;
            margin-bottom: 6px;
        }

        .dyse-hero-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dyse-text);
            letter-spacing: -0.2px;
        }

        .dyse-hero-card p {
            font-size: 0.85rem;
            color: var(--dyse-text-dim);
            line-height: 1.6;
            margin-top: 2px;
        }

        .dyse-hero-card .dyse-card-tag {
            display: inline-block;
            font-size: 0.55rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--dyse-primary);
            background: var(--dyse-primary-dim);
            padding: 2px 12px;
            border-radius: 40px;
            margin-top: 6px;
            border: 1px solid var(--dyse-border);
        }

        /* ===== 特点展示 ===== */
        .dyse-features {
            padding: 80px 0 70px;
            border-top: 1px solid var(--dyse-border);
            border-bottom: 1px solid var(--dyse-border);
            background: rgba(13, 12, 16, 0.6);
            position: relative;
        }

        .dyse-features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--dyse-primary), transparent);
            opacity: 0.3;
        }

        .dyse-features-head {
            text-align: center;
            margin-bottom: 50px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .dyse-features-head h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dyse-text);
        }

        .dyse-features-head h2 span {
            color: var(--dyse-primary);
        }

        .dyse-features-head p {
            color: var(--dyse-text-dim);
            font-size: 1.05rem;
            margin-top: 10px;
            line-height: 1.7;
        }

        .dyse-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .dyse-feature-item {
            background: var(--dyse-bg-card);
            border-radius: var(--dyse-radius);
            padding: 32px 26px 28px;
            border: 1px solid var(--dyse-border);
            transition: border-color 0.3s, transform 0.25s, background 0.3s;
            position: relative;
            overflow: hidden;
        }

        .dyse-feature-item:hover {
            border-color: rgba(246, 184, 61, 0.20);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-3px);
        }

        .dyse-feature-item .dyse-f-icon {
            font-size: 2.2rem;
            display: block;
            margin-bottom: 12px;
        }

        .dyse-feature-item h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dyse-text);
            margin-bottom: 6px;
            letter-spacing: -0.2px;
        }

        .dyse-feature-item p {
            color: var(--dyse-text-dim);
            font-size: 0.93rem;
            line-height: 1.7;
        }

        .dyse-feature-item .dyse-f-meta {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: var(--dyse-primary);
            background: var(--dyse-primary-dim);
            padding: 2px 14px;
            border-radius: 40px;
            margin-top: 10px;
            border: 1px solid var(--dyse-border);
        }

        /* ===== 流程区 — 竖向时间轴 ===== */
        .dyse-process {
            padding: 80px 0 70px;
            background: var(--dyse-bg);
            border-bottom: 1px solid var(--dyse-border);
        }

        .dyse-process-head {
            text-align: center;
            margin-bottom: 50px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .dyse-process-head h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dyse-text);
        }

        .dyse-process-head h2 span {
            color: var(--dyse-primary);
        }

        .dyse-process-head p {
            color: var(--dyse-text-dim);
            font-size: 1.05rem;
            margin-top: 8px;
        }

        .dyse-timeline {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 48px;
        }

        .dyse-timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 8px;
            bottom: 8px;
            width: 3px;
            background: linear-gradient(to bottom, var(--dyse-primary), var(--dyse-accent), var(--dyse-primary));
            opacity: 0.25;
            border-radius: 4px;
        }

        .dyse-timeline-item {
            display: flex;
            gap: 28px;
            padding: 22px 0 22px 20px;
            position: relative;
            border-bottom: 1px solid var(--dyse-border);
        }

        .dyse-timeline-item:last-child {
            border-bottom: none;
        }

        .dyse-timeline-item::before {
            content: '';
            position: absolute;
            left: -38px;
            top: 30px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--dyse-primary);
            border: 3px solid var(--dyse-bg);
            box-shadow: 0 0 0 4px var(--dyse-primary-dim);
        }

        .dyse-timeline-item:nth-child(2)::before {
            background: var(--dyse-secondary);
            box-shadow: 0 0 0 4px rgba(232, 130, 42, 0.20);
        }
        .dyse-timeline-item:nth-child(3)::before {
            background: var(--dyse-accent);
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.20);
        }
        .dyse-timeline-item:nth-child(4)::before {
            background: #34d399;
            box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.20);
        }

        .dyse-timeline-num {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--dyse-primary);
            background: var(--dyse-primary-dim);
            padding: 2px 14px;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 2px;
            letter-spacing: 0.5px;
            border: 1px solid var(--dyse-border);
        }

        .dyse-timeline-item h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dyse-text);
            margin-bottom: 2px;
            letter-spacing: -0.2px;
        }

        .dyse-timeline-item p {
            color: var(--dyse-text-dim);
            font-size: 0.93rem;
            line-height: 1.7;
            max-width: 520px;
        }

        /* ===== 价格 — 非对称堆叠 ===== */
        .dyse-pricing {
            padding: 80px 0 70px;
            background: rgba(13, 12, 16, 0.7);
            border-bottom: 1px solid var(--dyse-border);
        }

        .dyse-pricing-head {
            text-align: center;
            margin-bottom: 50px;
        }

        .dyse-pricing-head h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dyse-text);
        }

        .dyse-pricing-head h2 span {
            color: var(--dyse-primary);
        }

        .dyse-pricing-head p {
            color: var(--dyse-text-dim);
            font-size: 1.05rem;
            margin-top: 8px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .dyse-pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr 1fr;
            gap: 28px;
            align-items: stretch;
        }

        .dyse-price-card {
            background: var(--dyse-bg-card);
            border-radius: var(--dyse-radius);
            padding: 32px 26px 30px;
            border: 1px solid var(--dyse-border);
            transition: border-color 0.3s, transform 0.25s, background 0.3s;
            display: flex;
            flex-direction: column;
        }

        .dyse-price-card:hover {
            border-color: rgba(246, 184, 61, 0.20);
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.03);
        }

        .dyse-price-card.dyse-popular {
            border-color: var(--dyse-primary);
            background: var(--dyse-primary-dim);
            position: relative;
        }

        .dyse-price-card.dyse-popular::after {
            content: '⚡ 推荐';
            position: absolute;
            top: -1px;
            right: 24px;
            background: linear-gradient(135deg, var(--dyse-primary), var(--dyse-secondary));
            color: #0d0c10;
            font-size: 0.65rem;
            font-weight: 800;
            padding: 4px 18px;
            border-radius: 0 0 12px 12px;
            letter-spacing: 0.5px;
        }

        .dyse-price-name {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--dyse-text-dim);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 4px;
        }

        .dyse-price-amount {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--dyse-text);
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .dyse-price-amount small {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--dyse-text-dim);
        }

        .dyse-price-desc {
            color: var(--dyse-text-dim);
            font-size: 0.88rem;
            margin: 10px 0 18px;
            line-height: 1.6;
            flex: 1;
        }

        .dyse-price-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }

        .dyse-price-features li {
            padding: 6px 0;
            color: var(--dyse-text-dim);
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--dyse-border);
        }

        .dyse-price-features li:last-child {
            border-bottom: none;
        }

        .dyse-price-features li::before {
            content: '✦';
            color: var(--dyse-primary);
            font-size: 0.6rem;
            font-weight: 700;
        }

        .dyse-price-card .dyse-btn-primary {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            font-size: 0.95rem;
            background: var(--dyse-primary);
            box-shadow: 0 4px 20px rgba(246, 184, 61, 0.15);
        }

        .dyse-price-card .dyse-btn-primary:hover {
            box-shadow: 0 8px 36px rgba(246, 184, 61, 0.25);
        }

        .dyse-price-card.dyse-popular .dyse-btn-primary {
            background: linear-gradient(135deg, var(--dyse-primary), var(--dyse-secondary));
            box-shadow: 0 4px 28px rgba(246, 184, 61, 0.30);
        }

        .dyse-price-card.dyse-popular .dyse-btn-primary:hover {
            box-shadow: 0 8px 48px rgba(246, 184, 61, 0.40);
        }

        /* ===== FAQ ===== */
        .dyse-faq {
            padding: 80px 0 100px;
            background: var(--dyse-bg);
        }

        .dyse-faq-head {
            text-align: center;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .dyse-faq-head h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dyse-text);
        }

        .dyse-faq-head h2 span {
            color: var(--dyse-primary);
        }

        .dyse-faq-head p {
            color: var(--dyse-text-dim);
            font-size: 1.05rem;
            margin-top: 8px;
        }

        .dyse-faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dyse-faq-item {
            background: var(--dyse-bg-card);
            border-radius: var(--dyse-radius-sm);
            border: 1px solid var(--dyse-border);
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .dyse-faq-item:hover {
            border-color: rgba(246, 184, 61, 0.15);
        }

        .dyse-faq-check {
            display: none;
        }

        .dyse-faq-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--dyse-text);
            transition: background 0.2s;
            user-select: none;
            gap: 16px;
        }

        .dyse-faq-label:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .dyse-faq-label .dyse-faq-arrow {
            font-size: 0.9rem;
            color: var(--dyse-primary);
            transition: transform 0.3s;
            flex-shrink: 0;
            font-weight: 300;
        }

        .dyse-faq-check:checked+.dyse-faq-label .dyse-faq-arrow {
            transform: rotate(180deg);
        }

        .dyse-faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
        }

        .dyse-faq-check:checked~.dyse-faq-body {
            max-height: 500px;
            padding: 0 24px 22px;
        }

        .dyse-faq-body p {
            color: var(--dyse-text-dim);
            font-size: 0.93rem;
            line-height: 1.8;
            margin: 0;
        }

        .dyse-faq-body p strong {
            color: var(--dyse-text);
            font-weight: 600;
        }

        /* ===== Footer ===== */
        .dyse-footer {
            padding: 30px 0 100px;
            border-top: 1px solid var(--dyse-border);
            background: var(--dyse-bg);
        }

        .dyse-footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px 28px;
        }

        .dyse-footer-copy {
            color: var(--dyse-text-dim);
            font-size: 0.8rem;
        }

        .dyse-footer-copy strong {
            color: var(--dyse-text);
            font-weight: 600;
        }

        .dyse-footer-links {
            display: flex;
            gap: 16px 28px;
            flex-wrap: wrap;
            list-style: none;
        }

        .dyse-footer-links a {
            color: var(--dyse-text-dim);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.25s;
        }

        .dyse-footer-links a:hover {
            color: var(--dyse-text);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .dyse-hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dyse-hero-content h1 {
                font-size: clamp(2rem, 6vw, 3.2rem);
            }

            .dyse-hero-cards {
                max-width: 520px;
                margin: 0 auto;
            }

            .dyse-features-grid {
                grid-template-columns: 1fr 1fr;
            }

            .dyse-features-grid .dyse-feature-item:last-child {
                grid-column: 1 / -1;
                max-width: 460px;
                margin: 0 auto;
                width: 100%;
            }

            .dyse-pricing-grid {
                grid-template-columns: 1fr 1fr;
            }

            .dyse-pricing-grid .dyse-price-card:last-child {
                grid-column: 1 / -1;
                max-width: 420px;
                margin: 0 auto;
                width: 100%;
            }

            .dyse-header {
                bottom: 0;
                top: auto;
            }

            .dyse-footer {
                padding-bottom: 100px;
            }
        }

        @media (max-width: 820px) {
            .dyse-hero-cards {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .dyse-hero-card:nth-child(1),
            .dyse-hero-card:nth-child(2),
            .dyse-hero-card:nth-child(3) {
                grid-column: auto;
                grid-row: auto;
                margin-top: 0;
            }

            .dyse-hero-card:nth-child(2) {
                margin-top: 0;
            }

            .dyse-features-grid {
                grid-template-columns: 1fr;
                max-width: 460px;
                margin: 0 auto;
            }

            .dyse-features-grid .dyse-feature-item:last-child {
                grid-column: auto;
                max-width: 100%;
            }

            .dyse-pricing-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin: 0 auto;
            }

            .dyse-pricing-grid .dyse-price-card:last-child {
                grid-column: auto;
                max-width: 100%;
            }

            .dyse-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }

            .dyse-nav-links {
                justify-content: center;
                gap: 4px 14px;
            }

            .dyse-brand {
                justify-content: center;
            }

            .dyse-nav-links a {
                font-size: 0.75rem;
            }

            .dyse-hero-actions .dyse-btn-primary,
            .dyse-hero-actions .dyse-btn-secondary {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
            }

            .dyse-timeline {
                padding-left: 32px;
            }

            .dyse-timeline-item {
                padding-left: 12px;
            }

            .dyse-timeline-item::before {
                left: -26px;
                width: 14px;
                height: 14px;
            }

            .dyse-timeline::before {
                left: 6px;
            }

            .dyse-hero {
                min-height: auto;
                padding: 60px 0 80px;
            }

            .dyse-footer {
                padding-bottom: 100px;
            }
        }

        @media (max-width: 480px) {
            .dyse-wrap {
                padding: 0 16px;
            }

            .dyse-hero-content h1 {
                font-size: 1.8rem;
            }

            .dyse-hero-badge {
                font-size: 0.6rem;
                padding: 2px 14px;
            }

            .dyse-hero-card {
                padding: 18px 16px;
            }

            .dyse-hero-card h3 {
                font-size: 0.9rem;
            }

            .dyse-feature-item {
                padding: 24px 18px;
            }

            .dyse-price-card {
                padding: 24px 18px;
            }

            .dyse-price-amount {
                font-size: 2rem;
            }

            .dyse-faq-label {
                padding: 14px 16px;
                font-size: 0.9rem;
            }

            .dyse-faq-body {
                padding: 0 16px;
            }

            .dyse-faq-check:checked~.dyse-faq-body {
                padding: 0 16px 18px;
            }

            .dyse-nav-links {
                gap: 4px 10px;
            }

            .dyse-nav-links a {
                font-size: 0.7rem;
            }

            .dyse-brand {
                font-size: 0.95rem;
            }

            .dyse-brand small {
                font-size: 0.5rem;
            }

            .dyse-timeline-item {
                padding: 16px 0 16px 8px;
            }

            .dyse-timeline-item::before {
                left: -22px;
                width: 12px;
                height: 12px;
            }

            .dyse-timeline {
                padding-left: 24px;
            }

            .dyse-timeline-item h3 {
                font-size: 1rem;
            }

            .dyse-footer-inner {
                flex-direction: column;
                text-align: center;
            }

            .dyse-footer-links {
                justify-content: center;
            }
        }

        @media (max-width: 380px) {
            .dyse-nav-links {
                gap: 3px 6px;
            }

            .dyse-nav-links a {
                font-size: 0.65rem;
            }

            .dyse-brand {
                font-size: 0.85rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .dyse-hero-content h1 {
                font-size: 1.5rem;
            }

            .dyse-hero-desc {
                font-size: 0.9rem;
            }
        }
