/* ==========================================================================
   Ollynk - Premium Dark Theme Stylesheet
   ========================================================================== */

/* 1. CSS Variables & Theme Tokens */
:root {
    /* Colors - Dark/Navy Aesthetic */
    --bg-darkest: #040814;
    --bg-darker: #090e1fc0;
    --bg-dark: #0f1629;
    --bg-card: rgba(20, 28, 48, 0.4);

    --text-primary: #ffffff;
    --text-muted: #94a3b8;

    /* Branding Colors */
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.3);
    --secondary: #4f46e5;
    --accent: #0ea5e9;

    /* Utility Colors */
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.15);
    --alert: #f59e0b;
    --alert-bg: rgba(245, 158, 11, 0.15);

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-padding: 6rem;
    --container-width: 1200px;

    /* Effects */
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darkest);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding) 0;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--accent);
}

.text-muted {
    color: var(--text-muted);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Grids */
.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

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

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

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

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

/* Backgrounds & Panels */
.bg-darker {
    background-color: var(--bg-darker);
}

.bg-subtle {
    background-color: rgba(15, 22, 41, 0.4);
}

.glass-panel,
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
}

/* 3. Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-ghost:hover {
    color: white;
}

.btn-white {
    background: white;
    color: var(--bg-darkest);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    margin-top: auto;
}

.shadow-glow {
    box-shadow: 0 0 20px var(--primary-glow);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-accent {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.badge-alert {
    background: var(--alert-bg);
    color: var(--alert);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* 4. Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
    /* Increased logo size for better visibility */
    width: auto;
}

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-link {
        color: var(--text-muted);
        font-weight: 500;
        transition: var(--transition);
        font-size: 0.95rem;
    }

    .nav-link:hover {
        color: white;
    }
}

.nav-actions {
    display: none;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

/* Modifiers for mobile menu active state */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darkest);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* 5. Sections & Components */

/* Glow Spheres for Background Ambient */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.4);
    top: -200px;
    left: -100px;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.3);
    top: 100px;
    right: -100px;
}

.sphere-3 {
    width: 600px;
    height: 600px;
    background: rgba(79, 70, 229, 0.2);
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero */
.hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 2rem auto 3rem;
}

/* Clients Grid */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(100%);
}

.client-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Intro Section */
.kicker {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.data-mockup {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.data-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.data-value.positive {
    color: var(--success);
}

.metrics-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-top: 1rem;
}

.metrics-chart .bar {
    flex: 1;
    background: var(--gradient-brand);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

/* Value Props */
.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
}

.glass-card {
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
}

/* Feature Cards (Platform Section) */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
}

/* AI Section */
.ai-chat-mockup {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
}

.chat-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
}

.chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    max-width: 85%;
    font-size: 0.95rem;
}

