/*
 * MeineZeit CSS Framework (mz.css)
 * Eigenes CSS ohne Tailwind-Abhängigkeit
 * Erstellt: 18. Januar 2026
 */

/* ═══════════════════════════════════════════════════════════
   VARIABLEN & ROOT
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Brand Colors */
    --mz-navy: #1e3a5f;
    --mz-navy-light: rgba(30, 58, 95, 0.4);
    --mz-gold: #d4a84b;
    --mz-gold-light: #f0d78c;
    --mz-gold-border: rgba(212, 168, 75, 0.3);
    
    /* Neutrals */
    --mz-black: #0a0a0a;
    --mz-dark: #080808;
    --mz-gray-100: #f2f2f2;
    --mz-gray-200: #e5e7eb;
    --mz-gray-300: #d1d5db;
    --mz-gray-400: #9ca3af;
    --mz-gray-500: #6b7280;
    --mz-gray-800: #1f2123;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Typography */
    --font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-6xl: 3.75rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--mz-black);
    color: white;
    line-height: 1.5;
}

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

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

ul, ol {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT - FLEXBOX
   ═══════════════════════════════════════════════════════════ */

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.place-center { place-content: center; place-items: center; }

/* Gaps */
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ═══════════════════════════════════════════════════════════
   LAYOUT - POSITIONING
   ═══════════════════════════════════════════════════════════ */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* ═══════════════════════════════════════════════════════════
   SIZING
   ═══════════════════════════════════════════════════════════ */

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-max { width: max-content; }
.min-h-screen { min-height: 100vh; }
.max-w-full { max-width: 100%; }

/* ═══════════════════════════════════════════════════════════
   SPACING - MARGIN
   ═══════════════════════════════════════════════════════════ */

.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mt-auto { margin-top: auto; }

.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-16 { margin-top: var(--space-16); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ═══════════════════════════════════════════════════════════
   SPACING - PADDING
   ═══════════════════════════════════════════════════════════ */

.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }

.section-padding { padding: 5% 10%; }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */

.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-6xl { font-size: var(--text-6xl); line-height: 1.1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   COLORS
   ═══════════════════════════════════════════════════════════ */

.text-white { color: white; }
.text-black { color: black; }
.text-gold { color: var(--mz-gold); }
.text-gray-300 { color: var(--mz-gray-300); }
.text-gray-400 { color: var(--mz-gray-400); }

.bg-black { background-color: var(--mz-black); }
.bg-dark { background-color: var(--mz-dark); }
.bg-navy { background-color: var(--mz-navy); }
.bg-navy-light { background-color: var(--mz-navy-light); }
.bg-transparent { background-color: transparent; }
.bg-white { background-color: white; }

/* Gold Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--mz-gold) 0%, var(--mz-gold-light) 50%, var(--mz-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   BORDERS & RADIUS
   ═══════════════════════════════════════════════════════════ */

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.border { border: 1px solid var(--mz-gray-800); }
.border-gold { border: 1px solid var(--mz-gold-border); }
.border-gray { border: 1px solid var(--mz-gray-500); }

/* ═══════════════════════════════════════════════════════════
   EFFECTS
   ═══════════════════════════════════════════════════════════ */

.shadow { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-gold { box-shadow: 0 10px 25px -5px rgba(212, 168, 75, 0.3); }

.opacity-90 { opacity: 0.9; }
.opacity-50 { opacity: 0.5; }
.opacity-0 { opacity: 0; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* ═══════════════════════════════════════════════════════════
   TRANSITIONS & IMAGES
   ═══════════════════════════════════════════════════════════ */

.transition { transition: all var(--transition-normal); }
.transition-fast { transition: all var(--transition-fast); }
.transition-transform { transition: transform var(--transition-normal); }

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--mz-gold), #b8922f);
    color: var(--mz-black) !important;
    font-weight: 600;
}
.btn-gold:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--mz-gray-500);
    color: white;
}
.btn-outline:hover {
    border-color: var(--mz-gold);
    color: var(--mz-gold);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--mz-gold);
    color: var(--mz-gold);
}
.btn-outline-gold:hover {
    
    color: var(--mz-black);
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */

.card {
    background: var(--mz-dark);
    border: 1px solid var(--mz-gray-800);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.card-navy {
    background: var(--mz-navy-light);
    border: 1px solid var(--mz-gold-border);
    border-radius: var(--radius-xl);
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 5%;
    color: #b1b1b1;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    height: 50px;
}

.header-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    margin: 0 auto;
}

.header-link {
    padding: 5px 10px;
    border-radius: 5px;
    transition: color var(--transition-normal);
}

.header-link:hover {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.875rem;
    color: white;
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 50;
}

@media (max-width: 1023px) {
    .menu-toggle { display: block; }
    
    .header-collapse {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 0;
        flex-direction: column;
        background: #040404;
        padding: 5% 5px;
        overflow: hidden;
        transition: width var(--transition-normal);
        box-shadow: -3px 0 10px rgba(0,0,0,0.5);
        opacity: 0;
    }
    
    .header-collapse.open {
        width: 60vw;
        opacity: 1;
    }
    
    .header-nav {
        flex-direction: column;
        margin-top: 30px;
        align-items: flex-end;
    }
    
    .header-link {
        color: white;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
    overflow: hidden;
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 600;
    text-align: center;
    line-height: 80px;
}

.hero-subtitle {
    font-size: var(--text-4xl);
    color: white;
}

/* Dashboard/Phone Mockup */
#dashboard-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: var(--space-8);
}

#dashboard {
    position: relative;
    max-width: 700px;
    max-height: 700px;
    overflow: visible;
}

