/*
 * Emerald Policies — style.css
 * Developed by Haris Ahmad | HFK Corporation
 * (c) 2026 HFK Corporation. All rights reserved.
 */

:root {
    --bg-primary: #06060f;
    --bg-secondary: #0d0d23;
    --bg-card: rgba(15, 15, 40, 0.7);
    --border-card: rgba(255, 255, 255, 0.06);
    --text-primary: #f0f0f5;
    --text-secondary: #8888aa;
    --text-muted: #555577;
    --accent-1: #10b981;
    --accent-2: #34d399;
    --accent-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --accent-glow: rgba(16, 185, 129, 0.3);
    --success: #00e676;
    --danger: #ff4466;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(16, 185, 129, 0.15);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Background ambient glow and grid ===== */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===== Top Nav ===== */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    background: rgba(6, 6, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-card);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.auth-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
}

.auth-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.upgrade-btn {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 3px 12px var(--accent-glow);
}

.upgrade-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.nav-btn-sm {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    background: rgba(255, 68, 68, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 68, 68, 0.2);
    font-family: var(--font);
    transition: all 0.2s ease;
}

.nav-btn-sm:hover {
    background: rgba(255, 68, 68, 0.25);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
}

.plan-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.plan-badge.free {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.plan-badge.pro {
    background: var(--accent-gradient);
    color: #fff;
}

/* ===== Pro Tag Badge ===== */
.pro-tag {
    display: inline-block;
    padding: 1px 6px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 6px;
}

/* ===== Feature Locks ===== */
.tab.locked,
.style-btn.locked,
.download-btn.locked {
    opacity: 0.45;
    position: relative;
    cursor: pointer;
}

.tab.locked::after,
.style-btn.locked::after {
    content: '\1F512';
    font-size: 0.6rem;
    position: absolute;
    top: -4px;
    right: -4px;
}

.locked-section {
    opacity: 0.4;
    pointer-events: none;
    position: relative;
}

/* ===== Pricing ===== */
.pricing-section {
    padding: 60px 20px 80px;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    padding: 36px 28px;
    text-align: left;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-1);
    box-shadow: 0 0 40px var(--accent-glow);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-card li {
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pricing-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.pricing-btn.free {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
}

.pricing-btn.pro {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.pricing-btn.pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .nav-inner {
        flex-wrap: wrap;
        gap: 8px;
    }
    .nav-logo {
        font-size: 1rem;
    }
}

/* ===== Hero ===== */
.hero {
    text-align: center;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16,185,129,0.15) 0%, rgba(52,211,153,0.05) 50%, transparent 80%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-2);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.6s ease;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

/* ===== App Layout ===== */
.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 60px;
    align-items: start;
}

/* ===== Premium Glass Cards ===== */
.glass-card {
    background: linear-gradient(145deg, rgba(20, 20, 35, 0.6), rgba(10, 10, 25, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), inset 0 2px 20px rgba(255, 255, 255, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), inset 0 2px 20px rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

.panel-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-primary);
}

