/* ========================================
   DisProX Landing Page — Shared Styles
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #10b981;
    --accent-dark: #059669;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-soft: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);
    --gradient-green: linear-gradient(135deg, #10b981, #059669);
    --text: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* fallback */
    overflow-x: clip;
    max-width: 100vw;
}
section { overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Floating mockup animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.mockup-float {
    animation: float 6s ease-in-out infinite;
}
.mockup-float.mockup-tilt:hover {
    animation-play-state: paused;
}

/* Gradient glow behind mockups */
.mockup-glow {
    position: relative;
}
.mockup-glow::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -8%;
    right: -8%;
    bottom: -8%;
    background: radial-gradient(ellipse at 50% 50%, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.12) 40%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

/* Pulse for LIVE badges */
@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.pulse-live {
    animation: pulse-live 2s ease-in-out infinite;
}

/* Animated gradient border */
@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.gradient-border {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, #667eea, #764ba2, #10b981, #667eea);
    background-size: 300% 300%;
    animation: gradient-rotate 4s ease infinite;
    z-index: -1;
}

/* Shimmer effect for stats */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.shimmer-text {
    background: linear-gradient(90deg, var(--primary) 0%, #a78bfa 25%, var(--primary) 50%, #a78bfa 75%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Subtle tilt on hover for mockup windows */
.mockup-tilt,
.feature-detail .mockup-window {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mockup-tilt:hover,
.feature-detail .mockup-window:hover {
    transform: perspective(800px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
}

/* Number counter highlight */
.counter-highlight {
    display: inline-block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* Kennzahlen section */
.metrics-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.metrics-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(102,126,234,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(118,75,162,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.metrics-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.metric-item {
    text-align: center;
    padding: 2rem 1rem;
}
.metric-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.metric-value .accent { color: var(--accent); }
.metric-value .primary { color: var(--primary); }
.metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}
.metric-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
}
.metric-divider {
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* CTA banner enhanced */
.cta-enhanced {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradient-rotate 8s ease infinite;
}
.cta-enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Floating decorative dots */
.deco-dots {
    position: relative;
}
.deco-dots::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(102,126,234,0.2) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    opacity: 0.5;
}

/* "Neu" ribbon for features */
.ribbon-new {
    position: absolute;
    top: 12px;
    right: -8px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 3px 0 0 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
}
.ribbon-new::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border: 4px solid transparent;
    border-top-color: var(--primary-dark);
    border-right-color: var(--primary-dark);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 2rem;
}

.navbar.solid {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary) !important;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: var(--bg-alt);
    color: var(--primary) !important;
}

.nav-dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.9rem; }

/* ========== SECTIONS ========== */
section { padding: 6rem 2rem; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== PAGE HERO (Feature Pages) ========== */
.page-hero {
    padding: 10rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(102,126,234,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 1.25rem;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ========== MOCKUP COMPONENTS ========== */
.mockup-window {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: var(--shadow-xl);
}

.mockup-bar {
    display: flex;
    gap: 6px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-content {
    background: linear-gradient(135deg, #1a1f36, #151929);
    border-radius: 8px;
    padding: 1.25rem;
    min-height: 300px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-title { color: #e2e8f0; font-weight: 700; font-size: 0.9rem; }

.mockup-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.mockup-badge-green { background: rgba(16,185,129,0.15); color: #10b981; }
.mockup-badge-blue { background: rgba(59,130,246,0.15); color: #3b82f6; }

.mockup-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    background: rgba(255,255,255,0.04);
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border-left: 3px solid transparent;
    margin-bottom: 0.4rem;
}

.mockup-row .time {
    color: #a0aec0;
    font-size: 0.73rem;
    font-weight: 600;
    font-family: 'SF Mono', 'Fira Code', monospace;
    min-width: 38px;
}

.mockup-row .name { color: #e2e8f0; font-size: 0.78rem; font-weight: 500; flex: 1; }

.mockup-row .status {
    font-size: 0.63rem;
    font-weight: 600;
    padding: 0.12rem 0.45rem;
    border-radius: 100px;
}

.s-green { background: rgba(16,185,129,0.15); color: #10b981; }
.s-blue { background: rgba(59,130,246,0.15); color: #3b82f6; }
.s-amber { background: rgba(245,158,11,0.15); color: #f59e0b; }
.s-red { background: rgba(239,68,68,0.15); color: #ef4444; }
.s-purple { background: rgba(102,126,234,0.15); color: #667eea; }

.bl-green { border-left-color: #10b981; }
.bl-blue { border-left-color: #3b82f6; }
.bl-amber { border-left-color: #f59e0b; }
.bl-red { border-left-color: #ef4444; }
.bl-purple { border-left-color: #667eea; }

/* Mockup stat cards */
.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mockup-stat {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.mockup-stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #e2e8f0;
}

.mockup-stat-label {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 500;
}

/* Mockup sidebar */
.mockup-with-sidebar {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0;
}

.mockup-sidebar {
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.mockup-sidebar-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.mockup-sidebar-icon.active {
    opacity: 1;
    background: rgba(102,126,234,0.2);
}

.mockup-main { padding: 1rem; }

/* ========== FEATURE SECTIONS ========== */
.feature-detail {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-detail.reversed { direction: rtl; }
.feature-detail.reversed > * { direction: ltr; }

.feature-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.feature-detail-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== FEATURE CARDS ========== */
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102,126,234,0.2);
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.fi-blue { background: rgba(59,130,246,0.1); }
.fi-green { background: rgba(16,185,129,0.1); }
.fi-purple { background: rgba(102,126,234,0.1); }
.fi-amber { background: rgba(245,158,11,0.1); }
.fi-red { background: rgba(239,68,68,0.1); }
.fi-indigo { background: rgba(102,126,234,0.1); }

.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradient-rotate 8s ease infinite;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102,126,234,0.2) 0%, transparent 60%);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.5px; }
.cta-banner p { color: #94a3b8; font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner .btn-outline,
.cta-section .btn-outline { border-color: rgba(255,255,255,0.2); color: #fff; }
.cta-banner .btn-outline:hover,
.cta-section .btn-outline:hover { border-color: var(--primary); }

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #667eea, #764ba2, #10b981) 1;
    padding: 3rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.footer-brand-desc { color: #64748b; font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { color: #e2e8f0; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #64748b; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: #94a3b8; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy { color: #475569; font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #64748b; text-decoration: none; font-size: 0.8rem; }
.footer-legal a:hover { color: #94a3b8; }

/* ========== RELATED PAGES — REDESIGNED ========== */
.related-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.related-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102,126,234,0.2);
}
.related-card-bar {
    height: 4px;
    width: 100%;
}
.related-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.related-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.related-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.related-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.related-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}
.related-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.related-card-pill {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: var(--bg-alt);
    color: var(--text-light);
    border: 1px solid var(--border);
}
.related-card-arrow {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s;
}
.related-card:hover .related-card-arrow {
    gap: 0.7rem;
}
.related-card-arrow span {
    transition: transform 0.3s;
}
.related-card:hover .related-card-arrow span {
    transform: translateX(3px);
}
@media (max-width: 900px) {
    .related-grid { grid-template-columns: 1fr; }
}

/* ========== HOMEPAGE HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(102,126,234,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(118,75,162,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-soft);
    border: 1px solid rgba(102,126,234,0.15);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

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

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-green {
    background: var(--gradient-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.4);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.counter { display: inline-block; }

.hero-visual { position: relative; }

.hero-mockup {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-screen {
    background: linear-gradient(135deg, #1a1f36, #151929);
    border-radius: 8px;
    padding: 1.5rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-badge-live {
    background: rgba(16,185,129,0.15);
    color: #10b981;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.mockup-time {
    color: #a0aec0;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'SF Mono', 'Fira Code', monospace;
    min-width: 40px;
}

.mockup-name { color: #e2e8f0; font-size: 0.8rem; font-weight: 500; flex: 1; }

.mockup-status {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
}

.status-green { background: rgba(16,185,129,0.15); color: #10b981; }
.status-blue { background: rgba(59,130,246,0.15); color: #3b82f6; }
.status-amber { background: rgba(245,158,11,0.15); color: #f59e0b; }

/* Hero mockup row animation (homepage) */
.mockup-screen .mockup-row {
    animation: fadeSlideIn 0.5s ease forwards;
    opacity: 0;
}

.mockup-screen .mockup-row:nth-child(2) { border-color: #10b981; animation-delay: 0.3s; }
.mockup-screen .mockup-row:nth-child(3) { border-color: #3b82f6; animation-delay: 0.5s; }
.mockup-screen .mockup-row:nth-child(4) { border-color: #f59e0b; animation-delay: 0.7s; }
.mockup-screen .mockup-row:nth-child(5) { border-color: #667eea; animation-delay: 0.9s; }
.mockup-screen .mockup-row:nth-child(6) { border-color: #ef4444; animation-delay: 1.1s; }
.mockup-screen .mockup-row:nth-child(7) { border-color: #10b981; animation-delay: 1.3s; }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
    padding: 3rem 2rem;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-icon.green { background: rgba(16,185,129,0.1); }
.trust-icon.blue { background: rgba(59,130,246,0.1); }
.trust-icon.purple { background: rgba(102,126,234,0.1); }

/* ========== HOW IT WORKS / STEPS ========== */
.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gradient);
    opacity: 0.3;
}

.step-card { text-align: center; position: relative; }

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ========== FEATURE LIST (in cards) ========== */
.feature-list { list-style: none; margin-top: 1rem; }

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ========== HIGHLIGHT SECTION ========== */
.highlight {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight.reversed { direction: rtl; }
.highlight.reversed > * { direction: ltr; }

.highlight-visual {
    background: var(--gradient-soft);
    border: 1px solid rgba(102,126,234,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.highlight-visual-inner {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.hl-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.hl-row:last-child { border-bottom: none; }

.hl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hl-dot.green { background: #10b981; }
.hl-dot.blue { background: #3b82f6; }
.hl-dot.amber { background: #f59e0b; }

.hl-text { flex: 1; font-size: 0.85rem; color: var(--text); }
.hl-time { font-size: 0.75rem; color: var(--text-light); font-family: monospace; }

.hl-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.highlight-content h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ========== COMPARISON TABLE ========== */
.comparison-wrapper {
    max-width: 960px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead th {
    padding: 1rem 1.1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 2px solid var(--border);
    background: var(--bg-alt);
    color: var(--text);
    vertical-align: bottom;
    line-height: 1.3;
}

.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.highlight-col {
    background: var(--gradient);
    color: #fff;
    position: relative;
}
.comparison-table thead th.highlight-col::after {
    content: "Empfehlung";
    position: absolute;
    top: 0.35rem;
    right: 0.5rem;
    font-size: 0.55rem;
    background: rgba(255,255,255,0.25);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.comparison-table th.comp-provider-logo {
    font-size: 1rem;
    font-weight: 800;
}

.comparison-table td {
    padding: 0.7rem 1.1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text);
    text-align: left;
    min-width: 180px;
}

.comparison-table tr.comp-category-row td {
    background: var(--bg-alt);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    padding: 0.5rem 1.1rem;
    border-bottom: 2px solid var(--border);
}

.comparison-table tr.comp-category-row td:not(:first-child) { text-align: center; }

.comparison-table tr:hover:not(.comp-category-row) { background: rgba(102, 126, 234, 0.03); }

.comparison-table .check { color: var(--accent); font-weight: 700; font-size: 1.05rem; }
.comparison-table .cross { color: #e2e8f0; font-size: 1.05rem; }
.comparison-table .partial { color: #f59e0b; font-weight: 600; font-size: 0.82rem; }

.comparison-table .comp-cell-detail {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.15rem;
    font-weight: 400;
}

.comparison-table .highlight-cell {
    background: rgba(102, 126, 234, 0.04);
}

.comp-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.comp-legend span { display: inline-flex; align-items: center; gap: 0.35rem; }
.comp-legend .check { color: var(--accent); font-size: 0.95rem; }
.comp-legend .cross { color: #e2e8f0; font-size: 0.95rem; }
.comp-legend .partial { color: #f59e0b; font-size: 0.95rem; }

/* ========== PRICING ========== */
.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

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

.pricing-card.featured {
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 20px 40px -10px rgba(102,126,234,0.2);
    transform: scale(1.03);
}
.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, #667eea, #764ba2, #10b981, #667eea);
    background-size: 300% 300%;
    animation: gradient-rotate 4s ease infinite;
    z-index: -1;
}
.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--bg);
    z-index: -1;
}

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

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 2rem; }
.pricing-amount { font-size: 3rem; font-weight: 800; letter-spacing: -2px; }
.pricing-currency { font-size: 1.5rem; font-weight: 600; vertical-align: super; }
.pricing-period { font-size: 0.9rem; color: var(--text-light); }

.pricing-features { list-style: none; margin-bottom: 2rem; }

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features li.limit { font-weight: 600; color: var(--text); }

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.pricing-btn-primary { background: var(--gradient); color: #fff; }
.pricing-btn-primary:hover { box-shadow: 0 4px 15px rgba(102,126,234,0.4); transform: translateY(-1px); }
.pricing-btn-outline { border: 2px solid var(--border); color: var(--text); background: transparent; }
.pricing-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.pricing-note { text-align: center; margin-top: 2rem; color: var(--text-light); font-size: 0.85rem; }

/* ========== SECURITY ========== */
.security-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.security-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.security-card:hover { border-color: rgba(16,185,129,0.3); box-shadow: var(--shadow); }

.security-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(16,185,129,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.security-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #f59e0b;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.3;
}

.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ========== FAQ ========== */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

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

.faq-arrow { font-size: 1.2rem; transition: transform 0.3s; color: var(--text-light); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }

/* ========== CONTACT FORM ========== */
.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

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

.form-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
}

.form-submit:hover { box-shadow: 0 4px 15px rgba(102,126,234,0.4); transform: translateY(-1px); }

.form-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; }

/* ========== CTA SECTION (homepage) ========== */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradient-rotate 8s ease infinite;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102,126,234,0.2) 0%, transparent 60%);
}
.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118,75,162,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.cta-section p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 2.5rem; line-height: 1.7; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-contact { margin-top: 2.5rem; color: #64748b; font-size: 0.9rem; }
.cta-contact a { color: var(--primary); text-decoration: none; }
.cta-contact a:hover { text-decoration: underline; }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #e2e8f0;
    padding: 1.25rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

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

.cookie-text { font-size: 0.85rem; color: #94a3b8; flex: 1; line-height: 1.5; }
.cookie-text a { color: var(--primary); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.2s;
}

.cookie-accept { background: var(--gradient); color: #fff; }
.cookie-accept:hover { box-shadow: 0 4px 12px rgba(102,126,234,0.4); }

/* ========== LEGAL MODALS ========== */
.legal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.legal-overlay.show { display: flex; }

.legal-modal {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.legal-modal h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.legal-modal h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.legal-modal p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; font-size: 0.9rem; }

.legal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.legal-close:hover { background: var(--bg-alt); color: var(--text); }

/* ========== PROCESS FLOW (horizontal steps) ========== */
.process-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.process-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(102,126,234,0.2));
    z-index: 1;
}

.process-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.process-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* ========== STAT ROW (big numbers) ========== */
.stat-row {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-item-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.stat-item-label { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.15rem; }
.stat-item-desc { font-size: 0.78rem; color: var(--text-light); }

/* ========== DAY TIMELINE (vertical) ========== */
.day-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.day-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-event {
    position: relative;
    padding: 0.75rem 0 1.75rem 1.5rem;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -2.05rem;
    top: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--primary);
    z-index: 2;
}

.timeline-event.tl-active::before { border-color: var(--accent); background: var(--accent); }
.timeline-event.tl-warn::before { border-color: #f59e0b; background: #f59e0b; }
.timeline-event.tl-done::before { border-color: var(--accent); }

.timeline-time {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'SF Mono', 'Fira Code', monospace;
    margin-bottom: 0.2rem;
}

.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.timeline-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.timeline-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.3rem;
}

.timeline-tag.tg-green { background: rgba(16,185,129,0.1); color: #059669; }
.timeline-tag.tg-blue { background: rgba(59,130,246,0.1); color: #2563eb; }
.timeline-tag.tg-amber { background: rgba(245,158,11,0.1); color: #d97706; }

/* ========== FOUNDER SECTION ========== */
.founder-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem;
}

.founder-avatar-initials {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.founder-avatar-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.founder-avatar-role {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.4;
}

.founder-content { padding-top: 0.25rem; }

.founder-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.founder-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.founder-content h3 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-story {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.founder-values {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.founder-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-alt);
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.founder-value-icon {
    font-size: 1rem;
    line-height: 1;
}

.founder-quote {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid;
    border-image: var(--gradient) 1;
    background: var(--gradient-soft);
    border-radius: 0 10px 10px 0;
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.founder-quote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .founder-avatar {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    .founder-avatar-initials { font-size: 2rem; }
    .founder-values { justify-content: center; }
    .founder-quote { text-align: left; }
}

@media (max-width: 480px) {
    .founder-section { padding: 3rem 1.25rem; }
    .founder-card { padding: 1.5rem 1.25rem; }
    .founder-content h3 { font-size: 1.25rem; }
    .founder-story { font-size: 0.85rem; }
    .founder-values { flex-direction: column; align-items: center; }
}

/* ========== SPLIT COMPARISON (Ohne vs. Mit) ========== */
.split-comparison {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-side { padding: 2.5rem; }

.split-side.side-bad {
    background: #fef2f2;
    border-right: 2px solid #fecaca;
}

.split-side.side-good { background: #f0fdf4; }

.split-side h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.split-side.side-bad h3 { color: #dc2626; }
.split-side.side-good h3 { color: #16a34a; }

.split-list { list-style: none; }

.split-list li {
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.split-list li::before { flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.split-side.side-bad .split-list li::before { content: '\2717'; color: #dc2626; }
.split-side.side-good .split-list li::before { content: '\2713'; color: #16a34a; }

/* ========== FEATURE BAND (dark full-width) ========== */
.feature-band {
    background: linear-gradient(135deg, #0f172a 0%, #1a1046 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradient-rotate 10s ease infinite;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.feature-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(102,126,234,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(118,75,162,0.08) 0%, transparent 60%);
}

.feature-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-band-item {
    position: relative;
    padding: 1.25rem;
    border-radius: var(--radius);
    transition: background 0.3s ease;
}
.feature-band-item:hover {
    background: rgba(255,255,255,0.04);
}

.feature-band-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(255,255,255,0.06);
}

.feature-band-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.4rem;
}

.feature-band-item p { font-size: 0.85rem; color: #94a3b8; line-height: 1.6; }

/* ========== ACCENT CARDS (alternative to feature cards) ========== */
.accent-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.accent-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: all 0.3s;
}

.accent-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.accent-card .ac-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.accent-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.accent-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

.accent-card.ac-green { border-left-color: #10b981; }
.accent-card.ac-blue { border-left-color: #3b82f6; }
.accent-card.ac-amber { border-left-color: #f59e0b; }
.accent-card.ac-red { border-left-color: #ef4444; }
.accent-card.ac-purple { border-left-color: #667eea; }

/* ========== QUOTE CALLOUT ========== */
.quote-callout {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: var(--gradient-soft);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}

.quote-callout::before {
    content: '\201C';
    font-size: 5rem;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    opacity: 0.2;
}

.quote-callout blockquote {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.quote-callout cite {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

/* ========== LIGHT MOCKUP (white bg alternative) ========== */
.mockup-light {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.mockup-light-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mockup-light-title { font-size: 0.9rem; font-weight: 700; color: var(--text); }

.mockup-light-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.mockup-light-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.35rem;
    background: var(--bg-alt);
    border-left: 3px solid transparent;
}

.mockup-light-row .ml-label {
    font-size: 0.72rem;
    color: var(--text-light);
    min-width: 70px;
    font-weight: 600;
}

.mockup-light-row .ml-value {
    font-size: 0.78rem;
    color: var(--text);
    font-weight: 500;
    flex: 1;
}

.mockup-light-row .ml-amount {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    text-align: right;
    min-width: 60px;
}

/* ========== INTEGRATION CALLOUT ========== */
.integration-card {
    max-width: 900px;
    margin: 2.5rem auto 0;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.04) 0%, rgba(59,130,246,0.04) 100%);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: var(--radius-lg);
    align-items: center;
}

.integration-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(59,130,246,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.integration-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; }
.integration-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

.integration-badges {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.integration-badges span {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .integration-card { flex-direction: column; text-align: center; }
    .integration-badges { justify-content: center; }
}

/* ========== RESPONSIVE (new components) ========== */
@media (max-width: 968px) {
    .process-flow { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .process-step:not(:last-child)::after { display: none; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
    .split-comparison { grid-template-columns: 1fr; }
    .split-side.side-bad { border-right: none; border-bottom: 2px solid #fecaca; }
    .feature-band-inner { grid-template-columns: 1fr; }
    .accent-cards { grid-template-columns: 1fr; }
    .metrics-inner { grid-template-columns: repeat(2, 1fr); }
    .mockup-float { animation: none; }
    .mockup-glow::before { display: none; }
    .deco-dots::after { display: none; }
}

@media (max-width: 640px) {
    .process-flow { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr; }
    .day-timeline { padding-left: 2.5rem; }
    .metrics-inner { grid-template-columns: 1fr; gap: 1rem; }
    .metric-item { padding: 1rem; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .highlight, .highlight.reversed { grid-template-columns: 1fr; direction: ltr; }
    .highlight-visual { order: -1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .security-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
    .contact-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.8rem; }
    .page-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .page-hero-desc { margin: 0 auto 2rem; }
    .page-hero .hero-buttons { justify-content: center; }
    .page-hero .mockup-window { display: none; }
    .feature-detail, .feature-detail.reversed { grid-template-columns: 1fr; direction: ltr; }
    .feature-detail .mockup-window { order: -1; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .steps-grid::before { display: none; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 4rem 1.25rem; }
    .footer-inner { grid-template-columns: 1fr; }
}



/* ===== CARD MOSAIC SECTION ===== */
.compliance-progress { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.compliance-progress-bar { height: 8px; background: var(--border); border-radius: 99px; overflow: hidden; margin-top: 0.75rem; }
.compliance-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #10b981, #3b82f6, #667eea); border-radius: 99px; transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1); }
.compliance-progress.visible .compliance-progress-fill { width: 100%; }
.compliance-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.cc-card { background: var(--bg); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(102,126,234,0.2); }
.cc-card-accent { height: 4px; width: 100%; }
.cc-card-body { padding: 1.5rem; }
.cc-card-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.cc-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cc-card-head h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 0.2rem; line-height: 1.3; }
.cc-card-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.15rem 0.5rem; border-radius: 4px; text-transform: uppercase; }
.cc-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.cc-card-status { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.cc-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; animation: cc-pulse 2s ease-in-out infinite; }
@keyframes cc-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); } }
.cc-status-text { font-size: 0.75rem; font-weight: 600; color: #10b981; }
.cc-card-metric { display: flex; align-items: baseline; gap: 0.4rem; margin-top: 1rem; padding: 0.75rem; border-radius: 10px; background: var(--bg-alt); }
.cc-metric-value { font-size: 1.6rem; font-weight: 800; line-height: 1; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cc-metric-label { font-size: 0.75rem; color: var(--text-light); }
.cc-card-featured { grid-column: span 2; }
.cc-card-featured .cc-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cc-card-featured .cc-detail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.cc-card-featured .cc-detail-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-secondary); padding: 0.5rem 0.65rem; background: var(--bg-alt); border-radius: 8px; border: 1px solid var(--border); }
.cc-detail-list li .cc-li-icon { font-size: 0.9rem; flex-shrink: 0; }
.cc-seal-row { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.cc-seal { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.25rem 2rem; border-radius: 16px; border: 1px solid var(--border); background: var(--bg); min-width: 160px; text-align: center; transition: border-color 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-sm); }
.cc-seal:hover { border-color: rgba(102,126,234,0.3); box-shadow: var(--shadow); }
.cc-seal-icon { font-size: 2rem; line-height: 1; }
.cc-seal-label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.cc-seal-sub { font-size: 0.7rem; color: var(--text-light); }
@media (max-width: 900px) { .compliance-mosaic { grid-template-columns: 1fr; } .cc-card-featured { grid-column: span 1; } .cc-card-featured .cc-card-body { grid-template-columns: 1fr; } }


/* ========== MOBILE OPTIMIZATION ========== */
@media (max-width: 768px) {
    .navbar { padding: 0.75rem 1.25rem; }
    .navbar.scrolled { padding: 0.5rem 1.25rem; }
    .nav-inner { padding: 0; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius) var(--radius);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-links.open .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0.25rem 0 0.25rem 1rem;
        min-width: 0;
    }
    .nav-links.open .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }
    section, footer { overflow-x: hidden; }
    .page-hero { padding: 6rem 1.5rem 3rem; }
    .page-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .page-hero-desc { margin: 0 auto 1.5rem; }
    .page-hero .hero-buttons { justify-content: center; }
    .page-hero .mockup-window { display: none; }
    .feature-detail, .feature-detail.reversed { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
    .feature-detail .mockup-window { order: -1; max-width: 100%; }
    .feature-detail-content h2 { font-size: 1.5rem; }
    .feature-band { padding: 3rem 1.5rem; }
    .feature-band-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .metrics-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .metric-item { padding: 1rem; }
    .metric-value { font-size: 2rem; }
    .process-flow { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .process-step:not(:last-child)::after { display: none; }
    .accent-cards { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
    .split-comparison { grid-template-columns: 1fr; }
    .split-side.side-bad { border-right: none; border-bottom: 2px solid #fecaca; padding-bottom: 2rem; margin-bottom: 1rem; }
    .mockup-window { max-width: 100%; overflow-x: auto; }
    .mockup-content { font-size: 0.7rem; }
    .mockup-float { animation: none; }
    .mockup-glow::before { display: none; }
    .deco-dots::after { display: none; }
    .compliance-mosaic { grid-template-columns: 1fr; }
    .cc-card-featured { grid-column: span 1; }
    .cc-card-featured .cc-card-body { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.75rem; }
    .comparison-table th, .comparison-table td { padding: 0.5rem 0.4rem; }
    .comparison-table td:first-child { min-width: 140px; }
    .comparison-table .comp-cell-detail { font-size: 0.62rem; }
    .comparison-table thead th.highlight-col::after { display: none; }
    .comp-legend { gap: 1rem; font-size: 0.7rem; }
    .related-grid { grid-template-columns: 1fr; gap: 1rem; }
    .related-card-desc { font-size: 0.8rem; }
    .related-card-pills { flex-wrap: wrap; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    section { padding: 3.5rem 1.5rem; }
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.9rem; }
    .mockup-light { padding: 1.5rem; }
}
@media (max-width: 480px) {
    .navbar { padding: 0.75rem 1rem !important; }
    .navbar.scrolled { padding: 0.5rem 1rem !important; }
    .nav-logo { font-size: 1.1rem; }
    .nav-cta { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
    .hero { padding: 6rem 1rem 3rem; }
    .hero h1 { font-size: 1.8rem; letter-spacing: -0.5px; }
    .hero-desc { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; gap: 0.75rem; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-stats { flex-direction: column; gap: 0.75rem; }
    .page-hero { padding: 5rem 1rem 2rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .feature-detail-content h2 { font-size: 1.3rem; }
    .feature-detail-content p { font-size: 0.85rem; }
    .check-list li { font-size: 0.85rem; }
    .feature-band { padding: 2.5rem 1rem; }
    .feature-band-inner { grid-template-columns: 1fr; }
    .feature-band-item { padding: 1rem; }
    .metrics-inner { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .metric-item { padding: 0.75rem; }
    .metric-value { font-size: 1.6rem; }
    .metric-label { font-size: 0.65rem; }
    .metric-desc { font-size: 0.6rem; }
    .process-flow { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr; }
    .cc-card { padding: 1.25rem; }
    .cc-card-title { font-size: 1rem; }
    .cc-card-metric { font-size: 1.5rem; }
    section { padding: 3rem 1rem; }
    .section-title { font-size: 1.35rem; }
    .section-desc { font-size: 0.85rem; padding: 0 0.5rem; }
    .section-label { font-size: 0.7rem; }
    .mockup-window { border-radius: 8px; }
    .mockup-content { padding: 0.75rem; font-size: 0.65rem; }
    .mockup-bar { padding: 0.4rem 0.6rem; }
    .mockup-title { font-size: 0.7rem; }
    .mockup-badge { font-size: 0.5rem; padding: 0.1rem 0.3rem; }
    .related-card-body { padding: 1rem; }
    .related-card-top h4 { font-size: 0.95rem; }
    .related-card-desc { font-size: 0.78rem; }
    .related-card-pill { font-size: 0.6rem; padding: 0.2rem 0.45rem; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-col ul { padding: 0; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card.featured { transform: none; }
    .form-row { grid-template-columns: 1fr; }
    .split-side { padding: 1.25rem; }
    .split-list li { font-size: 0.8rem; }
    .faq-question { font-size: 0.9rem; padding: 1rem; }
    .faq-answer { font-size: 0.85rem; padding: 0 1rem 1rem; }
    .comparison-table { font-size: 0.68rem; }
    .comparison-table th, .comparison-table td { padding: 0.4rem 0.3rem; min-width: 65px; }
    .comparison-table td:first-child { min-width: 120px; }
    .comparison-table .comp-cell-detail { display: none; }
    .comp-legend { flex-direction: column; align-items: center; gap: 0.5rem; }
    .mockup-light { padding: 1rem; }
    .mockup-light-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps-grid::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .highlight, .highlight.reversed { grid-template-columns: 1fr; direction: ltr; }
    .highlight-visual { order: -1; }
    .security-grid { grid-template-columns: 1fr; }
    .day-timeline { padding-left: 2rem; }
    .day-timeline::before { left: 0.75rem; }
    .timeline-dot { left: -1.5rem; width: 10px; height: 10px; }
}

/* ========== ACCESSIBILITY ========== */
.btn:focus-visible,
.pricing-btn:focus-visible,
.nav-cta:focus-visible,
.faq-question:focus-visible,
.cookie-btn:focus-visible,
.form-submit:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in, .fade-in-left, .fade-in-right {
        opacity: 1;
        transform: none;
    }
}

/* ========== REGISTRATION WIZARD ========== */
.reg-section { padding: 6rem 2rem; }
.reg-container { max-width: 720px; margin: 0 auto; }

/* Progress Steps */
.reg-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2.5rem; padding: 0 1rem; }
.reg-step { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; position: relative; z-index: 1; }
.reg-step-circle {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem; color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.reg-step.active .reg-step-circle,
.reg-step.done .reg-step-circle {
    background: var(--gradient); border-color: transparent; color: #fff;
    box-shadow: 0 4px 15px rgba(102,126,234,0.35);
}
.reg-step.done .reg-step-circle { background: #10b981; }
.reg-step-label { font-size: 0.75rem; font-weight: 600; color: var(--text-light); transition: color 0.3s; }
.reg-step.active .reg-step-label { color: var(--primary); }
.reg-step.done .reg-step-label { color: #10b981; }
.reg-step-line { flex: 1; height: 2px; background: var(--border); margin: 0 0.5rem; margin-bottom: 1.2rem; transition: background 0.4s; }
.reg-step-line.done { background: #10b981; }

/* Panels */
.reg-form { position: relative; }
.reg-panel {
    display: none; background: var(--bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    animation: regSlideIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
.reg-panel.active { display: block; }
@keyframes regSlideIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.reg-panel-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.reg-panel-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-soft);
    display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.reg-panel-title { font-size: 1.15rem; font-weight: 700; margin: 0; }
.reg-panel-desc { font-size: 0.85rem; color: var(--text-secondary); margin: 0.15rem 0 0; }

/* Fields */
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.reg-field { margin-bottom: 1.25rem; }
.reg-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.reg-optional { font-weight: 400; color: var(--text-light); }

.reg-input-wrap {
    position: relative; display: flex; align-items: center;
}
.reg-input-icon {
    position: absolute; left: 0.85rem; color: var(--text-light); pointer-events: none; z-index: 1;
    transition: color 0.2s;
}
.reg-input-wrap input:focus ~ .reg-input-icon,
.reg-input-wrap input:focus + .reg-input-icon { color: var(--primary); }
.reg-input-wrap input {
    width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 0.9rem; font-family: inherit; color: var(--text); background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.reg-input-wrap input:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.12);
}
.reg-input-wrap input.invalid { border-color: #ef4444; }
.reg-input-wrap input.invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.reg-input-wrap input.valid { border-color: #10b981; }

.reg-field textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 0.9rem; font-family: inherit; color: var(--text); background: var(--bg);
    resize: vertical; min-height: 80px; transition: border-color 0.2s, box-shadow 0.2s;
}
.reg-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(102,126,234,0.12); }
.reg-field-hint { font-size: 0.75rem; color: var(--text-light); margin-top: 0.35rem; }

/* Password toggle */
.reg-pw-toggle {
    position: absolute; right: 0.75rem; background: none; border: none;
    color: var(--text-light); cursor: pointer; padding: 0.25rem; display: flex;
}
.reg-pw-toggle:hover { color: var(--text); }

/* Password strength */
.reg-pw-strength { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem; }
.reg-pw-bar { flex: 1; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.reg-pw-fill { height: 100%; width: 0; border-radius: 4px; transition: width 0.3s, background 0.3s; }
.reg-pw-text { font-size: 0.72rem; font-weight: 600; min-width: 60px; }

/* Subdomain */
.reg-subdomain-wrap {
    display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px;
    overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; background: var(--bg);
}
.reg-subdomain-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(102,126,234,0.12); }
.reg-subdomain-prefix {
    padding: 0.75rem 0 0.75rem 0.85rem; font-size: 0.82rem; color: var(--text-light);
    font-family: 'SF Mono', 'Fira Code', monospace; white-space: nowrap; user-select: none;
}
.reg-subdomain-suffix {
    padding: 0.75rem 0.85rem 0.75rem 0; font-size: 0.82rem; color: var(--text-light);
    font-family: 'SF Mono', 'Fira Code', monospace; white-space: nowrap; user-select: none;
    background: var(--bg-alt); border-left: 1px solid var(--border); padding-left: 0.75rem;
}
.reg-subdomain-wrap input {
    flex: 1; border: none; outline: none; padding: 0.75rem 0.35rem;
    font-size: 0.9rem; font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text); background: transparent; min-width: 0;
}
.reg-subdomain-status { font-size: 0.8rem; margin-top: 0.4rem; min-height: 1.2em; transition: color 0.2s; }
.reg-subdomain-status.available { color: #10b981; }
.reg-subdomain-status.unavailable { color: #ef4444; }
.reg-subdomain-status.checking { color: var(--text-light); }

/* Fleet cards */
.reg-fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.reg-fleet-card { cursor: pointer; }
.reg-fleet-card input { display: none; }
.reg-fleet-inner {
    display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
    padding: 1rem 0.5rem; border: 1.5px solid var(--border); border-radius: 12px;
    transition: all 0.2s; text-align: center; background: var(--bg);
}
.reg-fleet-card input:checked + .reg-fleet-inner {
    border-color: var(--primary); background: var(--gradient-soft);
    box-shadow: 0 2px 8px rgba(102,126,234,0.15);
}
.reg-fleet-inner:hover { border-color: rgba(102,126,234,0.4); }
.reg-fleet-icon { font-size: 1.1rem; line-height: 1; }
.reg-fleet-inner strong { font-size: 1rem; }
.reg-fleet-inner small { font-size: 0.7rem; color: var(--text-light); }

/* Plan cards */
.reg-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.reg-plan-card { cursor: pointer; position: relative; }
.reg-plan-card input { display: none; }
.reg-plan-inner {
    padding: 1.25rem; border: 1.5px solid var(--border); border-radius: 14px;
    transition: all 0.25s; background: var(--bg); height: 100%;
}
.reg-plan-card input:checked + .reg-plan-inner,
.reg-plan-card input:checked ~ .reg-plan-inner {
    border-color: var(--primary); box-shadow: 0 4px 16px rgba(102,126,234,0.18);
    background: var(--gradient-soft);
}
.reg-plan-inner:hover { border-color: rgba(102,126,234,0.4); }
.reg-plan-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); color: #fff; font-size: 0.68rem; font-weight: 700;
    padding: 0.2rem 0.75rem; border-radius: 20px; white-space: nowrap; letter-spacing: 0.03em;
}
.reg-plan-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.reg-plan-price { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.75rem; }
.reg-plan-amount { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.reg-plan-currency { font-size: 0.8rem; color: var(--text-secondary); }
.reg-plan-features { list-style: none; padding: 0; margin: 0; }
.reg-plan-features li {
    font-size: 0.78rem; color: var(--text-secondary); padding: 0.3rem 0; padding-left: 1.2rem;
    position: relative;
}
.reg-plan-features li::before { content: '\2713'; position: absolute; left: 0; color: #10b981; font-weight: 700; }

/* Summary */
.reg-summary {
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px;
    padding: 1.25rem; margin-bottom: 1.25rem;
}
.reg-summary h4 { font-size: 0.85rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.reg-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.4rem 0; font-size: 0.85rem; border-bottom: 1px solid var(--border);
}
.reg-summary-row:last-child { border-bottom: none; }
.reg-summary-row span { color: var(--text-secondary); }
.reg-summary-row strong { color: var(--text); }
.reg-summary-row.highlight { background: rgba(102,126,234,0.06); margin: 0.25rem -0.75rem 0; padding: 0.5rem 0.75rem; border-radius: 8px; border-bottom: none; }
.reg-summary-row.highlight strong { color: #10b981; }

/* Checkbox */
.reg-legal-check { margin-bottom: 1.5rem; }
.reg-checkbox {
    display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer;
    font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5;
}
.reg-checkbox input { display: none; }
.reg-checkmark {
    width: 20px; height: 20px; border: 1.5px solid var(--border); border-radius: 6px;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; margin-top: 1px;
}
.reg-checkbox input:checked + .reg-checkmark {
    background: var(--gradient); border-color: transparent;
}
.reg-checkbox input:checked + .reg-checkmark::after {
    content: '\2713'; color: #fff; font-size: 0.75rem; font-weight: 700;
}
.reg-checkbox a { color: var(--primary); text-decoration: none; }
.reg-checkbox a:hover { text-decoration: underline; }

/* Navigation */
.reg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.reg-btn-back {
    display: flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.25rem;
    background: none; border: 1.5px solid var(--border); border-radius: 10px;
    color: var(--text-secondary); font-size: 0.88rem; font-weight: 500; cursor: pointer;
    font-family: inherit; transition: all 0.2s;
}
.reg-btn-back:hover { border-color: var(--text-light); color: var(--text); }
.reg-btn-next {
    display: flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.5rem;
    background: var(--gradient); border: none; border-radius: 10px;
    color: #fff; font-size: 0.9rem; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: all 0.25s;
}
.reg-btn-next:hover { box-shadow: 0 4px 15px rgba(102,126,234,0.35); transform: translateY(-1px); }
.reg-btn-submit {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #10b981, #059669); border: none; border-radius: 10px;
    color: #fff; font-size: 0.95rem; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: all 0.25s;
}
.reg-btn-submit:hover { box-shadow: 0 4px 15px rgba(16,185,129,0.4); transform: translateY(-1px); }
.reg-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success */
.reg-success {
    text-align: center; padding: 3rem 2rem;
    background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    animation: regSlideIn 0.5s cubic-bezier(0.4,0,0.2,1);
}
.reg-success-icon { margin-bottom: 1rem; }
.reg-success h3 { font-size: 1.4rem; margin: 0 0 0.75rem; color: #10b981; }
.reg-success p { color: var(--text-secondary); font-size: 0.95rem; margin: 0 0 2rem; line-height: 1.6; }
.reg-success-next { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.reg-success-step {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.85rem; color: var(--text-secondary);
}
.reg-success-num {
    width: 28px; height: 28px; border-radius: 50%; background: var(--gradient-soft);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; color: var(--primary); flex-shrink: 0;
}

/* Trust badges */
.reg-trust {
    display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
    margin-top: 2rem; padding-top: 1.5rem;
}
.reg-trust-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; color: var(--text-light); font-weight: 500;
}
.reg-trust-item svg { color: #10b981; }

/* Responsive */
@media (max-width: 768px) {
    .reg-container { max-width: 100%; }
    .reg-panel { padding: 1.5rem; }
    .reg-row { grid-template-columns: 1fr; }
    .reg-plan-grid { grid-template-columns: 1fr; }
    .reg-fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .reg-progress { gap: 0; }
    .reg-step-label { font-size: 0.65rem; }
    .reg-summary-row { font-size: 0.8rem; }
    .reg-success-next { flex-direction: column; align-items: center; gap: 1rem; }
}
@media (max-width: 480px) {
    .reg-section { padding: 4rem 1rem; }
    .reg-panel { padding: 1.25rem; }
    .reg-fleet-grid { grid-template-columns: 1fr 1fr; }
    .reg-nav { gap: 0.5rem; }
    .reg-btn-next, .reg-btn-submit { padding: 0.65rem 1rem; font-size: 0.85rem; }
}

/* Registration — subtle label notes + credentials */
.reg-label-note { font-weight: 400; font-size: 0.75rem; color: var(--text-light); }
.reg-success-credentials {
    font-size: 0.85rem; color: var(--text-secondary); margin-top: 1rem;
    padding: 0.6rem 1rem; border-radius: 8px; display: inline-block;
    background: rgba(102,126,234,0.04); border: 1px solid rgba(102,126,234,0.08);
}
.reg-success-credentials strong { color: var(--text); }





/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ============================================================ */

/* Scrollable Table Wrapper */
.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
}

/* === TABLET (max 968px) === */
@media (max-width: 968px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-content { order: 1; }
    .hero-visual { order: 2; max-width: 500px; margin: 0 auto; }
    .hero { padding: 6rem 1.5rem 3rem; min-height: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    
    .nav-links { 
        display: none; 
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-hamburger { display: block; z-index: 1000; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        display: none;
        padding: 0.5rem 0;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a { padding: 0.5rem 1rem; }
    .nav-cta { margin: 0.5rem 0; }
    
    .split-comparison { grid-template-columns: 1fr; }
    .split-side { padding: 1.5rem; }
    .split-side.side-bad { border-right: none; border-bottom: 2px solid #fecaca; }
}

/* === MOBILE (max 768px) === */
@media (max-width: 768px) {
    body { font-size: 15px; }
    section { padding: 3rem 1.25rem; }
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.9rem; }
    
    .hero h1 { font-size: 2.25rem; line-height: 1.15; }
    .hero p { font-size: 1rem; }
    .hero-badge { font-size: 0.8rem; }
    
    /* Feature Grid */
    .feature-grid { grid-template-columns: 1fr; gap: 1rem; }
    .feature-card { padding: 1.5rem; }
    
    /* Pricing */
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card { padding: 1.75rem; }
    .pricing-price { font-size: 2.5rem; }
    
    /* Comparison Table */
    .comparison-table { font-size: 0.75rem; }
    .comparison-table th,
    .comparison-table td { padding: 0.5rem 0.4rem; white-space: nowrap; }
    .comparison-table th:first-child,
    .comparison-table td:first-child { position: sticky; left: 0; background: var(--bg); z-index: 1; }
    
    /* FAQ */
    .faq-question { font-size: 0.95rem; padding: 1rem; }
    .faq-answer { padding: 0 1rem 1rem; }
    
    /* CTA */
    .cta-section { padding: 3rem 1.25rem; }
    .cta-section h2 { font-size: 1.75rem; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .footer-links { justify-content: center; }
    
    /* Buttons */
    .btn { padding: 0.75rem 1.25rem; font-size: 0.9rem; width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; gap: 0.75rem; }
    .hero-buttons .btn { max-width: 300px; margin: 0 auto; }
}

/* === SMALL PHONE (max 480px) === */
@media (max-width: 480px) {
    body { font-size: 14px; }
    section { padding: 2.5rem 1rem; }
    .hero { padding: 5rem 1rem 2rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero p { font-size: 0.9rem; }
    .section-title { font-size: 1.5rem; }
    
    .pricing-card { padding: 1.5rem; }
    .pricing-price { font-size: 2rem; }
    .pricing-feature { font-size: 0.82rem; }
    
    .feature-card { padding: 1.25rem; }
    .feature-card h3 { font-size: 1rem; }
    
    .navbar { padding: 0.75rem 1rem; }
    .nav-logo { font-size: 1.25rem; }
    
    /* Stats in hero */
    .hero-stats { flex-direction: column; gap: 0.75rem; }
    .hero-stat { padding: 0.5rem; }
}

/* Safe Area for iPhone notch */
@supports (padding: env(safe-area-inset-bottom)) {
    .navbar { padding-top: max(0.75rem, env(safe-area-inset-top)); }
    .footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
}

/* Touch targets */
@media (pointer: coarse) {
    .nav-links a { min-height: 44px; display: flex; align-items: center; }
    .btn { min-height: 48px; }
    .faq-question { min-height: 48px; }
    .pricing-cta { min-height: 48px; }
}
