/* ============================
   NEXT-LEVEL DESIGN TOKENS
   Premium Indigo Theme 2025
   ============================ */
:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #e0e7ff;
    --primary-glow: rgba(79, 70, 229, 0.25);
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #10b981;
    --accent-rose: #ec4899;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    --success: #10b981;
    --success-light: #d1fae5;
    --info: #3b82f6;
    --info-light: #eff6ff;
    --bg-body: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-main: #0f172a;
    --text-sec: #475569;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-light: rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-glow: 0 0 25px rgba(79, 70, 229, 0.3);
    --shadow-success: 0 0 20px rgba(16, 185, 129, 0.25);
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.25s cubic-bezier(0.2, 0, 0, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   GLOBAL RESET & UTILITIES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Utility Classes */
.hidden { display: none !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* =========================================
   BACKGROUND LAYER (Mesh Gradient)
   ========================================= */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, rgba(16, 185, 129, 0.02) 80%);
}
.mesh-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 70%, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* =========================================
   MAIN LAYOUT
   ========================================= */
main {
    flex: 1;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 48px 0 32px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}
h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.subhead {
    font-size: 1.2rem;
    color: var(--text-sec);
    max-width: 600px;
    margin: 16px auto 0;
}

/* =========================================
   CARD MODERN
   ========================================= */
.card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    max-width: 680px;
    margin: 0 auto;
    padding: 36px 32px;
}
.card-modern:hover {
    box-shadow: var(--shadow-glow);
}

/* =========================================
   FORM & INPUT STYLING
   ========================================= */
.input-group {
    margin-bottom: 20px;
}
.input-group label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
    color: var(--text-main);
}
.input-icon {
    position: relative;
}
.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 2;
}
.input-icon input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--border);
    border-radius: 60px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: white;
}
.input-icon input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
    outline: none;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.error-text {
    color: var(--danger);
    font-size: 0.75rem;
    margin-top: 6px;
    text-align: center;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    background: linear-gradient(105deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    width: 100%;
    padding: 14px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
}
.btn-success {
    background: linear-gradient(105deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

/* =========================================
   PREVIEW SECTION
   ========================================= */
.preview-card {
    margin-top: 32px;
    border-top: 2px dashed #eef2ff;
    padding-top: 28px;
    animation: fadeUp 0.4s ease;
}
.preview-flex {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}
.preview-img {
    flex: 1;
    min-width: 140px;
    background: #f1f5f9;
    border-radius: 24px;
    padding: 12px;
    text-align: center;
}
.preview-img img {
    max-width: 100%;
    max-height: 160px;
    border-radius: 16px;
    object-fit: contain;
}
.preview-details {
    flex: 2;
}
.preview-thumb {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
}
.preview-title {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.secure-note {
    font-size: 12px;
    margin-top: 14px;
    text-align: center;
    color: var(--text-muted);
}
.secure-note i {
    margin-right: 4px;
}

/* Preview Meta Badges */
.preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.meta-badge i {
    font-size: 0.65rem;
}
.meta-formats {
    font-size: 0.75rem;
    color: var(--text-sec);
    padding: 4px 0;
}
.meta-formats i {
    color: var(--primary);
    margin-right: 4px;
}

/* =========================================
   DECISION SECTION (Preview → Choose)
   ========================================= */
.decision-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.4s ease;
}
.decision-divider {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    position: relative;
}
.decision-divider span {
    background: var(--bg-body);
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.decision-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}
.decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.decision-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
}
.decision-card:hover {
    transform: translateY(-3px);
}
.decision-card.premium:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.2);
}
.decision-card.free:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}
.decision-card.premium {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(79, 70, 229, 0.02) 100%);
}
.decision-card.free {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%);
}
.decision-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.decision-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.decision-header i {
    font-size: 1.5rem;
    color: var(--primary);
}
.decision-card.free .decision-header i {
    color: var(--secondary);
}
.decision-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
}
.decision-header h3 span {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-sec);
}
.decision-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    text-align: left;
}
.decision-benefits li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-sec);
    display: flex;
    align-items: center;
    gap: 8px;
}
.decision-benefits li i {
    width: 16px;
    font-size: 0.8rem;
}
.decision-card.premium .decision-benefits li i {
    color: var(--primary);
}
.decision-card.free .decision-benefits li i {
    color: var(--secondary);
}
.decision-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}
.decision-price.free-price {
    color: var(--secondary);
}
.decision-card .btn-primary {
    font-size: 0.85rem;
    padding: 12px 16px;
}