/* ===== Tabs ===== */
.tab-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tab {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(20, 20, 35, 0.5);
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab:hover {
    border-color: var(--accent-1);
    color: var(--text-primary);
}

.tab.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ===== Inputs ===== */
.input-group {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.input-group.active {
    display: flex;
}

.input-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.input-group input,
.input-group textarea,
.input-group select {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

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

.input-group select {
    cursor: pointer;
}

.input-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* ===== Divider ===== */
.divider {
    height: 1px;
    background: var(--border-card);
    margin: 20px 0;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* ===== Colors ===== */
.color-row {
    display: flex;
    gap: 20px;
}

.contrast-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    animation: fadeInUp 0.3s ease;
}

.contrast-warning.critical {
    background: rgba(255, 68, 68, 0.12);
    border-color: rgba(255, 68, 68, 0.4);
    color: #ff4444;
}

.contrast-warning span {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.color-pick {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.color-pick label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.color-pick input[type="color"] {
    width: 100%;
    height: 44px;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: transparent;
    padding: 3px;
    transition: border-color var(--transition);
}

.color-pick input[type="color"]:hover {
    border-color: var(--accent-1);
}

/* ===== Style Buttons ===== */
.style-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.style-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.style-btn:hover {
    border-color: var(--accent-1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.style-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ===== Logo Upload ===== */
.logo-upload {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 2px dashed rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.upload-btn:hover {
    border-color: var(--accent-1);
    background: rgba(16, 185, 129, 0.05);
    color: var(--text-primary);
}

.upload-btn.has-logo {
    border-color: var(--success);
    color: var(--success);
    border-style: solid;
}

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

.remove-logo-btn {
    padding: 8px 16px;
    border: 1px solid var(--danger);
    border-radius: var(--radius-sm);
    background: rgba(255, 68, 102, 0.1);
    color: var(--danger);
    font-family: var(--font);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}

.remove-logo-btn:hover {
    background: rgba(255, 68, 102, 0.2);
}

/* ===== Size Slider ===== */
.size-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gradient);
    cursor: pointer;
    box-shadow: 0 2px 10px var(--accent-glow);
    transition: transform 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.size-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

/* ===== Preview Panel ===== */
.preview-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
}

.qr-preview-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.qr-loader {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 25, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.qr-loader span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-2);
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

.qr-preview-wrapper.is-loading .qr-loader {
    opacity: 1;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(16, 185, 129, 0.2);
    border-top-color: var(--accent-1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

.qr-canvas {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.qr-canvas canvas,
.qr-canvas svg {
    border-radius: var(--radius-sm);
    max-width: 100%;
    height: auto;
}

/* ===== Download Buttons ===== */
.download-buttons {
    display: flex;
    gap: 12px;
}

.download-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
}

.download-btn.primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 6px 25px var(--accent-glow);
}

.download-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px var(--accent-glow);
}

.download-btn.primary:active {
    transform: translateY(0);
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
}

.download-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

/* ===== Features Callout ===== */
.features-callout {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
}

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

.feature-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    font-size: 0.88rem;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 50px 20px 30px;
    border-top: 1px solid var(--border-card);
    color: var(--text-muted);
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.footer-credits {
    margin-bottom: 16px;
}

.footer-credits p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-credits strong {
    color: var(--text-primary);
}

.footer-corp {
    font-size: 0.82rem !important;
    color: var(--accent-2) !important;
    letter-spacing: 0.5px;
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid var(--border-card);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .app-layout {
        grid-template-columns: 1fr;
    }

    .preview-panel {
        position: static;
    }

    .hero {
        padding: 40px 20px 20px;
    }

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

    .tab-group {
        gap: 4px;
    }

    .tab {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .glass-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .color-row {
        flex-direction: column;
    }

    .style-options {
        justify-content: center;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.5);
}

/* ===== Selection ===== */
::selection {
    background: rgba(16, 185, 129, 0.3);
    color: #fff;
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(20, 20, 35, 0.95);
    border-left: 4px solid var(--accent-1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-content strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.toast-content p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

/* ===== LOGIN WALL ===== */

.login-wall {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(6, 6, 15, 0.85);
    border-radius: var(--radius-lg);
    align-items: center;
    justify-content: center;
}

.login-wall.active {
    display: flex;
}

.app-layout {
    position: relative;
}

.login-wall-content {
    text-align: center;
    padding: 50px 40px;
    max-width: 440px;
    animation: fadeInUp 0.5s ease;
}

.login-wall-content .lock-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.login-wall-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.login-wall-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.login-wall-content .auth-submit {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.login-wall-switch {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.login-wall-switch a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
}

.login-wall-switch a:hover {
    text-decoration: underline;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float::after {
    content: 'Chat with us';
    position: absolute;
    right: 68px;
    background: #1a1a2e;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: var(--font);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* ===== WHATSAPP PRICING BUTTON ===== */

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: none !important;
}

.wa-btn:hover {
    background: linear-gradient(135deg, #2be673, #159e8c) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* ===== FOOTER LINKS ===== */

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

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

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-dot {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ===== USE CASES SECTION ===== */

.usecases-section {
    padding: 80px 20px;
    text-align: center;
}

.usecases-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.usecases-subtitle {
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 1rem;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.usecase-card {
    padding: 28px 22px;
    text-align: center;
    cursor: default;
}

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

.usecase-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.2));
}

.usecase-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

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

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

/* ===== 3-COLUMN PRICING GRID ===== */

.pricing-grid.three-col {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 960px;
}

@media (max-width: 900px) {
    .pricing-grid.three-col {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.price-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    margin-top: -12px;
}

.pricing-card li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-card li strong {
    color: var(--accent-2);
}

/* Lifetime deal button pulse */
.lifetime-btn {
    animation: ltdPulse 2s ease-in-out infinite;
}

@keyframes ltdPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.15);
    }
}

.ltd-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: #ffc107;
    font-weight: 600;
    letter-spacing: 0.3px;
    animation: pulse 2s infinite;
}

/* ===== TRUST / SOCIAL PROOF ===== */

.trust-section {
    padding: 50px 20px;
}

.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-card);
}

@media (max-width: 600px) {
    .trust-stats {
        gap: 24px;
    }
    .trust-divider {
        display: none;
    }
    .trust-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== THEME TOGGLE ===== */

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-card);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--accent-1);
    transform: rotate(20deg);
}

.theme-icon {
    line-height: 1;
}

/* ===== NAV LOGO LINK ===== */

.nav-logo-link {
    text-decoration: none;
    color: inherit;
}

/* ===== AD BANNERS ===== */

.ad-banner {
    padding: 0;
    position: relative;
    z-index: 1;
}

.ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(52, 211, 153, 0.08));
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ad-content:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.15));
}

.ad-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ad-cta {
    font-weight: 700;
    color: var(--accent-2);
    white-space: nowrap;
    flex-shrink: 0;
}

.ad-banner-bottom .ad-content {
    border-bottom: none;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

@media (max-width: 600px) {
    .ad-content {
        font-size: 0.78rem;
        gap: 8px;
        padding: 10px 16px;
        flex-wrap: wrap;
    }
}

/* ===== DOWNLOAD LIMIT BADGE ===== */

.limit-badge {
    text-align: center;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-2);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.limit-badge.pro {
    color: var(--accent-2);
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

.limit-badge.warning {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.limit-badge.exhausted {
    color: var(--danger);
    background: rgba(255, 68, 102, 0.1);
    border-color: rgba(255, 68, 102, 0.3);
    animation: pulse 1.5s infinite;
}

/* ===== PRICING LIMIT HIGHLIGHT ===== */

.pricing-card li.limit-highlight {
    color: #ffc107;
    font-weight: 600;
    background: rgba(255, 193, 7, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    margin: 2px -8px;
}

/* ===== UPGRADE MODAL BUTTONS ===== */

.upgrade-modal-btns {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ===== LEGAL / PRIVACY PAGE ===== */

.legal-page {
    padding: 40px 20px 60px;
    z-index: 1;
    position: relative;
}

.legal-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 44px;
}

.legal-card:hover {
    transform: none;
}

.legal-card h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-card);
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-2);
    margin: 16px 0 8px;
}

.legal-section p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.legal-section li {
    padding: 6px 0 6px 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-1);
    font-weight: bold;
}

.legal-section a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 30px 22px;
    }
    .legal-card h1 {
        font-size: 1.6rem;
    }
}

