/* =============================================
   DEALGLITCH — SERVERDEAL LANDING PAGE
   Clean, modern, professional
   ============================================= */

:root {
    --primary: #6C3CE1;
    --primary-light: #8B5CF6;
    --primary-dark: #5227CC;
    --accent: #00D4AA;
    --bg: #0A0A0F;
    --bg-card: #12121A;
    --bg-section: #0E0E16;
    --text: #E8E8F0;
    --text-muted: #8888A0;
    --border: #1E1E2E;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-deal {
    color: var(--white);
}

.logo-glitch {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.btn-nav {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.btn-nav:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* =============================================
   HERO
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(108, 60, 225, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-full {
    width: 100%;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-icon {
    color: var(--accent);
    font-weight: bold;
}

/* =============================================
   SECTIONS
   ============================================= */

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-section);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   CARDS / GRID
   ============================================= */

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

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(108, 60, 225, 0.1);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(108, 60, 225, 0.08) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
}

.price-card-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1;
}

.grid-3.mobile-swipe > *:first-child {
    margin-left: 4px;
}

.grid-3.mobile-swipe > *:last-child {
    margin-right: 4px;
}

.grid-3.mobile-swipe {
    padding-top: 16px;
}

.grid-2.mobile-swipe {
    padding-top: 16px;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: -2px;
}

.price-currency {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    vertical-align: super;
}

.price-period {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* =============================================
   WARUM WIR
   ============================================= */

.reason {
    padding: 32px;
}

.reason-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 8px;
}

.reason h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reason p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   BRANCHEN
   ============================================= */

.branchen {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.branche {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.branche:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

/* =============================================
   KONTAKT FORM
   ============================================= */

.kontakt-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

.form-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.footer a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* =============================================
   PRICE TOGGLE
   ============================================= */

.toggle-container {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--white);
}

.toggle-btn:hover:not(.active) {
    color: var(--text);
}

/* =============================================
   CHECKOUT
   ============================================= */

.checkout-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.step.active {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(108, 60, 225, 0.1);
}

.checkout-step h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.package-select {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.package-option input { display: none; }

.package-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.package-option input:checked + .package-box {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.08);
}

.package-box:hover { border-color: var(--primary-light); }

.package-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--primary);
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.package-price {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 16px;
}

.package-detail {
    color: var(--text-muted);
    font-size: 13px;
}

.checkout-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.summary-total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.auth-tab.active {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(108, 60, 225, 0.1);
}

.error-msg {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff6666;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 12px;
}

.briefing-options {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.briefing-option { flex: 1; }
.briefing-option input { display: none; }

.briefing-box {
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
}

.briefing-option input:checked + .briefing-box {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.08);
}

.briefing-box p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

.calendar-grid { margin-bottom: 20px; }

.calendar-day {
    margin-bottom: 16px;
}

.calendar-day h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}

.time-slots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.time-slot {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
}

.time-slot:hover { border-color: var(--primary-light); }
.time-slot.selected {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.2);
    color: var(--primary-light);
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th, .orders-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.orders-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-bestellt { background: rgba(255, 200, 0, 0.15); color: #FFD000; }
.status-bezahlt { background: rgba(50, 150, 255, 0.15); color: #5599FF; }
.status-in_bearbeitung { background: rgba(150, 50, 255, 0.15); color: #AA77FF; }
.status-geliefert { background: rgba(50, 200, 100, 0.15); color: #44CC77; }
.status-storniert { background: rgba(255, 50, 50, 0.15); color: #FF5555; }

/* =============================================
   BEISPIEL WEBSITES
   ============================================= */

.beispiel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.beispiel-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(108, 60, 225, 0.1);
}

.beispiel-preview {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #08080d;
}

.iframe-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 1400px;
    height: 960px;
    transform: scale(0.265);
    transform-origin: 0 0;
    pointer-events: none;
}

.iframe-wrap iframe {
    width: 1400px;
    height: 960px;
    border: none;
    display: block;
    background: #08080d;
}

.beispiel-card h3 {
    padding: 16px 20px 6px;
    font-size: 17px;
    font-weight: 700;
}

.beispiel-card p {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-stars {
    color: #FFD000;
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}

.testimonial-author strong {
    color: var(--text);
    font-size: 14px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 13px;
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    z-index: 9999;
    backdrop-filter: blur(20px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
    white-space: nowrap;
}

/* =============================================
   LEGAL PAGES (AGB, Impressum, Datenschutz)
   ============================================= */

.legal-page {
    padding: 120px 24px 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* =============================================
   SWIPE CAROUSEL (Mobile)
   ============================================= */

.swipe-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.swipe-carousel::-webkit-scrollbar {
    display: none;
}

.swipe-carousel > * {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 85%;
    max-width: 340px;
}

.swipe-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.swipe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.swipe-dot.active {
    background: var(--primary-light);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 968px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .grid-3.mobile-swipe {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }

    .grid-3.mobile-swipe::-webkit-scrollbar {
        display: none;
    }

    .grid-3.mobile-swipe > * {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 85%;
        max-width: 340px;
    }

    .grid-2.mobile-swipe {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }

    .grid-2.mobile-swipe::-webkit-scrollbar {
        display: none;
    }

    .grid-2.mobile-swipe > * {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 85%;
        max-width: 340px;
    }

    .swipe-dots {
        display: flex;
    }

    .price-card-featured {
        transform: scale(1);
    }

    .price-card-featured:hover {
        transform: translateY(-4px);
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .toggle-container {
        max-width: 100%;
    }

    .toggle-btn {
        font-size: 12px;
        padding: 10px 12px;
    }

    .checkout-steps {
        gap: 4px;
    }

    .step {
        font-size: 11px;
        padding: 10px 6px;
    }

    .orders-table th,
    .orders-table td {
        font-size: 12px;
        padding: 8px 6px;
    }

    .briefing-options {
        flex-direction: column;
    }

    .swipe-hint {
        display: block;
        text-align: center;
        color: var(--text-muted);
        font-size: 12px;
        margin-top: -8px;
        margin-bottom: 16px;
    }
}

.swipe-hint {
    display: none;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

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

    .mobile-menu {
        display: block;
    }

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

    .hero-sub {
        font-size: 16px;
    }

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

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-sub {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .price-amount {
        font-size: 40px;
    }

    .card {
        padding: 24px;
    }

    .beispiel-preview {
        height: 160px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
