/* ═══════════════════════════════════════════════════════
   VIRALIX Landing Page — layout & components
   Theme: landing-light.css (app shell) overrides tokens below
   ═══════════════════════════════════════════════════════ */

.landing-page {
    --landing-card-bg: rgba(10, 10, 28, 0.6);
    --landing-card-bg-soft: rgba(10, 10, 28, 0.55);
    --landing-border: rgba(0, 242, 234, 0.1);
    --landing-border-accent: rgba(138, 79, 255, 0.12);
    --landing-tint-bg: rgba(0, 242, 234, 0.02);
    --landing-anam-bg: rgba(6, 6, 18, 0.8);
    --landing-input-bg: rgba(3, 3, 12, 0.9);
    --landing-chip-bg: rgba(10, 10, 28, 0.7);
}

.landing-page,
.landing-wrapper {
    position: relative;
    z-index: 1;
}

.landing-main {
    width: 100%;
}

/* ─── Public landing header (dark, standalone index) ─── */
body.landing-public {
    background: var(--bg-primary, #030308);
    color: var(--text-primary);
    overflow-x: hidden;
}

body.landing-public .landing-main {
    padding-top: 64px;
    scroll-padding-top: 72px;
}

body.landing-public .hero-v4 {
    min-height: calc(100dvh - 64px);
    min-height: calc(100vh - 64px);
}

body.landing-public .hero-v4,
body.landing-public .landing-section {
    scroll-margin-top: 72px;
}

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
    background: rgba(3, 3, 8, 0.82);
    border-bottom: 1px solid rgba(0, 242, 234, 0.12);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.landing-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.landing-header-brand span {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-header-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.landing-header-brand picture,
.footer-logo picture,
.auth-logo-link picture {
    display: inline-flex;
    line-height: 0;
    flex-shrink: 0;
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-plans-btn,
.landing-dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 234, 0.25);
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(138, 79, 255, 0.12));
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base, 0.2s ease);
    font-family: inherit;
    text-decoration: none;
}

.landing-plans-btn {
    border-color: rgba(138, 79, 255, 0.3);
    background: rgba(138, 79, 255, 0.08);
}

.landing-plans-btn:hover {
    border-color: rgba(138, 79, 255, 0.5);
    box-shadow: 0 0 24px rgba(138, 79, 255, 0.15);
    transform: translateY(-1px);
}

.landing-plans-btn i {
    color: #a78bfa;
}

.landing-plans-btn.is-active {
    border-color: rgba(138, 79, 255, 0.55);
    background: rgba(138, 79, 255, 0.16);
    pointer-events: none;
}

.landing-dashboard-btn:hover {
    border-color: rgba(0, 242, 234, 0.45);
    box-shadow: var(--shadow-glow, 0 0 24px rgba(0, 242, 234, 0.15));
    transform: translateY(-1px);
}

.landing-dashboard-btn i {
    color: var(--accent-cyan, #00f2ea);
}

@media (max-width: 768px) {
    .landing-header {
        padding: 0 16px;
    }

    .landing-plans-btn span,
    .landing-dashboard-btn span {
        display: none;
    }

    .landing-plans-btn,
    .landing-dashboard-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ─── HERO ─── */
.hero-v4 {
    padding: 48px 5% 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-v4-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .hero-v4-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.hero-v4-copy {
    animation: v4FadeUp 0.8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0, 242, 234, 0.08);
    border: 1px solid rgba(0, 242, 234, 0.25);
    box-shadow: 0 0 24px rgba(0, 242, 234, 0.1);
    margin-bottom: 24px;
}

.hero-v4-copy h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-v4-copy h1 .hl {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v4-copy > p {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

@media (max-width: 960px) {
    .hero-v4-copy > p { margin-left: auto; margin-right: auto; }
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

@media (max-width: 960px) {
    .hero-actions { justify-content: center; }
}

.hero-actions .cta-btn {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 14px;
}

.hero-actions .cta-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    border: 1px solid rgba(138, 79, 255, 0.3);
    background: rgba(138, 79, 255, 0.06);
    transition: var(--transition-base);
}

.hero-actions .cta-secondary-link:hover {
    border-color: rgba(138, 79, 255, 0.5);
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-2px);
}

.trust-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.trust-badge-v2 i {
    color: var(--accent-success);
}

/* ─── Showcase / Mockup ─── */
.hero-v4-showcase {
    position: relative;
    animation: v4FadeUp 0.8s 0.15s ease both;
}

.showcase-frame {
    position: relative;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.5), rgba(138, 79, 255, 0.5), rgba(255, 77, 161, 0.3));
    box-shadow:
        0 0 0 1px rgba(0, 242, 234, 0.1),
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 242, 234, 0.08),
        0 0 80px rgba(138, 79, 255, 0.1);
}

