/* ==========================================================================
   🏛️ Mylawyers AI - Premium Landing Page Stylesheet
   Tailored for Indian Legal Professionals
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Color Palette - Dark Mode matching User Screenshot */
    --bg-primary: #05050a;
    --bg-secondary: #0d0e17;
    --bg-tertiary: #141622;
    --bg-card: #0e101a;
    --bg-glass: rgba(13, 14, 23, 0.85);

    --primary: #7c3aed;
    --primary-bright: #a855f7;
    --primary-glow: rgba(139, 92, 246, 0.35);

    --accent: #ec4899;
    --gold: #f59e0b;

    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    --border: rgba(139, 92, 246, 0.2);
    --border-hover: rgba(168, 85, 247, 0.5);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.25);

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

/* Light Mode Theme */
html.light-mode,
body.light-mode,
:root.light-mode {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);

    --primary: #3b5ef8;
    --primary-bright: #3b5ef8;
    --primary-glow: rgba(59, 94, 248, 0.15);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --border: #e2e8f0;
    --border-hover: #cbd5e1;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(59, 94, 248, 0.1);
}

/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 19px;
}

/* ==========================================================================
   🌌 Background Gradients & Blobs
   ========================================================================== */
.bg-gradients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-blob-1 {
    position: absolute;
    top: -10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    opacity: 0.6;
    animation: floatSlow 20s infinite alternate ease-in-out;
}

.gradient-blob-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    opacity: 0.5;
    animation: floatSlow 25s infinite alternate-reverse ease-in-out;
}

@keyframes floatSlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 80px) scale(1.1);
    }
}

/* ==========================================================================
   🧭 Navigation Header
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    height: 70px;
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.brand-logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

.brand:hover .brand-logo-img {
    transform: scale(1.05);
}

/* Logo handling for Light/Dark mode */
.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

html.light-mode .logo-light,
body.light-mode .logo-light,
:root.light-mode .logo-light {
    display: block;
}

html.light-mode .logo-dark,
body.light-mode .logo-dark,
:root.light-mode .logo-dark {
    display: none;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar nav {
    margin-left: auto;
    margin-right: 28px;
}

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

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

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

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

.btn-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--border);
    transition: all 0.2s ease;
}

.btn-theme-toggle:hover {
    color: var(--text-primary);
    background: var(--border-hover);
    transform: rotate(15deg);
}

.navbar-user-greeting {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ==========================================================================
   🔘 Premium Buttons
   ========================================================================== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px 0 var(--primary-glow);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary-bright);
    background: rgba(97, 131, 252, 0.08);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--border);
}

/* ==========================================================================
   🦸 Hero Section
   ========================================================================== */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #c084fc;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    max-width: 850px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

/* Hero Dashboard Mockup */
.hero-mockup {
    width: 100%;
    max-width: 1000px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    text-align: left;
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border);
    gap: 8px;
}

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

.mockup-dot.red {
    background: #ef4444;
}

.mockup-dot.yellow {
    background: #f59e0b;
}

.mockup-dot.green {
    background: #22c55e;
}

