﻿@media (max-width:1023px) {
    .nav-actions

{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.btn-login,
.btn-trial {
    width: 100%;
    padding: 14px 10px;
}

}
/* Mobile Navigation */
@media (max-width:1023px) {

    .nav-menu.active .nav-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        list-style: none;
        width: 100%;
    }

    .nav-menu.active .btn-login,
    .nav-menu.active .btn-trial {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 10px;
    }
}

.fake-chart span {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* --- RaVya Chat Container with Moving Neon Light --- */
.rahvi-chat {
    width: 380px;
    background: rgba(15, 18, 36, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(138, 43, 226, 0.25);
    overflow: hidden;
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    border: 1px solid transparent;
    background-clip: padding-box;
}

    .rahvi-chat::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -1px;
        border-radius: inherit;
        background: linear-gradient(0deg, rgba(138, 43, 226, 0) 0%, #8a2be2 40%, #00c6ff 60%, rgba(0, 198, 255, 0) 100%);
        background-size: 100% 200%;
        animation: neonMoveUp 12s linear infinite;
        pointer-events: none;
    }

/* Keyframes for Bottom to Up Movement */
@keyframes neonMoveUp {
    0% {
        background-position: 0% 200%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* --- Rest of your Premium Styles --- */
.rahvi-chat-header {
    background: linear-gradient(135deg, #8a2be2 0%, #4a00e0 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}

    .rahvi-chat-header button {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.8);
        font-size: 22px;
        cursor: pointer;
    }

.bot-msg-style {
    background: rgba(255, 255, 255, 0.06);
    color: #e0e6ed;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 4px 16px 16px 16px;
    max-width: 80%;
    align-self: flex-start;
}

.user-msg-style {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 16px 16px 4px 16px;
    max-width: 80%;
    align-self: flex-end;
}

.rahvi-chat-input {
    background: rgba(10, 12, 26, 0.95);
    padding: 14px;
    display: flex;
    gap: 10px;
}

    .rahvi-chat-input input {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(138, 43, 226, 0.3);
        padding: 10px 16px;
        color: #ffffff;
        border-radius: 25px;
        outline: none;
    }

    .rahvi-chat-input button {
        background: linear-gradient(135deg, #8a2be2 0%, #4a00e0 100%);
        color: #ffffff;
        border: none;
        padding: 0 18px;
        border-radius: 25px;
        cursor: pointer;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(138, 43, 226, 0.4);
    }

.graph-bar {
    /* आपका पुराना CSS कोड यहाँ रहेगा */
    transition: height 0.4s ease-in-out;
}
/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #030712;
    --bg-secondary: #0a0f1e;
    --bg-card: rgba(15, 20, 40, 0.6);
    --bg-card-hover: rgba(20, 25, 50, 0.8);
    --purple-500: #673DE6;
    --purple-400: #7c5ce7;
    --purple-300: #a78bfa;
    --purple-600: #5521c4;
    --purple-glow: rgba(103, 61, 230, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(103, 61, 230, 0.15);
    --border-hover: rgba(103, 61, 230, 0.4);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 60px rgba(103, 61, 230, 0.1);
    --container-max: 1280px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

    .navbar.scrolled {
        background: rgba(3, 7, 18, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 40px;
    }
}

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

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--purple-500);
        transition: var(--transition);
        border-radius: 2px;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.nav-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

.btn-login {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}

    .btn-login:hover {
        color: var(--text-primary);
    }

.btn-trial {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--purple-500);
    padding: 10px 22px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}

    .btn-trial:hover {
        background: var(--purple-400);
        box-shadow: 0 4px 20px rgba(103, 61, 230, 0.4);
        transform: translateY(-1px);
    }

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu.active {
    height: calc(100vh - 72px);
    overflow-y: auto;
}

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--purple-500);
    top: -200px;
    right: -100px;
    opacity: 0.12;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: #2563eb;
    bottom: -100px;
    left: -100px;
    opacity: 0.08;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(103, 61, 230, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(103, 61, 230, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1.1fr;
        gap: 80px;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(103, 61, 230, 0.1);
    border: 1px solid rgba(103, 61, 230, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    width: fit-content;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--purple-300);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-500);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: var(--purple-400);
        box-shadow: 0 8px 30px rgba(103, 61, 230, 0.4);
        transform: translateY(-2px);
    }

    .btn-primary.large {
        padding: 18px 36px;
        font-size: 1rem;
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

    .btn-secondary:hover {
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
    }

    .btn-secondary.large {
        padding: 18px 36px;
        font-size: 1rem;
    }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg-primary);
    margin-left: -8px;
}

    .trust-avatar:first-child {
        margin-left: 0;
    }

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Right */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-right {
        display: block;
    }
}

.dashboard-mockup {
    background: rgba(15, 20, 40, 0.8);
    border: 1px solid rgba(103, 61, 230, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(103, 61, 230, 0.05);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(10, 15, 30, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

    .mockup-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

        .mockup-dots span:first-child {
            background: #ef4444;
        }

        .mockup-dots span:nth-child(2) {
            background: #fbbf24;
        }

        .mockup-dots span:last-child {
            background: #22c55e;
        }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    display: grid;
    grid-template-columns: 50px 1fr;
    min-height: 280px;
}

.mockup-sidebar {
    background: rgba(10, 15, 30, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.sidebar-item {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

    .sidebar-item.active {
        background: var(--purple-500);
        box-shadow: 0 0 10px rgba(103, 61, 230, 0.5);
    }

.mockup-main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--purple-500), var(--purple-300));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    animation: chart-grow 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes chart-grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mockup-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xs);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(15, 20, 40, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(103, 61, 230, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.floating-card-icon {
    font-size: 1.4rem;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fc-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.fc-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.fc-change {
    font-size: 0.75rem;
    font-weight: 600;
}

    .fc-change.positive {
        color: #22c55e;
    }

.card-analytics {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.card-notification {
    bottom: 80px;
    left: -40px;
    animation-delay: 2s;
}

.card-performance {
    bottom: 20px;
    right: -10px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ===== STATISTICS ===== */
.stats-section {
    padding: 80px 0;
    position: relative;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--purple-500);
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(103, 61, 230, 0.1);
    border: 1px solid rgba(103, 61, 230, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-300);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--purple-500), var(--purple-300));
        opacity: 0;
        transition: var(--transition);
    }

    .feature-card:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-hover);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--purple-glow);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(103, 61, 230, 0.15), rgba(103, 61, 230, 0.05));
    border: 1px solid rgba(103, 61, 230, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-300);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SOLUTIONS ===== */
.solutions-section {
    padding: 100px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .solution-card:hover {
        border-color: var(--border-hover);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.solution-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-500), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    line-height: 1;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.solution-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.solution-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-300);
    transition: var(--transition);
    margin-top: auto;
}

    .solution-link:hover {
        color: var(--purple-400);
    }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.chart-line {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
    position: relative;
}

    .pricing-card:hover {
        border-color: var(--border-hover);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .pricing-card.popular {
        border-color: var(--purple-500);
        background: rgba(103, 61, 230, 0.05);
        box-shadow: 0 0 40px rgba(103, 61, 230, 0.1);
    }

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-500);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
}

.pricing-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-value {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

.check {
    color: var(--purple-300);
    font-weight: 700;
    font-size: 1rem;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transition: var(--transition);
    margin-top: auto;
}

    .btn-pricing:hover {
        border-color: var(--purple-500);
        background: rgba(103, 61, 230, 0.1);
        transform: translateY(-2px);
    }

    .btn-pricing.primary {
        background: var(--purple-500);
        border-color: var(--purple-500);
    }

        .btn-pricing.primary:hover {
            background: var(--purple-400);
            box-shadow: 0 8px 30px rgba(103, 61, 230, 0.4);
        }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--purple-500);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(200px);
    opacity: 0.08;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: relative;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 40px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

    .social-link:hover {
        background: rgba(103, 61, 230, 0.15);
        border-color: var(--purple-500);
        color: var(--purple-300);
    }

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

.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}

    .footer-link:hover {
        color: var(--purple-300);
    }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(103, 61, 230, 0.3);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(103, 61, 230, 0.5);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .cta-card {
        padding: 50px 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}