.user-msg {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.ai-msg {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.ai-icon {
    margin-right: 0.25rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
}

/* Pricing Section */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.toggle-label.active {
    color: white;
}

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

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

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

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
}

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

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-color: rgba(37, 99, 235, 0.5);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.pricing-amount .amount {
    font-size: 3.5rem;
}

.pricing-suffix {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tier-users {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 1.5rem 0;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.tier-features li.included::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
}

.tier-features li.not-included {
    color: var(--text-muted);
    opacity: 0.5;
}

.tier-features li.not-included::before {
    content: "—";
}

/* 6. Animations & Reveal Classes */

/* Reveal on Scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Scale In */
.scale-in {
    transform: scale(0.9) translateY(20px);
}

.scale-in.is-visible {
    transform: scale(1) translateY(0);
}

/* Base keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

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

    50% {
        transform: scale(1.05);
    }

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

.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.panel-hover {
    animation: float 6s ease-in-out infinite;
}

/* Addons Info */
.table-responsive {
    overflow-x: auto;
}

.hover-bg-subtle:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Utility layout classes used in HTML */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.w-full {
    width: 100%;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-5xl {
    font-size: 3rem;
}

.uppercase {
    text-transform: uppercase;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.border-b {
    border-bottom-width: 1px;
    border-style: solid;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ═══════ OLlyNK LITE SECTION FIX ═══════ */
.lite-banner {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.gradient-border {
  border-image: linear-gradient(45deg, #4734FF, #3A9CE5) 1;
}
@media (min-width: 768px) {
  .md-flex-row { flex-direction: row; }
  .md-w-2\/3 { flex: 2; }
  .md-w-1\/3 { flex: 1; }
  .md-mb-0 { margin-bottom: 0 !important; }
  .md-pr-8 { padding-right: 2rem; }
}
.lite-content h2 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem); 
  margin-bottom: 1rem; 
}
@media (min-width:768px) { .lite-banner { gap: 1.5rem; } }

.border-collapse {
    border-collapse: collapse;
}

.hidden {
    display: none;
}

.overflow-hidden {
    overflow: hidden;
}

@media (min-width: 768px) {
    .md-flex-row {
        flex-direction: row;
    }

    .md-text-7xl {
        font-size: 4.5rem;
    }

    .md-max-w-2xl {
        max-width: 42rem;
    }

    .md-max-w-3xl {
        max-width: 48rem;
    }

    .md-w-1\/3 {
        width: 33.333333%;
    }

    .md-w-2\/3 {
        width: 66.666667%;
    }

    .md-mb-0 {
        margin-bottom: 0;
    }

    .md-pr-8 {
        padding-right: 2rem;
    }
}

:root {
    /* Color Palette - Blue-Indigo-Purple Premium Theme */
    --bg-primary: #0B0F1A;
    --bg-secondary: #151A2B;
    --bg-tertiary: #1A2235;
    --bg-darker: #05080f;

    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;

    --accent-blue: #2563EB;
    --accent-indigo: #4F46E5;
    --accent-purple: #9333EA;
    --accent-primary: #4F46E5;
    --accent-secondary: #9333EA;
    --accent-gradient: linear-gradient(135deg, #2563EB 0%, #4F46E5 50%, #9333EA 100%);

    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-family: 'Outfit', sans-serif;

    /* Spacing & Layout */
    --section-padding: 6rem;
    --container-width: 1200px;

    /* Borders & Shadows */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;

    --border-color: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

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

.text-success {
    color: var(--success);
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #9333EA 0%, #4F46E5 50%, #2563EB 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    border: var(--glass-border);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Glassmorphism Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Removed transform on hover to keep features stable, but can add back if desired */

/* Utilities */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
    border: 1px solid rgba(79, 70, 229, 0.3);
    margin-bottom: 1rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

    100% {
        transform: translateY(0px);
    }
}

/* ========================================================================= */
/* COMPONENT STYLES
/* ========================================================================= */

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.5rem 0;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(11, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.logo-icon {
    color: var(--accent-primary);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-login {
    font-weight: 600;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(79, 70, 229, 0) 60%);
    filter: blur(40px);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    z-index: 1;
    align-items: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: white;
}

.stat span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dashboard Mockup (Hero Visual) */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.dashboard-mockup {
    width: 100%;
    max-width: 550px;
    /* height: 380px; */
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    position: relative;
    right: -20px;
}

.mockup-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: var(--glass-border);
}

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

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

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

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

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-title {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-family: monospace;
}

.mockup-body {
    display: flex;
    flex: 1;
    /* padding: 1rem; */
    gap: 1rem;
}

.mockup-sidebar {
    width: 80px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-sm);
    border: var(--glass-border);
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: var(--border-radius-sm);
    height: 60px;
}

.mockup-card.m-large {
    height: 120px;
    background: linear-gradient(to right, rgba(79, 70, 229, 0.12), rgba(0, 0, 0, 0));
    border-left: 2px solid var(--accent-indigo);
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    width: max-content;
}

.badge-icon {
    font-size: 2rem;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    display: block;
    font-size: 0.875rem;
    color: white;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Trusted Section */
.trusted-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
}

.trusted-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.logo-marquee {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    filter: grayscale(100%);
    transition: all var(--transition-fast);
}

.brand:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: white;
}

/* Features */
.features-section {
    position: relative;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--glass-border);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.feature-card {
    padding: 2rem;
}

/* Showcase Section */
.showcase-section {
    background: radial-gradient(circle at right center, rgba(37, 99, 235, 0.07) 0%, rgba(11, 15, 26, 0) 60%);
}

.align-center {
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: white;
}

.feature-list i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.mobile-mockup {
    width: 320px;
    height: 640px;
    border-radius: 40px;
    margin: 0 auto;
    padding: 1.5rem;
    position: relative;
    border: 8px solid #1E2A45;
    background: #151A2B;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1E2A45;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.mockup-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.mockup-app-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mockup-app-class {
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: background var(--transition-fast);
}

.mockup-app-class.active {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.1);
}

.mockup-app-class .time {
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
    width: 65px;
    text-align: right;
}

.mockup-app-class .details {
    flex: 1;
}

.mockup-app-class .details strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 2px;
}

.mockup-app-class .details span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.btn-xs {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    border-radius: var(--border-radius-sm);
}

/* CTA Section */
.cta-section {
    padding-bottom: calc(var(--section-padding) * 1.5);
}

.cta-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.08));
    border: 1px solid rgba(79, 70, 229, 0.25);
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-card p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.site-footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-darker, #05080f);
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.875rem;
    margin: 1.5rem 0;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--accent-secondary);
}

.footer-links h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pricing Section */
.pricing-section {
    background: radial-gradient(circle at left bottom, rgba(37, 99, 235, 0.08) 0%, rgba(11, 15, 26, 0) 55%);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2.5rem 2rem;
}

.pricing-card.popular {
    border-color: var(--accent-indigo);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.25);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    flex: 1;
    margin: 0 0 2rem 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-features i {
    color: var(--accent-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient) !important;
    color: white !important;
    border: none !important;
    font-size: 0.85rem;
    padding: 0.25rem 1.25rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 9999px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Media Queries for Mobile/Tablet */
@media (max-width: 992px) {

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 4rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-mockup {
        right: 0;
        max-width: 100%;
        margin-top: 3rem;
    }

    .floating-badge {
        left: 10px;
        bottom: 10px;
    }

    .showcase-section .grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .showcase-visual {
        order: 2;
    }

    .showcase-text {
        order: 1;
        text-align: center;
    }

    .feature-list {
        align-items: center;
        text-align: left;
        margin: 2rem auto 0;
        max-width: max-content;
    }

    .nav-links {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    .btn-md {
    padding: 7px 12px;
    font-size: 12px;
}
.nav-logo {
    width: 100px;
}
}