/* ═══════════════════════════════════════════
   LANDING PAGES — Dark theme + animations
   Used on home + pricing only
   ═══════════════════════════════════════════ */

.landing-page { overflow-x: hidden; }

/* ── Hero ── */
.hero, .pricing-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
    background: #0a0a1a;
}
.pricing-hero { min-height: auto; padding: 60px 20px 40px; }

/* Animated orbs */
.hero-bg-effects {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
    top: -10%; left: -5%;
    animation-duration: 18s;
}
.orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
    bottom: -10%; right: -8%;
    animation-duration: 22s;
    animation-delay: -5s;
}
.orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: 40%; left: 60%;
    animation-duration: 25s;
    animation-delay: -10s;
    opacity: 0.2;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.05); }
}

/* Grid overlay */
.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 30s linear infinite;
}
@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.3);
    border-radius: 20px;
    font-size: 0.8em;
    color: #22d3ee;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease-out;
}

.hero-title {
    font-size: 5em;
    font-weight: 800;
    margin: 0 0 16px;
    animation: fadeUp 0.8s ease-out 0.1s both;
}
.t-1 { color: #22d3ee; }
.t-oh { color: #e2e8f0; }
.t-7 { color: #fbbf24; }

.hero-subtitle {
    font-size: 1.15em;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 32px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.btn-hero-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #22d3ee, #a78bfa);
    color: #0a0a1a;
    font-weight: 700;
    font-size: 1em;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34,211,238,0.3);
}

.btn-hero-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1em;
    border: 1px solid #334155;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s;
}
.btn-hero-secondary:hover { border-color: #22d3ee; color: #22d3ee; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    animation: fadeUp 0.8s ease-out 0.4s both;
}
.hero-stat { text-align: center; }
.hs-num { display: block; font-size: 1.8em; font-weight: 800; color: #e2e8f0; }
.hs-label { font-size: 0.75em; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }

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

/* ── Sections ── */
.section-dark {
    background: #0f0f23;
    padding: 60px 20px;
    position: relative;
}
.section-feature {
    background: #0a0a1a;
    padding: 60px 20px;
}
.section-inner {
    max-width: 900px;
    margin: 0 auto;
}
.section-title {
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
    color: #e2e8f0;
    margin: 0 0 10px;
}
.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1em;
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* Problem cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.problem-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 28px 22px;
    transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover { border-color: #22d3ee; transform: translateY(-3px); }
.pc-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(34,211,238,0.1);
    border-radius: 10px;
    font-size: 1.4em; font-weight: 700;
    color: #22d3ee;
    margin-bottom: 14px;
}
.problem-card h3 { font-size: 1.05em; color: #e2e8f0; margin: 0 0 8px; }
.problem-card p { font-size: 0.88em; color: #94a3b8; line-height: 1.6; margin: 0; }

/* Feature cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 24px 20px;
    transition: border-color 0.3s;
}
.feature-card:hover { border-color: #a78bfa; }
.fc-large { grid-column: span 2; }
@media (max-width: 600px) { .fc-large { grid-column: span 1; } }
.fc-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(34,211,238,0.1);
    color: #22d3ee;
    margin-bottom: 10px;
}
.feature-card h3 { font-size: 1em; color: #e2e8f0; margin: 0 0 8px; }
.feature-card p { font-size: 0.85em; color: #94a3b8; line-height: 1.6; margin: 0; }

/* Trust row */
.trust-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.trust-item { text-align: center; padding: 16px; }
.ti-icon { font-size: 2em; margin-bottom: 10px; }
.trust-item h3 { font-size: 0.95em; color: #e2e8f0; margin: 0 0 6px; }
.trust-item p { font-size: 0.82em; color: #94a3b8; line-height: 1.5; margin: 0; }

/* Bot tiers */
.bot-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.bt-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.bt-card:hover { transform: translateY(-3px); }
.bt-highlight { border-color: #a78bfa; }
.bt-tier {
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 6px;
}
.bt-card h3 { font-size: 1.1em; color: #e2e8f0; margin: 0 0 8px; }
.bt-card p { font-size: 0.82em; color: #94a3b8; line-height: 1.5; margin: 0 0 14px; }
.bt-price { font-size: 1.3em; font-weight: 700; color: #22d3ee; }

/* CTA section */
.section-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 60px 20px;
    text-align: center;
}
.section-cta h2 { font-size: 1.8em; color: #e2e8f0; margin: 0 0 10px; }
.section-cta p { color: #94a3b8; margin: 0 0 24px; }

/* ── Pricing Cards ── */
.pricing-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.human-plans { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.bot-plans { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 28px 22px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-3px); }
.pc-featured { border-color: #22d3ee; }
.pc-active { border-color: #4ade80; }
.pc-bot { padding: 22px 16px; }

.pc-popular {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, #22d3ee, #a78bfa);
    color: #0a0a1a;
    font-size: 0.72em;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pc-header { text-align: center; margin-bottom: 20px; }
.pc-badge {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pc-badge-bot { color: #a78bfa; }
.pc-price { margin-top: 8px; }
.pc-amount { font-size: 2.4em; font-weight: 800; color: #e2e8f0; }
.pc-period { font-size: 0.85em; color: #64748b; }

.pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.pc-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88em;
    color: #94a3b8;
}
.pc-features li:last-child { border-bottom: none; }
.pc-features strong { color: #e2e8f0; }

.pc-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #334155;
    color: #e2e8f0;
    background: transparent;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s;
}
.pc-btn:hover { border-color: #22d3ee; color: #22d3ee; }
.pc-btn-primary {
    background: linear-gradient(135deg, #22d3ee, #a78bfa);
    color: #0a0a1a;
    border: none;
}
.pc-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(34,211,238,0.3); color: #0a0a1a; }
.pc-btn-disabled { opacity: 0.5; cursor: default; }
.pc-btn-disabled:hover { border-color: #334155; color: #e2e8f0; }
.pc-current { background: rgba(74,222,128,0.1); border-color: #4ade80; color: #4ade80; cursor: default; }
.pc-current:hover { border-color: #4ade80; color: #4ade80; }

/* FAQ */
.faq-item {
    border-bottom: 1px solid #1e293b;
    padding: 16px 0;
}
.faq-item h3 { font-size: 0.95em; color: #e2e8f0; margin: 0 0 6px; }
.faq-item p { font-size: 0.85em; color: #94a3b8; line-height: 1.6; margin: 0; }

/* ── Pricing alignment fixes ── */
.pricing-hero .section-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}
.pricing-hero .section-title {
    font-size: 1.8em;
    padding: 0 10px;
}
.pricing-hero .section-subtitle {
    padding: 0 10px;
}

/* Human plans: stack on mobile */
.human-plans {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .human-plans { grid-template-columns: 1fr; max-width: 400px; }
}

/* Bot plans: 2x2 on mobile */
.bot-plans {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 700px) {
    .bot-plans { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .bot-plans { grid-template-columns: 1fr; max-width: 320px; }
}

/* Price card padding + text alignment */
.price-card {
    padding: 24px 20px;
    text-align: center;
}
.pc-features {
    text-align: left;
}
.pc-features li {
    padding: 7px 0;
    font-size: 0.85em;
}
.pc-amount {
    font-size: 2.2em;
}

/* Fix cards clipping on small screens */
.pricing-grid {
    padding: 0 4px;
}