.showcase-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(3, 3, 12, 0.9);
}

.showcase-inner picture {
    display: block;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
}

.showcase-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.showcase-glow-cyan {
    width: 200px;
    height: 200px;
    background: #00f2ea;
    opacity: 0.2;
    top: -40px;
    left: -40px;
}

.showcase-glow-purple {
    width: 180px;
    height: 180px;
    background: #8a4fff;
    opacity: 0.25;
    bottom: -30px;
    right: -30px;
}

.showcase-stats {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .showcase-stats { justify-content: center; }
}

.stat-chip {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--landing-chip-bg);
    border: 1px solid var(--landing-border);
    backdrop-filter: blur(12px);
    text-align: center;
}

.stat-chip span {
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-chip small {
    display: block;
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* ─── ANAM AI ─── */
.hero-anam-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 5% 80px;
    border-top: 1px solid var(--landing-border);
}

.hero-anam-header {
    text-align: center;
    margin-bottom: 32px;
}

.hero-anam-header .section-label { justify-content: center; }

.hero-anam-container {
    display: flex;
    justify-content: center;
}

.anam-embed-wrapper {
    width: 100%;
    max-width: 380px;
    height: 460px;
    background: var(--landing-anam-bg);
    border-radius: 24px;
    border: 1px solid var(--landing-border);
    backdrop-filter: blur(24px);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-glow-purple), var(--shadow-lg);
}

#anam-persona-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.anam-embed-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(6, 6, 18, 0.3) 0%, rgba(6, 6, 18, 0.95) 100%);
}

.anam-embed-overlay i {
    font-size: 40px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(0, 242, 234, 0.5));
}

.anam-embed-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.anam-embed-overlay p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.anam-start-btn {
    background: var(--gradient-btn);
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    color: #030308;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 242, 234, 0.3);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.anam-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(138, 79, 255, 0.35);
}

.anam-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 77, 161, 0.15);
    border: 1px solid rgba(255, 77, 161, 0.3);
    color: var(--accent-pink);
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
}

.anam-close-btn:hover {
    background: rgba(255, 77, 161, 0.25);
}

.anam-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 5;
    background: rgba(6, 6, 18, 0.9);
}

.anam-loading i { color: var(--accent-cyan); font-size: 28px; }
.anam-loading p { color: var(--text-secondary); font-size: 14px; }

.anam-chat-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    padding: 12px;
    gap: 8px;
    background: linear-gradient(transparent, rgba(6, 6, 18, 0.95));
    z-index: 8;
}

.anam-chat-box input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--landing-border);
    background: var(--landing-input-bg);
    color: var(--text-primary);
    font-size: 13px;
}

.anam-chat-box input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.anam-chat-box button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: var(--gradient-btn);
    color: #030308;
    cursor: pointer;
}

/* ─── Sections ─── */
.landing-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-section.centered { text-align: center; }

.landing-section.tinted {
    max-width: 100%;
    background: var(--landing-tint-bg);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.landing-section.tinted > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient-btn);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 48px;
}

.landing-section.centered .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Steps ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.section-cta-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 48px;
    clear: both;
}

.contextual-cta {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition: var(--transition-base);
    box-shadow: 0 14px 40px rgba(0, 242, 234, 0.18);
}

.contextual-cta,
.contextual-cta:hover,
.contextual-cta:focus,
.contextual-cta:visited,
.contextual-cta *,
.contextual-cta:hover * {
    text-decoration: none !important;
}

.contextual-cta-primary {
    color: #030308 !important;
    background: var(--gradient-btn);
}

.contextual-cta-primary i,
.contextual-cta-primary span {
    color: #030308 !important;
}