/* Dynamic Status Widget Design */
.dynamic-status-widget {
    display: flex;
    align-items: center;
    margin-left: 15px;
    font-family: 'Poppins', sans-serif;
}

.status-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.2); 
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .status-pill:hover {
        border-color: #00c6ff; 
        box-shadow: 0 0 12px rgba(0, 198, 255, 0.2);
    }

.status-flag {
    font-size: 16px;
}

.status-greeting {
    color: #e0e6ed;
}

.status-divider {
    color: rgba(255, 255, 255, 0.2);
}

.status-temp {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
/* --- Base Status Pill (Glassmorphism) --- */
.status-pill {
    position: relative;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.5s ease;
}

.weather-anim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.status-pill span {
    position: relative;
    z-index: 1;
}

/* ==========================================
   1. SUNNY MODE 
   ========================================== */
.sunny-mode {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
}

    .sunny-mode .weather-anim-overlay {
        background: radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.3) 0%, transparent 60%);
        animation: sunPulse 4s ease-in-out infinite alternate;
    }

@keyframes sunPulse {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ==========================================
   2. RAINY MODE 
   ========================================== */
.rainy-mode {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
}

    .rainy-mode .weather-anim-overlay {
        background: linear-gradient(transparent, rgba(255,255,255,0.1));
    }
    .rainy-mode::after {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(110deg, transparent 45%, rgba(0, 198, 255, 0.4) 50%, transparent 55%);
        background-size: 40px 40px;
        animation: rainFall 1.2s linear infinite;
        z-index: 0;
    }

@keyframes rainFall {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 20px 40px;
    }
}

