/* ==========================================================================
   Speed Links - Modern Promotional Landing Page Styles
   ========================================================================== */

:root {
    --bg-main: #080c14;
    --bg-surface: #0f172a;
    --bg-card: rgba(18, 26, 43, 0.75);
    --bg-card-hover: rgba(28, 38, 62, 0.9);
    --bg-glass: rgba(15, 23, 42, 0.65);

    --primary: #e11d48;
    --primary-hover: #f43f5e;
    --primary-glow: rgba(225, 29, 72, 0.4);
    --primary-subtle: rgba(225, 29, 72, 0.12);

    --accent-cyan: #06b6d4;
    --accent-amber: #f59e0b;
    --accent-emerald: #10b981;
    --accent-blue: #3b82f6;

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(225, 29, 72, 0.3);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(225, 29, 72, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glows */
.landing-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -150px;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.18) 0%, rgba(225, 29, 72, 0) 70%);
}

.bg-glow-2 {
    top: 40%;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0) 70%);
}

.bg-glow-3 {
    bottom: 5%;
    right: 10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, rgba(225, 29, 72, 0) 70%);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 1;
}

.max-w-narrow {
    max-width: 860px;
}

/* Typography & Utilities */
.text-center { text-align: center; }
.text-accent { color: var(--primary); }