.mockup-tab {
    margin-left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.mockup-body {
    display: flex;
    height: 380px;
}

.mockup-sidebar {
    width: 220px;
    background: rgba(0, 0, 0, 0.15);
    border-right: 1px solid var(--border);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.mockup-nav-item {
    height: 28px;
    border-radius: 6px;
    background: var(--border);
    margin-bottom: 8px;
}

.mockup-nav-item.active {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.mockup-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    background: var(--bg-secondary);
}

.mockup-chat-bubble {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.6;
    max-width: 85%;
}

.mockup-chat-bubble.user {
    align-self: flex-end;
    background: var(--primary);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.mockup-chat-bubble.ai {
    align-self: flex-start;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

/* ==========================================================================
   📦 Features Section
   ========================================================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-bright);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon-wrapper,
.feature-icon-wrapper:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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


/* Pricing Toggle Switch */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.billing-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.billing-label.active {
    color: var(--text-primary);
}

.switch-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 34px;
    transition: background-color 0.4s, border-color 0.4s;
}

.slider-toggle::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.4s;
    box-shadow: var(--shadow-sm);
}

.switch-toggle input:checked+.slider-toggle {
    background-color: var(--primary);
    border-color: var(--primary-bright);
}

.switch-toggle input:checked+.slider-toggle::before {
    transform: translateX(24px);
}

.save-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
    color: #ffffff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary-bright);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, var(--bg-card) 100%);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 6px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-feature-item svg {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   ❓ FAQs Accordion
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(45deg);
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-panel {
    max-height: 300px;
}

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

/* ==========================================================================
   🏁 Footer
   ========================================================================== */
.footer-landing {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 30px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 30px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 360px;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-bright);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================================================
   📱 Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

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

    .footer-brand-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .brand-name {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-actions .btn-premium {
        padding: 6px 12px;
        font-size: 13px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 12px;
    }

    .hero-ctas .btn-premium {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .features-grid,
    .pricing-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .mockup-window {
        margin: 20px 0 0 0;
        border-radius: var(--radius-lg);
    }

    .mockup-sidebar {
        display: none;
    }

    .mockup-main {
        padding: 16px;
    }

    .mockup-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .mockup-tab {
        flex-shrink: 0;
    }

    .mockup-chat {
        max-height: 350px;
    }

    .mockup-chat-bubble {
        max-width: 90%;
        font-size: 13px;
        padding: 12px;
    }

    .section {
        padding: 50px 0;
    }

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

    .section-subtitle {
        font-size: 15px;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 12px;
    }

    .brand-name {
        display: none;
    }

    .hero-title {
        font-size: 24px;
    }

    .pricing-card,
    .feature-card {
        padding: 24px 18px;
    }
}


/* ==========================================================================
   🌞 Exact Light Mode overrides matching User Screenshot
   ========================================================================== */
html.light-mode .section-badge,
body.light-mode .section-badge,
:root.light-mode .section-badge {
    background: #f3e8ff;
    border-color: #d8b4fe;
    color: #7e22ce;
}

html.light-mode .gradient-text,
body.light-mode .gradient-text,
:root.light-mode .gradient-text {
    background: linear-gradient(135deg, #3b5ef8 0%, #7e22ce 60%, #4f46e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.light-mode .mockup-nav-item.active,
body.light-mode .mockup-nav-item.active,
:root.light-mode .mockup-nav-item.active {
    background: #f3e8ff !important;
    border-color: #d8b4fe !important;
}

html.light-mode .mockup-nav-item.active span,
body.light-mode .mockup-nav-item.active span,
:root.light-mode .mockup-nav-item.active span,
html.light-mode .mockup-nav-item.active i,
body.light-mode .mockup-nav-item.active i,
:root.light-mode .mockup-nav-item.active i {
    color: #7e22ce !important;
}

html.light-mode .mockup-chat-bubble.user,
body.light-mode .mockup-chat-bubble.user,
:root.light-mode .mockup-chat-bubble.user {
    background: #f3e8ff;
    color: #1e293b;
}

html.light-mode .mockup-header,
body.light-mode .mockup-header,
:root.light-mode .mockup-header,
html.light-mode .mockup-sidebar,
body.light-mode .mockup-sidebar,
:root.light-mode .mockup-sidebar {
    background: #f8fafc;
}

html.light-mode .btn-theme-toggle,
body.light-mode .btn-theme-toggle,
:root.light-mode .btn-theme-toggle {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

/* ==========================================================================
   LANDING PAGE BALANCED TYPOGRAPHY SYSTEM
   ========================================================================== */
.landing-body .nav-link-item,
.landing-body .nav-links a {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.landing-body .brand-name {
    font-size: 20px !important;
    font-weight: 800 !important;
}

.landing-body .navbar-user-greeting {
    font-size: 14px !important;
    font-weight: 600 !important;
}

.landing-body .nav-actions .btn-premium {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
}

.landing-body .section-badge {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.landing-body .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

.landing-body .hero-title span {
    font-size: inherit !important;
    line-height: inherit !important;
}

.landing-body .section-title,
.landing-body h2 {
    font-size: 1.85rem !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

.landing-body .feature-title,
.landing-body .pricing-header h3,
.landing-body h3,
.landing-body h4 {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

.landing-body .faq-question {
    font-size: 1rem !important;
    font-weight: 600 !important;
}