.contextual-cta-secondary {
    color: var(--text-primary) !important;
    border: 1px solid rgba(138, 79, 255, 0.34);
    background: rgba(138, 79, 255, 0.1);
    box-shadow: 0 14px 40px rgba(138, 79, 255, 0.13);
}

.contextual-cta-secondary i,
.contextual-cta-secondary span {
    color: var(--text-primary) !important;
}

.contextual-cta-primary:hover,
.contextual-cta-secondary:hover {
    transform: translateY(-2px);
}

.contextual-cta-primary:hover {
    box-shadow: var(--shadow-glow);
}

.contextual-cta-secondary:hover {
    border-color: rgba(138, 79, 255, 0.55);
    box-shadow: var(--shadow-glow-purple);
}

@media (max-width: 520px) {
    .contextual-cta {
        width: 100%;
        white-space: normal;
    }
}

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

.step-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 20px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    backdrop-filter: blur(16px);
    text-align: center;
    transition: var(--transition-base);
}

.step-card:hover {
    border-color: rgba(138, 79, 255, 0.35);
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-4px);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: #030308;
    background: var(--gradient-btn);
    box-shadow: 0 4px 20px rgba(0, 242, 234, 0.3);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

/* ─── Testimonials ─── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.testi-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--landing-card-bg-soft);
    border: 1px solid var(--landing-border-accent);
    backdrop-filter: blur(16px);
    text-align: left;
    transition: var(--transition-base);
}

.testi-card:hover {
    border-color: rgba(0, 242, 234, 0.25);
    box-shadow: var(--shadow-glow);
}

.testi-card > i {
    color: var(--accent-purple);
    font-size: 22px;
    margin-bottom: 16px;
    display: block;
}

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

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #030308;
}

.author-info h4 { font-size: 15px; margin: 0; }
.author-info p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ─── Comparison ─── */
.compare-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

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

.compare-box {
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.compare-box.bad {
    background: rgba(255, 77, 161, 0.04);
    border-color: rgba(255, 77, 161, 0.15);
}

.compare-box.good {
    background: rgba(0, 242, 234, 0.04);
    border-color: rgba(0, 242, 234, 0.2);
    position: relative;
    box-shadow: var(--shadow-glow);
}

.compare-box.good::after {
    content: "VIRALIX AI";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-btn);
    color: #030308;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.08em;
}

.compare-box h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.compare-box.bad h3 { color: var(--accent-pink); }
.compare-box.good h3 { color: var(--accent-cyan); }

.big-num {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin: 12px 0;
    letter-spacing: -0.04em;
}

.big-num.bad { color: #ff4d6d; }
.big-num.good {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compare-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i.fa-check { color: var(--accent-cyan); }
.feature-list li i.fa-times { color: #ff4d6d; }

/* ─── ROI ─── */
.roi-wrapper {
    padding: 48px;
    border-radius: 24px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border-accent);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow-purple);
}

@media (max-width: 640px) {
    .roi-wrapper { padding: 28px 20px; }
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 850px) {
    .roi-grid { grid-template-columns: 1fr; }
    .roi-grid > i { transform: rotate(90deg); text-align: center; }
}

.roi-grid > i {
    font-size: 28px;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 242, 234, 0.4));
}

.roi-old h4 {
    color: var(--accent-pink);
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.roi-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.roi-total {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-pink);
    margin-top: 12px;
}

.roi-new {
    text-align: center;
}

.roi-new h4 {
    color: var(--accent-cyan);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.roi-save-val {
    font-family: var(--font-head);
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.roi-new > p {
    color: var(--text-secondary);
    margin: 8px 0 16px;
    font-size: 14px;
}

.roi-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-cyan);
    background: rgba(0, 242, 234, 0.1);
    border: 1px solid rgba(0, 242, 234, 0.25);
}

/* ─── FAQ ─── */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--landing-card-bg-soft);
    border: 1px solid var(--landing-border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(138, 79, 255, 0.3);
}

.faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    gap: 12px;
}

.faq-q i.icon-accent { color: var(--accent-cyan); margin-right: 4px; }
.faq-q i.fa-chevron-down { color: var(--text-tertiary); font-size: 12px; transition: transform 0.3s; }
.faq-item.open .faq-q i.fa-chevron-down { transform: rotate(180deg); color: var(--accent-purple); }

