:root {
            --bg-primary: #f8fafc;
            --bg-secondary: #ffffff;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-light: #94a3b8;
            --border-color: #e2e8f0;
            --holo-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 30%, #a855f7 70%, #ec4899 100%);
            --holo-light: linear-gradient(135deg, rgba(0,242,254,0.1) 0%, rgba(79,172,254,0.1) 30%, rgba(168,85,247,0.1) 70%, rgba(236,72,153,0.1) 100%);
            --holo-btn: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
            --radius: 12px;
            --max-width: 1200px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 9999px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--holo-gradient);
            background-size: 200% 200%;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
            animation: holo-glow 6s ease infinite;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
            background-position: right center;
        }

        .btn-secondary {
            background: #ffffff;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            border-color: #a855f7;
            color: #a855f7;
            transform: translateY(-2px);
        }

        /* 顶部导航 */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ai-page-logo {
            height: 40px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 6px 12px;
            border-radius: 6px;
        }

        .nav-link:hover {
            color: #a855f7;
            background: rgba(168, 85, 247, 0.05);
        }

        .nav-btn-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* 移动端菜单按钮 */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            margin: 6px 0;
            transition: 0.3s;
        }

        /* Hero首屏 */
        .hero {
            padding-top: 150px;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, rgba(236, 72, 153, 0.05) 90%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 880px;
            margin: 0 auto;
        }

        .hero-tag {
            display: inline-block;
            padding: 6px 16px;
            background: var(--holo-light);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 600;
            color: #a855f7;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .hero h1 span {
            background: var(--holo-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        /* 统一的 Section 样式 */
        section {
            padding: 80px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px auto;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: var(--holo-gradient);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-secondary);
        }

        /* 数据指标卡片 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: -20px;
        }

        .stat-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(168, 85, 247, 0.3);
        }

        .stat-card .num {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 8px;
            background: var(--holo-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-card .label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* 服务能力卡片 (全平台AIGC服务 & 一站式制作) */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--holo-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(0, 242, 254, 0.2);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--holo-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #a855f7;
            font-size: 24px;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* 平台标签云 */
        .platform-wrap {
            margin-top: 40px;
            padding: 30px;
            background: var(--bg-secondary);
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
        }

        .platform-title {
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-secondary);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .tag {
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 9999px;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--holo-light);
            border-color: rgba(168, 85, 247, 0.3);
            color: #a855f7;
            transform: scale(1.05);
        }

        /* 标准化AIGC流程 - 时间线 */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border-color);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 20px 40px;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-badge {
            position: absolute;
            top: 25px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffffff;
            border: 4px solid #a855f7;
            z-index: 2;
        }

        .timeline-item:nth-child(odd) .timeline-badge {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-badge {
            left: -10px;
        }

        .timeline-content {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            padding: 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .timeline-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .timeline-content p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* 案例展示区 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .case-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .case-img-container {
            width: 100%;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: var(--border-color);
        }

        .case-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .case-card:hover .case-img-container img {
            transform: scale(1.05);
        }

        .case-info {
            padding: 24px;
        }

        .case-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: #a855f7;
            background: var(--holo-light);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .case-info h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .case-info p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* 对比评测表格 */
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 700px;
        }

        .comparison-table th, .comparison-table td {
            padding: 16px 24px;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
        }

        .comparison-table th {
            background: var(--bg-primary);
            font-weight: 600;
            color: var(--text-primary);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr.highlight {
            background: rgba(168, 85, 247, 0.02);
        }

        .comparison-table tr.highlight td:first-child {
            border-left: 4px solid #a855f7;
        }

        .badge-star {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #eab308;
            font-weight: bold;
        }

        .badge-score {
            display: inline-block;
            padding: 2px 8px;
            background: var(--holo-light);
            color: #a855f7;
            font-weight: bold;
            border-radius: 4px;
        }

        /* FAQ 折叠面板 */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-header {
            width: 100%;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .faq-icon {
            font-size: 20px;
            color: var(--text-light);
            transition: transform 0.3s ease;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fafafa;
        }

        .faq-content p {
            padding: 0 24px 20px 24px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .faq-item.active {
            border-color: #a855f7;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: #a855f7;
        }

        /* 客户评论卡片 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .review-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .review-card::after {
            content: "“";
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 64px;
            color: rgba(168, 85, 247, 0.05);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--holo-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #a855f7;
        }

        .review-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .review-info p {
            font-size: 12px;
            color: var(--text-light);
        }

        /* 表单区域 */
        .form-section {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group-full {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-control {
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: #a855f7;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* 资讯与知识库 */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .article-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-3px);
            border-color: #a855f7;
            box-shadow: var(--shadow-md);
        }

        .article-card h3 {
            font-size: 16px;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .article-card a {
            color: var(--text-primary);
        }

        .article-card a:hover {
            color: #a855f7;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-light);
            margin-top: 16px;
        }

        .hidden-data-tag {
            display: none;
        }

        /* 联系我们 & 二维码 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            background: var(--holo-light);
            color: #a855f7;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
        }

        .contact-item h4 {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .contact-item p {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .qr-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .qr-card img {
            width: 150px;
            height: 150px;
            margin-bottom: 16px;
            border-radius: 8px;
        }

        .qr-card p {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        /* 加盟代理与培训板块 */
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
        }

        .highlight-box h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        /* 页脚 */
        .footer {
            background: #0f172a;
            color: #f8fafc;
            padding: 60px 0 30px 0;
            border-top: 1px solid #1e293b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            background: var(--holo-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-brand p {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 20px;
        }

        .footer-links h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: #94a3b8;
        }

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

        .friend-links {
            border-top: 1px solid #1e293b;
            padding-top: 20px;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
        }

        .friend-links a {
            color: #64748b;
        }

        .friend-links a:hover {
            color: #a855f7;
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #64748b;
        }

        /* 浮动组件 */
        .floating-action {
            position: fixed;
            bottom: 40px;
            right: 40px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .float-btn {
            width: 50px;
            height: 50px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .float-btn:hover {
            transform: translateY(-2px);
            border-color: #a855f7;
        }

        .float-btn .tooltip {
            position: absolute;
            right: 60px;
            background: #0f172a;
            color: #fff;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .float-btn:hover .tooltip {
            opacity: 1;
        }

        .float-btn img {
            width: 24px;
            height: 24px;
        }

        /* 动画基础 */
        @keyframes holo-glow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .stats-grid, .service-grid, .case-grid, .reviews-grid, .article-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #ffffff;
                border-bottom: 1px solid var(--border-color);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
                box-shadow: var(--shadow-md);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -7px);
            }

            .hero h1 {
                font-size: 32px;
            }

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

            .service-grid, .case-grid, .reviews-grid, .article-grid {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 50px;
                padding-right: 0;
            }

            .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
                left: 0;
                text-align: left;
            }

            .timeline-item:nth-child(odd) .timeline-badge, .timeline-item:nth-child(even) .timeline-badge {
                left: 10px;
            }

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

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

            .form-group-full {
                grid-column: span 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .floating-action {
                bottom: 20px;
                right: 20px;
            }
        }