/* ===== LIGHT THEME ===== */

[data-theme="light"] {
    --bg-primary: #f4f7f6;
    --bg-secondary: #e8eeec;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-card: rgba(0, 0, 0, 0.08);
    --text-primary: #1a2b2a;
    --text-secondary: #5a6f6d;
    --text-muted: #8a9e9c;
    --accent-1: #059669;
    --accent-2: #10b981;
    --accent-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --accent-glow: rgba(5, 150, 105, 0.2);
    --success: #059669;
    --danger: #dc2626;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 40px rgba(5, 150, 105, 0.08);
}

[data-theme="light"] body {
    background: var(--bg-primary);
}

[data-theme="light"] body::before {
    background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
}

[data-theme="light"] body::after {
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .top-nav {
    background: rgba(244, 247, 246, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .glass-card:hover {
    border-color: rgba(5, 150, 105, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .tab {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

[data-theme="light"] .input-group input,
[data-theme="light"] .input-group textarea,
[data-theme="light"] .input-group select {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

[data-theme="light"] .input-group select option {
    background: #fff;
    color: var(--text-primary);
}

[data-theme="light"] .style-btn {
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

[data-theme="light"] .upload-btn {
    border-color: rgba(5, 150, 105, 0.25);
    color: var(--text-secondary);
}

[data-theme="light"] .qr-preview-wrapper {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .download-btn.secondary {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

[data-theme="light"] .auth-form input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

[data-theme="light"] .login-wall {
    background: rgba(244, 247, 246, 0.92);
}

[data-theme="light"] .toast {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-glow {
    background: radial-gradient(ellipse, rgba(5, 150, 105, 0.08) 0%, rgba(16, 185, 129, 0.02) 50%, transparent 80%);
}

[data-theme="light"] .hero-badge {
    background: rgba(5, 150, 105, 0.08);
    border-color: rgba(5, 150, 105, 0.2);
}

[data-theme="light"] .ad-content {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(16, 185, 129, 0.04));
    border-color: rgba(5, 150, 105, 0.12);
}

[data-theme="light"] .ad-content:hover {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.08));
}

[data-theme="light"] .footer {
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .auth-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

[data-theme="light"] .nav-btn-sm {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .limit-badge {
    background: rgba(5, 150, 105, 0.06);
    border-color: rgba(5, 150, 105, 0.15);
}

[data-theme="light"] .pricing-card.featured {
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.15);
}

[data-theme="light"] .pricing-btn.free {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .pricing-card li.disabled {
    opacity: 0.35;
}

[data-theme="light"] .whatsapp-float::after {
    background: #fff;
    color: #1a2b2a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contrast-warning {
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.2);
}

[data-theme="light"] .trust-divider {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .plan-badge.free {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
}

[data-theme="light"] input[type="range"] {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .qr-loader {
    background: rgba(244, 247, 246, 0.85);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: rgba(5, 150, 105, 0.2);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: rgba(5, 150, 105, 0.35);
}

[data-theme="light"] .color-pick input[type="color"] {
    border-color: rgba(0, 0, 0, 0.1);
}

/* ===== FEATURE HIGHLIGHTS GRID ===== */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-card {
    padding: 28px 24px;
    text-align: center;
    cursor: default;
}

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

.highlight-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.2));
}

.highlight-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

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

/* ===== FAQ SECTION ===== */

.faq-section {
    padding: 60px 20px 80px;
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-1px);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item[open] summary {
    color: var(--accent-2);
    border-bottom: 1px solid var(--border-card);
}

.faq-item p {
    padding: 16px 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    animation: fadeInUp 0.3s ease;
}

/* ===== Testimonials Page ===== */
.testimonials-hero {
    text-align: center;
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

.testimonials-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease;
}

.testimonials-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0 80px;
}

.testimonial-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-glow);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: Georgia, serif;
    pointer-events: none;
    z-index: -1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Below-the-fold Sections ===== */
.section-wrapper { padding: 60px 0; text-align: center; }
.section-title-large { font-size: 2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.section-subtitle { color: var(--text-secondary); margin-bottom: 40px; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }
.section-wrapper .pricing-card { padding: 36px 28px; text-align: left; position: relative; }
.section-wrapper .pricing-card.featured { border-color: var(--accent-1); box-shadow: 0 0 40px var(--accent-glow); }
.section-wrapper .featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-gradient); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.section-wrapper .price { font-size: 2.5rem; font-weight: 800; margin-bottom: 4px; color: var(--text-primary); }
.section-wrapper .price span { font-size: 1rem; font-weight: 500; color: var(--text-secondary); }
.section-wrapper .pricing-card ul { list-style: none; margin-bottom: 24px; padding: 0; }
.section-wrapper .pricing-card li { padding: 5px 0; font-size: 0.88rem; color: var(--text-secondary); }
.section-wrapper .pricing-btn { width: 100%; padding: 12px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.92rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s ease; }
.section-wrapper .pricing-btn.free { background: rgba(255, 255, 255, 0.08); color: var(--text-primary); border: 1px solid var(--border-card); }
.section-wrapper .pricing-btn.pro { background: var(--accent-gradient); color: #fff; box-shadow: 0 4px 15px var(--accent-glow); }
.section-wrapper .pricing-btn.pro:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--accent-glow); }
.beta-form { display: flex; gap: 12px; justify-content: center; max-width: 500px; margin: 0 auto; }
.beta-form input[type="email"] { flex: 1; padding: 12px 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font); font-size: 0.95rem; outline: none; }
.beta-form input[type="email"]:focus { border-color: var(--accent-1); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15); }
@media (max-width: 480px) { .beta-form { flex-direction: column; } .section-title-large { font-size: 1.6rem; } }