/* Section divider for premium/free sections */
.section-divider {
    margin: 28px 0 20px 0;
    text-align: center;
}
.section-divider span {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}
#freeSection .section-divider span {
    background: var(--secondary);
}

@media (max-width: 640px) {
    .decision-grid {
        grid-template-columns: 1fr;
    }
    .decision-card {
        padding: 16px;
    }
}

/* =========================================
   FEATURE PILLS
   ========================================= */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 48px 0 32px;
}
.pill {
    background: white;
    padding: 10px 20px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-sec);
    transition: var(--transition-fast);
}
.pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* =========================================
   SEO BLOCK — POLISHED
   ========================================= */
.seo-block {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}
.seo-block h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-block h2:first-child {
    margin-top: 0;
}
.seo-block h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1em;
    background: var(--primary);
    border-radius: 4px;
    flex-shrink: 0;
}
.seo-block p {
    color: var(--text-sec);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.seo-block ul {
    margin: 12px 0 16px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.seo-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.5;
}
.seo-block ul li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.seo-block ul li strong {
    color: var(--text-main);
}
.seo-block hr {
    margin: 28px 0;
    border: none;
    border-top: 1px solid var(--border);
}
.seo-block p:last-child {
    margin-bottom: 0;
}

/* =========================================
   FOOTER — REDESIGNED
   ========================================= */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 64px 0 0;
    margin-top: 80px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid #1e293b;
}
/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    display: flex;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.footer-logo .logo-dl   { color: #f8fafc; }
.footer-logo .logo-premium { color: var(--primary); }
.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 280px;
    margin-bottom: 20px;
}
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1e293b;
    border: 1px solid #334155;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
}
.footer-badge i {
    color: var(--secondary);
    font-size: 0.7rem;
}
/* Nav group */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f1f5f9;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}
.footer a:hover {
    color: var(--primary);
    transform: translateX(3px);
}
.footer a i.fa-chevron-right {
    font-size: 0.6rem;
    color: #334155;
    transition: var(--transition-fast);
}
.footer a:hover i.fa-chevron-right {
    color: var(--primary);
    transform: translateX(2px);
}
/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid #334155;
    padding: 24px 0 20px;
    font-size: 0.8rem;
    color: #334155;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #475569;
    font-size: 0.8rem;
    gap: 0;
}
.footer-bottom-links a:hover {
    color: var(--primary);
    transform: none;
}

/* =========================================
   CHAT WIDGET (Complete)
   ========================================= */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
}

.chat-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
}



.chat-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-panel.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.chat-panel-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-panel-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-panel-body {
    padding: 20px;
    background: white;
}

.chat-input-group {
    margin-bottom: 14px;
}

.chat-input-group input,
.chat-input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #f8fafc;
}

.chat-input-group input:focus,
.chat-input-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
    background: white;
}

.chat-input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.chat-send-btn {
    background: linear-gradient(105deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.chat-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.chat-feedback {
    font-size: 0.75rem;
    margin-top: 12px;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
}

.chat-feedback.success {
    background: #d1fae5;
    color: #059669;
}

.chat-feedback.error {
    background: #fef2f2;
    color: #dc2626;
}

.chat-online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    color: var(--text-muted);
}

.chat-online-status i {
    font-size: 0.6rem;
    color: #10b981;
    animation: blink 1.5s infinite;
}

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

/* =========================================
   MODALS & LOADERS
   ========================================= */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.loader-overlay.active {
    visibility: visible;
    opacity: 1;
}

.loader-overlay > div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-overlay .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px auto;
}

.loader-overlay p {
    margin-top: 12px;
    font-weight: 500;
    text-align: center;
    color: var(--text-main);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}
.modal.active {
    visibility: visible;
    opacity: 1;
}
.modal-content {
    background: white;
    max-width: 420px;
    width: 90%;
    padding: 32px;
    border-radius: 40px;
    text-align: center;
    transform: scale(0.95);
    transition: 0.2s;
}
.modal.active .modal-content {
    transform: scale(1);
}

/* =========================================
   HEADER
   ========================================= */
