/* Zlink AI PWA Styles */
:root {
    --bg-primary: #1a1d29;
    --bg-secondary: #252836;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --purple-primary: #8b5cf6;
    --purple-secondary: #a855f7;
    --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 20px;
}

/* Animated background shapes */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Floating shapes */
.floating-shape {
    position: fixed;
    border-radius: 20px;
    background: var(--purple-gradient);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Glass morphism effects */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-button {
    background: var(--purple-gradient);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.glass-button:hover::before {
    left: 100%;
}

.glass-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Header */
.header {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navigation tabs */
.nav-tabs {
    border: none;
    margin-bottom: 30px;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: 15px;
    margin: 0 10px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-tabs .nav-link:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: var(--purple-gradient);
    color: white;
    border-color: var(--purple-primary);
}

/* Upload area */
.upload-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.upload-area {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px dashed var(--glass-border);
    border-radius: 25px;
    padding: 60px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: var(--purple-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.upload-area:hover::before {
    opacity: 0.05;
}

.upload-area:hover {
    border-color: var(--purple-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.upload-area.dragover {
    border-color: var(--purple-secondary);
    background: rgba(139, 92, 246, 0.1);
}

.upload-icon {
    font-size: 4rem;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.upload-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upload-subtitle {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Button group for upload area */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-group .glass-button {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.button-group .glass-button i {
    margin-right: 8px;
}

/* Call forwarding section */
.call-forwarding-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.call-forwarding-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
}

.phone-display {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.forwarding-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-activate {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 15px;
    padding: 16px 24px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-activate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-activate:hover::before {
    left: 100%;
}

.btn-activate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.btn-deactivate {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    border-radius: 15px;
    padding: 16px 24px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-deactivate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-deactivate:hover::before {
    left: 100%;
}

.btn-deactivate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.status {
    margin-top: 25px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.status.show {
    opacity: 1;
    transform: translateY(0);
}

.status.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status.info {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-primary);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Features section */
.features-section {
    margin-top: 40px;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.features-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--purple-primary);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--purple-primary);
    width: 30px;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.5;
}

.iphone-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    color: var(--text-secondary);
    text-align: center;
}

.iphone-note strong {
    color: #f59e0b;
}

/* Progress section (reused styles) */
.progress-container {
    display: none;
    margin-top: 30px;
}

.progress-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
}

.progress-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.custom-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.custom-progress-bar {
    height: 100%;
    background: var(--purple-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.custom-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Processing steps */
.processing-steps {
    margin-top: 20px;
}

.step {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.step i {
    margin-right: 12px;
    width: 20px;
}

.step.active {
    background: rgba(139, 92, 246, 0.1);
    border-left-color: var(--purple-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.step.completed {
    background: rgba(34, 197, 94, 0.1);
    border-left-color: #22c55e;
    color: #22c55e;
}

.step.error {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
    color: #ef4444;
}

/* Modal styling */
.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.modal-header {
    background: var(--purple-gradient);
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid var(--glass-border);
}

.modal-body {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

.modal-footer {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-radius: 0 0 20px 20px;
}

.client-preview {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
}

.field-group {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--purple-primary);
}

.field-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-value {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Alerts */
.alert {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
}

.alert-success {
    border-left: 4px solid #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.alert-danger {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.alert-warning {
    border-left: 4px solid #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.alert-info {
    border-left: 4px solid var(--purple-primary);
    background: rgba(139, 92, 246, 0.1);
}

/* Buttons */
.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-purple {
    background: var(--purple-gradient);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

/* Tab content */
.tab-content {
    border: none;
}

.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* iPhone install prompt animations */
@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-100px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(100px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsive */
@media (max-width: 768px) {
    .upload-area {
        padding: 40px 15px;
        min-height: 300px;
    }

    .upload-icon {
        font-size: 3rem;
    }

    .upload-title {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-tabs .nav-link {
        margin: 5px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .call-forwarding-card {
        padding: 30px 20px;
    }

    .forwarding-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Marketing Landing Page Styles */
.marketing-section {
    position: relative;
    z-index: 1;
}

/* Hero-Tool Side by Side Section */
.hero-tool-section {
    padding: 40px 0;
    min-height: 90vh;
}

.hero-content {
    padding-right: 30px;
}

.logo-section .logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.logo-section .subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.tool-container {
    padding-left: 30px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 60px;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 20px 40px;
    border-radius: 25px;
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Problem Section */
.problem-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin: 40px 0;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step-card:hover::before {
    opacity: 0.05;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--purple-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Features Section */
.features-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--purple-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Setup Section */
.setup-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin: 40px 0;
}

/* Activation Section */
.activation-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin: 40px 0;
}

.activation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
}

.activation-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.forwarding-explanation {
    margin: 40px 0;
    text-align: left;
}

.forwarding-explanation h4 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 600;
}

.explanation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.explanation-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.explanation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.explanation-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--purple-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.explanation-item h5 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.explanation-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.manual-instructions {
    margin: 40px 0;
    text-align: left;
}

.manual-instructions h4 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.instruction-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.setup-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.setup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.setup-step {
    display: inline-block;
    background: var(--purple-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.setup-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.setup-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.forwarding-instructions {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.instruction-group {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--purple-primary);
}

.instruction-group h6 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.instruction-group p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.instruction-group code {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-primary);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.note strong {
    color: #f59e0b;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card:hover::before {
    opacity: 0.05;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-primary);
}

.pricing-header {
    background: var(--purple-gradient);
    padding: 30px;
    text-align: center;
    color: white;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.pricing-features .feature-item:last-child {
    border-bottom: none;
}

/* Comparison Section */
.comparison-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin: 40px 24px;
}

/* Details Section */
.details-section {
    padding: 60px 0;
}

.detail-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.detail-card h5 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
}

.detail-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin: 40px 0 20px 0;
    text-align: center;
}



.cta-buttons {
    margin-bottom: 20px;
}

.cta-note {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.1rem;
}

/* Mobile Responsiveness for Marketing Section */
@media (max-width: 768px) {
    .hero-tool-section {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .tool-container {
        padding-left: 0;
    }

    .logo-section .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .step-card,
    .feature-card,
    .setup-card,
    .detail-card {
        margin-bottom: 20px;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-features .feature-item {
        font-size: 1rem;
    }
}

/* Dashboard Styles */
.dashboard-login-container {
    padding: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-form-container {
    padding: 20px;
    min-height: 500px;
}

.dashboard-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.login-step {
    transition: all 0.3s ease;
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.btn-purple {
    background: var(--purple-gradient);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-purple:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.5);
    color: white;
}

.btn-purple:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
}

.btn-outline-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-outline-danger {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: white;
}

.spinner-border.text-purple {
    color: var(--purple-primary) !important;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 16px;
    margin-bottom: 20px;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f87171;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.btn-close {
    filter: invert(1);
    opacity: 0.7;
}

.btn-close:hover {
    opacity: 1;
}

/* Form row spacing */
.row {
    margin-left: -12px;
    margin-right: -12px;
}

.row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

/* Responsive dashboard styles */
@media (max-width: 768px) {
    .dashboard-login-card,
    .dashboard-form-card {
        padding: 25px;
        margin: 10px;
    }

    .dashboard-header {
        text-align: center;
    }

    .dashboard-header > div {
        flex-direction: column !important;
        gap: 15px;
    }
}