.gradient-text {
    background: linear-gradient(135deg, #ffffff 20%, #ff6b8b 60%, #e11d48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.55);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-highlight);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13.5px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.shadow-glow {
    box-shadow: 0 0 30px var(--primary-glow);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 12, 20, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
    transition: transform 0.3s ease;
}

.brand-logo:hover .brand-icon {
    transform: rotate(15deg) scale(1.05);
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.locale-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    gap: 6px;
}

.locale-btn {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.locale-btn:hover {
    color: var(--text-primary);
}

.locale-btn.active {
    color: #ffffff;
    background: rgba(225, 29, 72, 0.25);
    border: 1px solid var(--primary-glow);
}

.locale-divider {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.5;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 60px;
    padding-bottom: 90px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid var(--border-accent);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.badge-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #fda4af;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Trust Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon-wrapper {
    color: var(--primary);
    background: var(--primary-subtle);
    padding: 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Browser Mockup Visual */
.hero-visual {
    position: relative;
}

.browser-mockup {
    background: #111827;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 50px rgba(225, 29, 72, 0.15);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.browser-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.8), 0 0 60px rgba(225, 29, 72, 0.25);
}

.browser-header {
    background: #1e293b;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #eab308; }
.dot-green { background-color: #22c55e; }

.browser-tab-bar {
    display: flex;
    gap: 4px;
}

.mockup-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 6px;
    color: var(--text-muted);
}

.mockup-tab.active {
    background: #0f172a;
    color: var(--text-primary);
    font-weight: 600;
}

.tab-favicon {
    border-radius: 50%;
}

.tab-close {
    font-size: 13px;
    opacity: 0.6;
}

.browser-address-bar {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 3px 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    width: 190px;
    overflow: hidden;
    white-space: nowrap;
}

.browser-viewport {
    position: relative;
    background: #0b0f19;
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floating-tag {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-highlight);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.tag-top-right {
    top: 16px;
    right: 16px;
    border-color: rgba(225, 29, 72, 0.4);
    background: rgba(25, 15, 25, 0.85);
}

.tag-bottom-left {
    bottom: 16px;
    left: 16px;
    border-color: rgba(6, 182, 212, 0.4);
}

.tag-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* ==========================================================================
   Common Section Styles
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

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

.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-red {
    background: rgba(225, 29, 72, 0.12);
    color: var(--primary);
    border: 1px solid rgba(225, 29, 72, 0.3);
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.icon-amber {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-purple {
    background: rgba(168, 85, 247, 0.12);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.feature-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.feature-bullets li {
    font-size: 14px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-bullets li svg {
    color: var(--accent-emerald);
    flex-shrink: 0;
}

/* ==========================================================================
   Showcase Preview Section
   ========================================================================== */
.showcase-frame-container {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-frame {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(225, 29, 72, 0.2) 50%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 60px rgba(225, 29, 72, 0.2);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-pills-bar {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-highlight);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.showcase-pill {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

.pill-dot.blue {
    background-color: var(--accent-cyan);
}

.showcase-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Steps Section (How it works)
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-subtle);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.step-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary);
    border: 1px solid rgba(225, 29, 72, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.step-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card.highlighted {
    border-color: rgba(225, 29, 72, 0.4);
    box-shadow: 0 10px 40px -10px rgba(225, 29, 72, 0.2);
}

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

.rating-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.avatar-1 { background: linear-gradient(135deg, #e11d48, #be123c); }
.avatar-2 { background: linear-gradient(135deg, #06b6d4, #0284c7); }
.avatar-3 { background: linear-gradient(135deg, #10b981, #059669); }

.author-name {
    display: block;
    font-weight: 700;
    font-size: 14.5px;
}

.author-role {
    display: block;
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item[open] {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
}

.faq-question {
    padding: 20px 24px;
    font-size: 16.5px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    font-size: 11px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Bottom CTA Section
   ========================================================================== */
.cta-card {
    position: relative;
    background: linear-gradient(135deg, #181124 0%, #1a0f1b 50%, #1e112a 100%);
    border: 1px solid rgba(225, 29, 72, 0.4);
    border-radius: var(--radius-xl);
    padding: 70px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.7), 0 0 50px rgba(225, 29, 72, 0.2);
}

.cta-glow-effect {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(225, 29, 72, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

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

.cta-logo-img {
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.5);
}

.cta-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 70px 0 36px 0;
    background: #060910;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .brand-logo {
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 340px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-lang-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-lang-link:hover, .footer-lang-link.active {
    color: var(--primary);
    font-weight: 600;
}

.footer-links-grid,
.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col-title,
.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.footer-list,
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a,
.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        max-width: 500px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

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

    .cta-title {
        font-size: 28px;
    }

    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #0c1220;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
    }

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

    .mobile-toggle {
        display: flex;
    }

    .nav-cta span {
        display: none;
    }

    .footer-links-grid,
    .footer-links-group {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Auth / Login Page Styles
   ========================================================================== */
.auth-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
    overflow: hidden;
}

.auth-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(225, 29, 72, 0.15);
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.auth-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.auth-brand-logo:hover {
    transform: scale(1.02);
}

.auth-brand-logo .brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.5);
}

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

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.3);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: #fecdd3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.auth-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-top: 4px;
}

.auth-subtitle {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: -4px;
    max-width: 320px;
}

.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.4);
    border-radius: var(--radius-md);
    color: #ffe4e6;
    font-size: 13.5px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.auth-alert-icon {
    flex-shrink: 0;
    color: #f43f5e;
    margin-top: 2px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-control {
    width: 100%;
    padding: 12px 14px 12px 42px;
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    outline: none;
}

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

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
    background: rgba(15, 23, 42, 0.98);
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary-hover);
}

.auth-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
}

.auth-card-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-back-link:hover {
    color: var(--text-primary);
    transform: translateX(-3px);
}

.auth-page-footer {
    position: relative;
    z-index: 10;
    margin-top: 28px;
    text-align: center;
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Buy License Modal
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 13, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background: #0f172a;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 480px;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 50px rgba(225, 29, 72, 0.25);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-backdrop.active .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    color: #ffffff;
    background: rgba(225, 29, 72, 0.2);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.3);
    color: #fda4af;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.modal-price-box {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-bottom: 22px;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.price-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-details {
    font-size: 12.5px;
    color: #fda4af;
    font-weight: 600;
}

.modal-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 0 4px;
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.modal-feature-item svg {
    color: var(--accent-emerald);
    flex-shrink: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-guarantee {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================================================
   Payment Success Page
   ========================================================================== */
.payment-success-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.success-main-content {
    flex: 1;
    padding: 60px 0 80px;
    display: flex;
    align-items: center;
}

.success-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 50px rgba(16, 185, 129, 0.15);
}

.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    color: var(--accent-emerald);
}

.success-icon-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(16, 185, 129, 0.4);
    animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: #6ee7b7;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-badge .pulse-dot {
    background-color: var(--accent-emerald);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

.success-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.success-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.order-summary-box {
    background: #0f172a;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: left;
    margin-bottom: 32px;
}

.order-summary-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14.5px;
}

.order-summary-label {
    color: var(--text-secondary);
}

.order-summary-value {
    font-weight: 600;
    color: var(--text-primary);
}

.order-summary-value.price-tag {
    color: #6ee7b7;
    font-family: var(--font-mono);
    font-weight: 700;
}

.highlight-row {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-subtle);
}

.email-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
}

.next-steps-container {
    text-align: left;
    margin-bottom: 36px;
}

.next-steps-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.35);
    color: #fda4af;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.support-footnote {
    font-size: 12.5px;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .success-card {
        padding: 32px 20px;
    }
    .modal-dialog {
        padding: 28px 20px;
    }
    .success-title {
        font-size: 26px;
    }
}