.glass-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
/* Logo Tokens */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    flex-shrink: 0;
}
.logo-dl {
    color: #0f172a;
}
.logo-premium {
    color: var(--primary);
}
/* Footer logo inherits same tokens */
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
/* Desktop Nav */
.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-sec);
    padding: 7px 12px;
    border-radius: 40px;
    transition: var(--transition-fast);
}
.nav-link:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.06);
}
.nav-link.nav-active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(79, 70, 229, 0.08);
}
.telegram-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    padding: 8px 16px;
    border-radius: 40px;
    color: #fff;
    background: #229ed9;
    box-shadow: 0 5px 14px rgba(34, 158, 217, 0.24);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition-fast);
}
.telegram-join-btn:hover {
    color: #fff;
    background: #168ac0;
    transform: translateY(-1px);
}
.telegram-mobile-link {
    color: #168ac0 !important;
    font-weight: 700 !important;
}
.footer-telegram-link {
    color: #38bdf8 !important;
    font-weight: 600;
}
.footer-telegram-link:hover {
    color: #7dd3fc !important;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 18px;
    border-radius: 40px;
    transition: var(--transition-base);
    margin-left: 8px;
}

/* Old support-badge kept for backwards compat */
.support-badge {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    color: white !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-base);
}
.support-badge:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
/* Mobile Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}
.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-hamburger:hover {
    background: #f8fafc;
    border-color: var(--primary);
}
/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 12px 20px 16px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}
.mobile-nav.open {
    display: flex;
    animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-sec);
    padding: 10px 14px;
    border-radius: 12px;
    transition: var(--transition-fast);
}
.mobile-nav a:hover,
.mobile-nav a.nav-active {
    background: rgba(79, 70, 229, 0.06);
    color: var(--primary);
}


/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    h1 { font-size: 2.2rem; }
    .card-modern { padding: 24px; }
    /* Footer responsive */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-nav-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .two-col { grid-template-columns: 1fr; gap: 16px; }
    .preview-flex { flex-direction: column; text-align: center; }
    .footer-nav-group { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.3rem; }
    .nav-hamburger { width: 36px; height: 36px; }
    .footer-nav-group { grid-template-columns: 1fr; }
    .footer-trust-badges { gap: 6px; }
    .chat-panel {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 70px;
    }
    .chat-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* =========================================
   UNIFIED PLATFORM ADDITIONS
   ========================================= */
.mode-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}
.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-sec);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.tab-btn:hover {
    color: var(--text-main);
}
.tab-btn.active.free {
    background: var(--secondary);
    color: white;
}
.tab-btn.active.premium {
    background: var(--primary);
    color: white;
}
.free-limit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 10px;
}
.free-instructions {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    margin: 15px 0;
    font-size: 0.85rem;
    color: var(--text-sec);
    text-align: left;
}
.free-upsell-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-md);
    background: rgba(79, 70, 229, 0.05);
    border: 1px dashed var(--primary);
    text-align: center;
}
.btn-secondary-mode {
    background: linear-gradient(105deg, var(--secondary), var(--secondary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.btn-secondary-mode:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.free-success-content {
    text-align: center;
    padding: 10px;
}
.free-link-display {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-main);
    word-break: break-all;
    margin: 15px 0;
    border: 1px solid var(--border);
}

/* =========================================
   UNIFIED PLATFORM ADDITIONS & COMMON STYLES
   ========================================= */
/* =========================================
   LEGAL PAGES (.legal-*)
   ========================================= */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}
.legal-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.legal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 40px;
    text-align: center;
    color: white;
}
.legal-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}
.legal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}
.legal-content {
    padding: 48px 40px;
}
.legal-section {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.legal-section h3 i {
    color: var(--primary);
    font-size: 1.4rem;
}
.legal-section p {
    color: var(--text-sec);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 12px;
}
.legal-section ul {
    margin: 16px 0 0 24px;
    color: var(--text-sec);
    line-height: 1.7;
}
.legal-section li {
    margin-bottom: 8px;
}
.badge-legal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}
.last-updated {
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.data-protection-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
    justify-content: center;
}
.protection-item {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.contact-email-list {
    list-style: none;
    margin-left: 0 !important;
    padding-left: 0;
}
.contact-email-list li {
    margin-bottom: 12px;
}
.highlight-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--border);
}
.highlight-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-sec);
}
.alert-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
    border-left: 4px solid var(--warning);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 40px;
}
.alert-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--warning);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-card p {
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 0;
}
.contact-support {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 28px 32px;
    text-align: center;
    margin-top: 32px;
    color: white;
}
.contact-support h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.contact-support p {
    margin-bottom: 16px;
    opacity: 0.95;
}
.contact-support a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}
.contact-support a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =========================================
   CONTACT PAGE (.contact-*)
   ========================================= */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}
.contact-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.contact-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 40px;
    text-align: center;
    color: white;
}
.contact-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}
.contact-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}
.contact-content {
    padding: 48px 40px;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.info-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}
