/* ================================================
   RAMIANT BOT — Frontend CSS
   Public website styles
================================================ */

:root {
    --primary:       #7c3aed;
    --primary-light: #a78bfa;
    --primary-dim:   rgba(124,58,237,0.08);
    --primary-hover: #6d28d9;
    --dark:          #07070f;
    --text:          #374151;
    --text-muted:    #6b7280;
    --border:        #e5e7eb;
    --surface:       #f9fafb;
    --white:         #ffffff;
}

/* ── BASE ── */
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
}
h1, h2, h3, h4, h5 {
    font-family: 'DM Serif Display', serif;
}
a { color: var(--primary); }
a:hover { color: var(--primary-hover); }

/* ── NAVBAR ── */
.site-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-navbar .navbar-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-navbar .nav-logo-mark {
    width: 32px; height: 32px;
    background: var(--primary);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 13px;
}
.site-navbar .navbar-brand span { color: var(--primary); }
.site-navbar .nav-link {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.15s;
}
.site-navbar .nav-link:hover {
    color: var(--primary);
    background: var(--primary-dim);
}
.site-navbar .btn-nav-login {
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: all 0.15s;
}
.site-navbar .btn-nav-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.site-navbar .btn-nav-cta {
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    transition: all 0.15s;
}
.site-navbar .btn-nav-cta:hover {
    background: var(--primary-hover);
    color: white;
}

/* ── HERO ── */
.hero-section {
    padding: 96px 0 80px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-dim);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.hero-title {
    font-size: 52px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 20px;
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-primary:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.25);
}
.btn-hero-secondary {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ── SECTION ── */
.section { padding: 80px 0; }
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title {
    font-size: 36px;
    color: #111;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ── FEATURE CARD ── */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.2s;
    height: 100%;
}
.feature-card:hover {
    border-color: rgba(124,58,237,0.25);
    box-shadow: 0 8px 28px rgba(124,58,237,0.08);
    transform: translateY(-2px);
}
.feature-icon {
    width: 44px; height: 44px;
    background: var(--primary-dim);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 16px;
}
.feature-title { font-size: 16px; font-weight: 600; color: #111; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
}
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(124,58,237,0.12);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); }
.pricing-price { font-size: 36px; font-family: 'DM Serif Display', serif; color: #111; margin: 8px 0 4px; }
.pricing-price span { font-size: 14px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text);
    padding: 5px 0;
}
.pricing-features li i { color: var(--primary); font-size: 12px; }

/* ── FOOTER ── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 32px;
}
.site-footer h6 {
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.site-footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13.5px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.15s;
}
.site-footer a:hover { color: white; }
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 24px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero-title { font-size: 34px; }
    .section-title { font-size: 28px; }
    .hero-section { padding: 60px 0 48px; }
}