.faq-a {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
    display: none;
}

.faq-item.open .faq-a { display: block; }

/* ─── About & Contact ─── */
.about-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.about-copy,
.about-feature-card,
.contact-card {
    background: var(--landing-card-bg-soft);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
}

.about-copy {
    padding: 36px;
}

.about-copy .section-label {
    margin-bottom: 12px;
}

.about-copy .section-title {
    margin-bottom: 20px;
}

.about-copy p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-feature-card {
    padding: 32px;
}

.about-feature-card h3,
.vision-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.about-feature-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.about-feature-list i {
    color: var(--accent-cyan);
    margin-top: 3px;
}

.vision-box {
    margin-top: 28px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(138, 79, 255, 0.22);
    background: rgba(138, 79, 255, 0.08);
}

.vision-box p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-section .section-sub {
    margin-bottom: 28px;
}

.contact-card {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 18px;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-weight: 700;
}

.contact-card a:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 242, 234, 0.28);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 900px) {
    .about-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-copy,
    .about-feature-card {
        padding: 24px;
    }

    .contact-card,
    .contact-card a {
        width: 100%;
    }

    .contact-card a {
        justify-content: center;
        text-align: center;
    }

    body.landing-public .landing-footer {
        padding-bottom: 96px;
    }
}

/* ─── Final CTA ─── */
.final-cta {
    text-align: center;
    padding: 120px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta .cta-btn {
    margin: 32px auto 0;
    padding: 20px 48px;
    font-size: 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ─── Auth Modal (landing) ─── */
.auth-modal-v2 {
    max-width: 420px;
    width: 95%;
    padding: 40px;
    position: relative;
}

.auth-tabs {
    display: flex;
    background: rgba(0, 242, 234, 0.04);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 242, 234, 0.1);
}

.auth-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-family);
}

.auth-tab.active {
    background: var(--gradient-btn);
    color: #030308;
}

.auth-header { text-align: center; margin-bottom: 24px; }
.auth-logo { width: 50px; margin-bottom: 14px; }

.auth-logo-link {
    display: block;
    width: fit-content;
    margin: 0 auto 14px;
    line-height: 0;
}

.auth-logo-link .auth-logo {
    margin-bottom: 0;
}
.auth-header h2 { font-size: 24px; margin-bottom: 6px; }
.auth-header p { font-size: 13px; color: var(--text-secondary); }

.input-group-v2 { position: relative; margin-bottom: 14px; }

.input-group-v2 i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    font-size: 15px;
    opacity: 0.7;
}

.input-group-v2 input {
    width: 100%;
    padding: 15px 16px 15px 46px;
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-family);
}

.auth-error-message {
    background: rgba(255, 77, 161, 0.1);
    color: var(--accent-pink);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 77, 161, 0.2);
}

.auth-submit-btn {
    width: 100%;
    border-radius: 12px;
    margin-top: 8px;
}

.profile-view { text-align: center; }

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-brand);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #030308;
    box-shadow: var(--shadow-glow);
}

.profile-info h3 { font-size: 20px; margin-bottom: 4px; }
.profile-info p { font-size: 14px; color: var(--text-secondary); }

.profile-status {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(0, 242, 234, 0.1);
    color: var(--accent-cyan);
    display: inline-block;
    margin-top: 10px;
    border: 1px solid rgba(0, 242, 234, 0.2);
}

.profile-actions { display: grid; gap: 12px; margin-top: 20px; }

.btn-logout {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

/* ─── Footer logo ─── */
.footer-logo span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
}

a.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 14px;
}

.footer-legal-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-legal-links a:hover {
    color: var(--accent-cyan);
}

/* ─── Toast ─── */
.toast-notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(0, 242, 234, 0.92);
    color: #030308;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 234, 0.3);
    box-shadow: var(--shadow-glow);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification.error {
    background: rgba(255, 77, 161, 0.92);
    color: #fff;
    border-color: rgba(255, 77, 161, 0.3);
}

/* ─── WhatsApp ─── */
.wa-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 100002;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: var(--transition-base);
}

.wa-float:hover { transform: scale(1.08); }

/* ─── Logo sizes ─── */
.logo img,
.auth-logo,
.footer-logo img,
.logo-image {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
}

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

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