.info-card p {
    color: var(--text-sec);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.info-card a:hover {
    text-decoration: underline;
}
.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}
.contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-form-wrapper h3 i {
    color: var(--primary);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-main);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: white;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    outline: none;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    background: linear-gradient(105deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    width: 100%;
    padding: 14px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
}
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.badge-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}
.response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 20px;
    line-height: 1.4;
}
.faq-link {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.faq-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.faq-link a:hover {
    text-decoration: underline;
}
.form-success {
    background: #d1fae5;
    color: #059669;
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    text-align: center;
    display: none;
    font-weight: 500;
}
.form-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    text-align: center;
    display: none;
    font-weight: 500;
}

/* =========================================
   FAQ PAGE (.faq-*)
   ========================================= */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
}
.faq-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.faq-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 40px;
    text-align: center;
    color: white;
}
.faq-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}
.faq-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}
.faq-content {
    padding: 48px 40px;
}
.faq-search {
    margin-bottom: 40px;
}
.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}
.search-box input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--border);
    border-radius: 60px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: white;
}
.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    outline: none;
}
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}
.category-btn {
    background: #f1f5f9;
    border: none;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-sec);
    cursor: pointer;
    transition: var(--transition-fast);
}
.category-btn.active {
    background: var(--primary);
    color: white;
}
.category-btn:hover:not(.active) {
    background: #e2e8f0;
    transform: translateY(-1px);
}
.faq-section {
    margin-bottom: 48px;
}
.faq-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}
.faq-section h3 i {
    color: var(--primary);
    font-size: 1.4rem;
}
.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}
.faq-item:hover {
    border-color: var(--primary);
}
.faq-question {
    background: white;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}
.faq-question .fa-chevron-down {
    font-size: 0.9rem;
}
.faq-answer {
    background: #f8fafc;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    padding: 20px 24px;
    max-height: 500px;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer p {
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 12px;
}
.faq-answer ul {
    margin: 12px 0 0 24px;
    color: var(--text-sec);
    line-height: 1.7;
}
.faq-answer li {
    margin-bottom: 8px;
}
.no-results {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    display: none;
}
.no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #cbd5e1;
}
.still-need-help {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}
.still-need-help h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}
.still-need-help p {
    color: var(--text-sec);
    margin-bottom: 20px;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(105deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
}
.badge-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

/* =========================================
   FEATURES GRID CARD & HOW IT WORKS STEP CARDS
   ========================================= */
.benefits-section {
    margin-top: 60px;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}
.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-glow);
}
.feature-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}
.feature-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
}
.feature-card-desc {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.6;
}

.steps-section {
    margin: 80px 0;
    text-align: center;
}
.steps-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.steps-section-subtitle {
    color: var(--text-sec);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    position: relative;
}
.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-base);
}
.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}
.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin: 16px 0 12px;
}
.step-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}
.step-desc {
    font-size: 0.85rem;
    color: var(--text-sec);
    line-height: 1.5;
}

/* =========================================
   ADDITIONAL RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    .legal-header, .contact-header, .faq-header { padding: 32px 24px; }
    .legal-header h1, .contact-header h1, .faq-header h1 { font-size: 1.8rem; }
    .legal-content, .contact-content, .faq-content { padding: 32px 24px; }
    .faq-question { padding: 16px 20px; font-size: 0.9rem; }
    .faq-item.open .faq-answer { padding: 16px 20px; }
    .faq-section h3, .legal-section h3 { font-size: 1.25rem; }
    .alert-card { padding: 20px; }
    .contact-support { padding: 24px 20px; }
    .info-grid { grid-template-columns: 1fr; gap: 16px; }
    .contact-form-wrapper { padding: 24px; }
    .steps-grid { gap: 40px; }
    .step-card { padding-top: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-section h2 { font-size: 1.8rem; }
}

/* =========================================
   SEO GRID FOR TWO-COLUMN HOMEPAGE CONTENT
   ========================================= */
.seo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}
@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =========================================
   HOMEPAGE FAQ CARD (within seo-grid)
   ========================================= */
/* Scope overrides to the homepage faq-card specifically */
.homepage-faq .faq-header {
    padding: 24px 28px;
}
.homepage-faq .faq-header h3 {
    font-size: 1.15rem;
    margin: 0;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.homepage-faq .faq-content {
    padding: 20px 20px;
}
.homepage-faq .faq-question {
    font-size: 0.875rem;
    padding: 12px 16px;
}
.homepage-faq .faq-item.open .faq-answer {
    padding: 12px 16px;
}

/* ============================
   FREE MODE OVERRIDES (Green Theme)
   Applied when body has .free-mode class
   ============================ */
.free-mode {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --primary-glow: rgba(16, 185, 129, 0.25);
    --secondary: #4f46e5;
    --secondary-dark: #4338ca;
}

.free-mode .free-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 8px;
    vertical-align: middle;
    line-height: 1.4;
}