/* ==========================================
   3. NIGHT MODE 
   ========================================== */
.night-mode {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

    .night-mode .weather-anim-overlay {
        background-image: radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px);
        background-size: 20px 20px;
        animation: starTwinkle 3s ease-in-out infinite alternate;
    }

@keyframes starTwinkle {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.9;
    }
}
.status-state {
    font-weight: 700;
    color: #00c6ff; 
    font-size: 12px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

.rahvi-chat {
    position: fixed;
    overflow: hidden;
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

    .rahvi-chat .weather-anim-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 0;
        transition: all 0.5s ease;
    }

    /* ==========================================
   1. CHATBOX RAINY MODE 
   ========================================== */
    .rahvi-chat.rainy-mode {
        background: rgba(10, 20, 38, 0.95) !important;
        border-color: rgba(0, 198, 255, 0.4) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 198, 255, 0.2);
    }

        .rahvi-chat.rainy-mode::after {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(115deg, transparent 40%, rgba(0, 198, 255, 0.25) 50%, transparent 60%);
            background-size: 60px 80px;
            animation: chatRainFall 1s linear infinite;
            z-index: 0;
            pointer-events: none;
        }

@keyframes chatRainFall {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 40px 80px;
    }
}

/* ==========================================
   2. CHATBOX SUNNY MODE 
   ========================================== */
.rahvi-chat.sunny-mode {
    background: rgba(18, 15, 10, 0.95) !important;
    border-color: rgba(255, 165, 0, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 165, 0, 0.15);
}

    .rahvi-chat.sunny-mode .weather-anim-overlay {
        background: radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    }

/* ==========================================
   3. CHATBOX NIGHT MODE 
   ========================================== */
.rahvi-chat.night-mode {
    background: rgba(12, 10, 24, 0.95) !important;
    border-color: rgba(138, 43, 226, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(138, 43, 226, 0.2);
}

    .rahvi-chat.night-mode .weather-anim-overlay {
        background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 15px);
        background-size: 30px 30px;
        animation: chatStars 4s ease-in-out infinite alternate;
    }

@keyframes chatStars {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.7;
    }
}



/* ==========================================================================
   RAVREK ORBIT & RAVYA AI INTERACTION AND MOBILE OVERLAP FIX
   ========================================================================== */

@media (max-width: 1023px) {
    /* Navbar actions grid alignment settings */
    .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .btn-login,
    .btn-trial {
        width: 100%;
        padding: 14px 10px;
    }

    /* Fixed alignment for Dynamic Weather Status Pill on Mobile Viewports */
    .dynamic-status-widget {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}

/* Base Responsive Fixes for Small Screen Viewports (Phones/Tablets) */
@media (max-width: 767px) {

    /* 1. Prevent Hero Mockup Section Breakages */
    .hero-right {
        width: 100% !important;
        padding: 0 10px !important;
        overflow: hidden;
    }

    .dashboard-mockup {
        width: 100% !important;
        margin: 0 auto;
    }

    /* 2. Floating Content Layer Restructuring to prevent clipping */
    .floating-card {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 15px auto !important;
        width: 100% !important;
        animation: none !important; /* Disabling translateY to stabilize UI */
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* 3. RaVya AI Chat Bot Container Layout Fix (Prevents Layout Cutting Off Screen) */
    .rahvi-chat {
        width: calc(100% - 30px) !important; /* Full width execution leaving side margins */
        left: 15px !important;
        right: 15px !important;
        bottom: 80px !important; /* Gives room for the bottom launch button container */
        max-height: 70vh !important; /* Prevents overflow beyond modern device viewports */
        box-sizing: border-box;
    }

    /* Message bubble sizing optimization within the active chat display */
    .bot-msg-style,
    .user-msg-style {
        max-width: 90% !important;
    }

    /* Status launcher pill stack adjustments */
    div[class*="ai-assistant-launcher"],
    .site-footer {
        z-index: 999;
    }
}