#dashboard img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Gold Glow Effect */
.hero-glow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.3) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */

section {
    width: 100%;
    max-width: 100vw;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 500;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   BADGES / TRUST
   ═══════════════════════════════════════════════════════════ */

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: #111;
    border: 1px solid var(--mz-gray-800);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES / BENEFITS
   ═══════════════════════════════════════════════════════════ */

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

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

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */

.faq {
    background: var(--mz-dark);
    border: 1px solid var(--mz-gray-800);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    font-size: var(--text-xl);
    color: var(--mz-gray-100);
    user-select: none;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: var(--mz-gray-300);
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq.open .faq-content {
    max-height: 200px;
    padding: 20px 18px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    margin-top: auto;
    padding: 5% 10%;
    border-top: 1px solid var(--mz-gray-800);
}

.footer-link {
    color: var(--mz-gray-400);
    transition: color var(--transition-normal);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    padding: var(--space-4);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--mz-gray-500);
    border-top: 1px solid var(--mz-gray-800);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS (for GSAP)
   ═══════════════════════════════════════════════════════════ */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Hero-Elemente sofort sichtbar - werden durch JS animiert */
.hero-title.reveal-up {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--text-4xl);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 50px;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        line-height: 1.4;
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .hide-mobile {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

.pointer { cursor: pointer; }
.select-none { user-select: none; }

.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Icon sizing */
.icon-sm { font-size: 1rem; }
.icon-md { font-size: 1.5rem; }
.icon-lg { font-size: 2rem; }
.icon-xl { font-size: 3rem; }

/* ═══════════════════════════════════════════════════════════
   END OF MZ.CSS
   ═══════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════════ */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.toast-success {
    background: #10b981;
    color: white;
}

.toast-error {
    background: #ef4444;
    color: white;
}

.toast-info {
    background: var(--mz-navy);
    border: 1px solid var(--mz-gold);
    color: white;
}

.toast button {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

.toast button:hover {
    opacity: 1;
}

.toast-fade {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ═══════════════════════════════════════════════════════════
   MZ-PLANS SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════ */

/* iPhone 15 Mockup */
.iphone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 0 0 3px #333,
        0 0 0 6px #1a1a1a,
        0 25px 50px rgba(0,0,0,0.5),
        inset 0 0 10px rgba(255,255,255,0.05);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 20px;
    z-index: 10;
}

.iphone-mockup.starter-form {
    width: 350px;
    height: 627px;
    animation: none;
}

.iphone-mockup.glow-blue {
    animation: pulseGlowBlue 2.5s ease-in-out infinite;
}

.iphone-mockup.glow-enterprise {
    animation: pulseGlowEnterprise 2.5s ease-in-out infinite;
}

.iphone-mockup.glow-orbit {
    animation: none;
    position: relative;
    overflow: visible;
    box-shadow: 0 0 50px rgba(212,168,75,0.5), 0 0 0 3px var(--mz-gold);
}

.iphone-mockup.glow-orbit::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 53px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 35%,
        rgba(255,255,255,0.6) 45%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0.6) 55%,
        transparent 65%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: glanceFlare 3s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}


/* Plan Screen Inside Phone */
.plan-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 20px 30px;
}

.plan-screen.free {
    background: linear-gradient(180deg, #1e3a5f 0%, #0a1628 100%);
}

.plan-screen.pro {
    background: linear-gradient(180deg, #c0c0c0 0%, rgb(63,128,235) 100%);
}

.plan-screen.enterprise {
    background: linear-gradient(180deg, #0a0a0a 0%, #1e3a5f 100%);
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
}

.plan-badge.free {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.plan-badge.pro {
    background: rgb(63,128,235);
    color: #c0c0c0;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.plan-badge.enterprise {
    background: linear-gradient(135deg, #d4a84b, #f0d78c);
    color: #0a0a0a;
}

.plan-price {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}

.plan-slots {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.plan-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.plan-feature i {
    color: var(--mz-gold);
    font-size: 14px;
}


/* Plan CTA Buttons */
.plan-cta {
    margin-top: auto;
    padding: 14px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    display: block;
}

.plan-cta:hover {
    transform: scale(1.02);
}

.plan-cta.free {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.plan-cta.pro {
    background: #0a0a0a;
    color: rgb(63,128,235);
}

.plan-cta.enterprise {
    background: linear-gradient(135deg, #d4a84b, #b8922f);
    */
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    
    */
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(212,168,75,0.4);
}

/* Plan Sections Layout */
.plans-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 40px 20px;
}

.plan-section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    width: 100%;
}

.plan-section.reverse {
    flex-direction: row-reverse;
}

.plan-info {
    flex: 1;
}

.plan-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.plan-info p {
    color: var(--mz-gray-400);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.plan-info .price-highlight {
    font-size: 24px;
    font-weight: 600;
}


/* Plans Page Animations */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(212,168,75,0.4), 0 0 80px rgba(212,168,75,0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 60px rgba(212,168,75,0.6), 0 0 120px rgba(212,168,75,0.4), 0 0 180px rgba(212,168,75,0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(212,168,75,0.4), 0 0 80px rgba(212,168,75,0.2);
    }
}

@keyframes pulseGlowBlue {
    0% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(30,58,95,0.5), 0 0 80px rgba(212,168,75,0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 60px rgba(30,58,95,0.7), 0 0 120px rgba(212,168,75,0.35), 0 0 180px rgba(212,168,75,0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(30,58,95,0.5), 0 0 80px rgba(212,168,75,0.2);
    }
}

@keyframes pulseGlowEnterprise {
    0% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(212,168,75,0.5), 0 0 0 3px #d4a84b;
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 80px rgba(212,168,75,0.7), 0 0 150px rgba(212,168,75,0.4), 0 0 0 5px #f0d78c;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(212,168,75,0.5), 0 0 0 3px #d4a84b;
    }
}

@keyframes glanceFlare {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Registration Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}


/* Form inside mockup */
.form-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #1a1a1a 0%, #2d2d2d 50%, #3a3a3a 100%);
    padding: 55px 20px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.form-screen h3 {
    color: var(--mz-gold);
    font-size: 18px;
    margin: 0 0 5px;
    text-align: center;
}

.form-screen .step-indicator {
    color: var(--mz-gray-400);
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px;
}

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

.form-group label {
    display: block;
    color: var(--mz-gray-400);
    font-size: 11px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(212,168,75,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mz-gold);
    background: rgba(255,255,255,0.1);
}

.form-group input::placeholder {
    color: var(--mz-gray-500);
}

.form-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    margin-top: 10px;
}

.form-btn:hover {
    transform: scale(1.02);
}

.form-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-btn.primary {
    background: linear-gradient(135deg, #d4a84b, #b8922f);
    */
}

.form-btn.secondary {
    background: transparent;
    border: 1px solid rgba(212,168,75,0.5);
    color: var(--mz-gold);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--mz-gray-400);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.form-close:hover {
    color: #fff;
}

.form-error {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 48px;
    color: #48bb78;
    margin-bottom: 15px;
}

.form-success h3 {
    color: #fff;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--mz-gray-400);
    font-size: 13px;
}


/* Calculator Section */
.calculator-section {
    background: var(--mz-navy);
    border: 1px solid rgba(212,168,75,0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.calculator-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(212,168,75,0.5);
}

.calculator-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    
    cursor: pointer;
    border: none;
}

.price-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.price-card.recommended {
    background: rgba(212,168,75,0.15);
    border-color: var(--mz-gold);
    transform: scale(1.05);
}

.price-card h4 {
    font-size: 14px;
    color: var(--mz-gray-400);
    margin-bottom: 8px;
}

.price-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.price-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--mz-gray-400);
}

/* Plans Page Responsive */
@media (max-width: 768px) {
    .plan-section,
    .plan-section.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .iphone-mockup {
        width: 240px;
        height: 490px;
    }
    
    .plan-info h3 {
        font-size: 26px;
    }
    
    .calculator-section {
        padding: 20px;
    }
}

.hide-mobile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