.free-mode .mode-tabs { display: none; }

.free-mode .free-limit-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Free Contact Page Styles */
.free-mode .contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.free-mode .contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.free-mode .contact-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 40px;
    text-align: center;
    color: white;
}
.free-mode .contact-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}
.free-mode .contact-header p { color: rgba(255, 255, 255, 0.9); font-size: 1rem; }
.free-mode .badge-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}
.free-mode .contact-content { padding: 48px 40px; }
.free-mode .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.free-mode .info-card {
    background: var(--bg-body);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.free-mode .info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.free-mode .info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.free-mode .info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}
.free-mode .info-card p { color: var(--text-sec); font-size: 0.9rem; margin-bottom: 12px; }
.free-mode .info-card a { color: var(--primary); text-decoration: none; font-weight: 600; }
.free-mode .info-card a:hover { text-decoration: underline; }
.free-mode .contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}
.free-mode .contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.free-mode .contact-form-wrapper h3 i { color: var(--primary); }
.free-mode .form-group { margin-bottom: 20px; }
.free-mode .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-main);
}
.free-mode .form-group input,
.free-mode .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    background: white;
}
.free-mode .form-group input:focus,
.free-mode .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    outline: none;
}
.free-mode .form-group textarea { resize: vertical; min-height: 120px; }
.free-mode .btn-submit {
    background: linear-gradient(105deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    width: 100%;
    padding: 14px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--primary-glow);
}
.free-mode .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}
.free-mode .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.free-mode .response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-body);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 20px;
}
.free-mode .form-success {
    background: var(--primary-light);
    color: #065f46;
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: center;
    display: none;
}
.free-mode .form-error {
    background: #fef2f2;
    color: var(--danger);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

/* Free Legal Page Styles */
.free-mode .legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.free-mode .legal-card {
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    backdrop-filter: none;
}
.free-mode .legal-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 48px 40px 20px;
    border-bottom: 2px solid var(--border);
    background: none;
    color: inherit;
}
.free-mode .legal-header h1 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}
.free-mode .legal-header .last-updated {
    color: var(--text-muted);
    font-size: 14px;
    background: none;
    padding: 0;
    margin-top: 0;
}
.free-mode .legal-content {
    padding: 0 40px 48px;
}
.free-mode .legal-section {
    margin-bottom: 32px;
    border-bottom: none;
    padding-bottom: 0;
}
.free-mode .legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.free-mode .legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 0 12px;
}
.free-mode .legal-section p {
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 16px;
}
.free-mode .legal-section ul,
.free-mode .legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-sec);
    line-height: 1.7;
}
.free-mode .legal-section li { margin-bottom: 8px; }
.free-mode .legal-highlight {
    background: var(--bg-body);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin: 20px 0;
}
.free-mode .legal-highlight p { margin-bottom: 0; }
.free-mode .legal-note {
    background: var(--primary-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}
.free-mode .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}
.free-mode .back-link:hover { gap: 12px; color: var(--primary-dark); }

@media (max-width: 768px) {
    .free-mode .contact-header h1 { font-size: 1.8rem; }
    .free-mode .contact-content { padding: 32px 24px; }
    .free-mode .info-grid { grid-template-columns: 1fr; gap: 16px; }
    .free-mode .contact-form-wrapper { padding: 24px; }
    .free-mode .legal-content { padding: 0 24px 32px; }
    .free-mode .legal-header { padding: 32px 24px 16px; }
    .free-mode .legal-header h1 { font-size: 24px; }
    .free-mode .legal-section h2 { font-size: 18px; }
}

/* =========================================
   HOVER, SHADOW & TRANSITION OVERRIDES
   ========================================= */
*, *::before, *::after { box-shadow: none !important; }
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn-primary:hover, .btn-success:hover,
.btn-secondary-mode:hover, .btn-submit:hover,
.contact-btn:hover, .contact-support a:hover,
.pill:hover, .category-btn:hover:not(.active) {
    opacity: 0.9;
}
.feature-card:hover, .step-card:hover,
.info-card:hover {
    background: rgba(79, 70, 229, 0.03);
}
.faq-item:hover {
    background: rgba(79, 70, 229, 0.03);
    border-color: var(--border);
}
.tab-btn:hover { color: var(--text-sec); }
.faq-question:hover { background: rgba(79, 70, 229, 0.03); }

