/* 
   Bookify Modern Design System 
   Premium Dark/Light Theme & Glassmorphism
   Enhanced Version 2.0
*/

/* ========= Dark Theme (Default) ========= */
:root {
    /* Color Palette - Deep Space & Neon */
    --bg-body: #020617;
    --bg-surface: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-glass: rgba(15, 23, 42, 0.6);

    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --primary-glow: rgba(59, 130, 246, 0.5);

    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --accent-glow: rgba(139, 92, 246, 0.5);

    --success: #10b981;
    --success-light: #34d399;
    --warning: #f59e0b;
    --danger: #ef4444;
    --cyan: #06b6d4;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --border-light: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, #0f172a 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(228, 100%, 74%, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355, 100%, 68%, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340, 100%, 76%, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(269, 100%, 77%, 0.1) 0px, transparent 50%);

    /* Spacing & Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    --shadow-glow-lg: 0 0 60px rgba(59, 130, 246, 0.4);
    --shadow-glow-accent: 0 0 40px rgba(139, 92, 246, 0.3);

    --backdrop-blur: blur(12px);
    --backdrop-blur-lg: blur(24px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========= Light Theme ========= */
[data-theme="light"] {
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.7);

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;

    --border-light: rgba(0, 0, 0, 0.08);
    --border-glass: rgba(0, 0, 0, 0.05);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
    --shadow-glow-lg: 0 0 60px rgba(59, 130, 246, 0.2);
    --shadow-glow-accent: 0 0 40px rgba(139, 92, 246, 0.15);

    --gradient-mesh: radial-gradient(at 40% 20%, hsla(228, 100%, 74%, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355, 100%, 68%, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340, 100%, 76%, 0.04) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(269, 100%, 77%, 0.05) 0px, transparent 50%);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme transition class */
body.theme-transitioning,
body.theme-transitioning * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    gap: 0.5rem;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.2);
    top: -200px;
    left: -100px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.15);
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.animate-pulse-glow {
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
    }
}

.hero-badge-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.875rem;
    font-weight: 600;
    gap: 0.5rem;
}

/* Hero Title */
.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.text-gradient-animated {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 4px;
    z-index: -1;
}

.title-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--primary);
    margin-left: 8px;
    animation: cursor-blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.animate-title {
    animation: title-reveal 1s ease-out forwards;
}

@keyframes title-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover .btn-glow {
    opacity: 0.5;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-icon i {
    font-size: 0.875rem;
    margin-left: 2px;
}

.btn-play:hover .play-icon {
    background: var(--primary);
    transform: scale(1.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.stat-content h4 {
    font-size: 1.75rem;
    color: var(--text-main);
    margin-bottom: 0;
    font-weight: 700;
}

.stat-content p {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Trusted Section */
.trusted-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trusted-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    font-weight: 600;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1500px;
}

.visual-wrapper {
    position: relative;
}

.dashboard-preview {
    position: relative;
    transform: rotateY(-8deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(59, 130, 246, 0.15);
    background: var(--bg-surface);
}

.dashboard-preview:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid var(--border-light);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots span:nth-child(1) {
    background: #ef4444;
}

.preview-dots span:nth-child(2) {
    background: #f59e0b;
}

.preview-dots span:nth-child(3) {
    background: #10b981;
}

.preview-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-preview img {
    display: block;
    width: 100%;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 20;
}

.glass-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: var(--backdrop-blur-lg);
}

.card-top-right {
    top: 20px;
    right: -40px;
    animation: float-1 6s ease-in-out infinite;
}

.card-bottom-left {
    bottom: 40px;
    left: -60px;
    animation: float-2 6s ease-in-out infinite;
}

.card-center-right {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(calc(-50% - 10px)) translateX(-5px);
    }
}

.floating-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.card-icon.success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.card-icon.primary {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.card-trend {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-trend.positive {
    color: var(--success);
}

.card-trend.negative {
    color: var(--danger);
}

/* Notification Card */
.notification-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: var(--danger);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.notification-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Orbit Ring */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: orbit 15s linear infinite;
    box-shadow: 0 0 20px var(--primary-glow);
}

@keyframes orbit {
    from {
        transform: translateX(-50%) rotate(0deg) translateY(-50%);
    }

    to {
        transform: translateX(-50%) rotate(360deg) translateY(-50%);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.75rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.features-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    overflow: hidden;
    text-align: center;
}

.feature-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-lg);
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-icon-ring {
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-ring {
    opacity: 1;
    animation: spin-slow 10s linear infinite;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(4px);
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Highlight */
.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.highlight-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* AI Animation */
.highlight-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-animation {
    position: relative;
    width: 250px;
    height: 250px;
}

.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px var(--primary-glow);
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 60px var(--primary-glow);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 80px var(--primary-glow);
    }
}

.ai-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ai-ring-1 {
    width: 140px;
    height: 140px;
    animation: ring-rotate 8s linear infinite;
}

.ai-ring-2 {
    width: 200px;
    height: 200px;
    animation: ring-rotate 12s linear infinite reverse;
    border-style: dashed;
}

.ai-ring-3 {
    width: 250px;
    height: 250px;
    animation: ring-rotate 16s linear infinite;
    border-color: rgba(139, 92, 246, 0.2);
}

@keyframes ring-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ai-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.ai-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.ai-particles span:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.ai-particles span:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.ai-particles span:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface) 50%, var(--bg-body) 100%);
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pricing-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--text-main);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    display: none;
}

.toggle-switch label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked+label::after {
    left: calc(100% - 23px);
}

.toggle-badge {
    padding: 0.35rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before,
.pricing-card.popular::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular {
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-lg);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.popular-badge i {
    font-size: 0.7rem;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.price-container {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.25rem;
}

.price-tag .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-tag .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-tag .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonials-glow {
    position: absolute;
    top: 30%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(59, 130, 246, 0.2);
    font-size: 2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.author-position {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.2);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.15);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(6, 182, 212, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-lg);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: cta-glow-rotate 20s linear infinite;
}

@keyframes cta-glow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
}

.text-gradient-light {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-feature i {
    color: #34d399;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    font-weight: 600;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.cta-trust span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--bg-surface);
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-light);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-main);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-dim);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-wrapper {
        gap: 3rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .trusted-section {
        justify-content: center;
    }

    .card-center-right {
        display: none;
    }

    .card-top-right {
        right: -20px;
    }

    .card-bottom-left {
        left: -20px;
    }

    .feature-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-stats {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scroll-indicator {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-guarantee {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .hero-wrapper,
    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
    }

    .pricing-toggle {
        flex-wrap: wrap;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .price-tag {
        justify-content: center;
    }
}

/* ========================================
   LIGHT THEME SPECIFIC OVERRIDES
======================================== */
[data-theme="light"] {

    /* Hero Section */
    .hero-section {
        background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
    }

    .hero-bg {
        opacity: 0.5;
    }

    .hero-glow {
        opacity: 0.2;
    }

    .hero-glow-1 {
        background: rgba(59, 130, 246, 0.15);
    }

    .hero-glow-2 {
        background: rgba(139, 92, 246, 0.12);
    }

    .hero-title {
        color: #0f172a;
    }

    .text-gradient-animated {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .hero-description {
        color: #475569;
    }

    .hero-badge {
        background: rgba(59, 130, 246, 0.12);
        border-color: rgba(59, 130, 246, 0.25);
        color: #2563eb;
    }

    .hero-badge-secondary {
        background: rgba(139, 92, 246, 0.12);
        border-color: rgba(139, 92, 246, 0.25);
        color: #7c3aed;
    }

    .badge-dot {
        background: #10b981;
    }

    /* Hero Stats */
    .hero-stats {
        border-color: rgba(0, 0, 0, 0.08);
    }

    .stat-icon {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .stat-content h4 {
        color: #0f172a;
    }

    .stat-content p {
        color: #64748b;
    }

    .stat-divider {
        background: rgba(0, 0, 0, 0.08);
    }

    /* Floating Cards */
    .floating-card,
    .glass-card {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

    .floating-card .card-value {
        color: #0f172a;
    }

    .floating-card .card-label {
        color: #64748b;
    }

    .notification-title {
        color: #0f172a;
    }

    .notification-text {
        color: #64748b;
    }

    /* Dashboard Preview */
    .dashboard-preview {
        box-shadow:
            0 50px 100px -20px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(0, 0, 0, 0.05),
            0 0 80px rgba(59, 130, 246, 0.1);
    }

    .preview-header {
        background: #f8fafc;
        border-color: rgba(0, 0, 0, 0.08);
    }

    .preview-title {
        color: #64748b;
    }

    /* Trusted Section */
    .trusted-label {
        color: #64748b;
    }

    .logo-item {
        color: #475569;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        color: #64748b;
    }

    .mouse {
        border-color: rgba(0, 0, 0, 0.15);
    }

    /* Cards */
    .feature-card,
    .pricing-card,
    .testimonial-card {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover,
    .pricing-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(59, 130, 246, 0.3);
    }

    .feature-card h3 {
        color: #0f172a;
    }

    .feature-card p {
        color: #475569;
    }

    .pricing-card.popular {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        border-color: var(--primary);
    }

    /* Section Header */
    .section-badge {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.2);
        color: #2563eb;
    }

    .section-title {
        color: #0f172a;
    }

    .section-desc {
        color: #475569;
    }

    /* Feature Highlight */
    .feature-highlight {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.08);
    }

    .feature-highlight::before {
        background: radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    }

    .highlight-content h3 {
        color: #0f172a;
    }

    .highlight-content p {
        color: #475569;
    }

    .highlight-stat {
        background: rgba(241, 245, 249, 0.8);
        border-color: rgba(0, 0, 0, 0.05);
    }

    /* Pricing */
    .pricing-section {
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    }

    .price-tag .currency,
    .price-tag .period {
        color: #64748b;
    }

    .price-tag .amount {
        color: #0f172a;
    }

    .pricing-features li {
        color: #475569;
    }

    .pricing-guarantee {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.08);
    }

    .guarantee-content h4 {
        color: #0f172a;
    }

    .guarantee-content p {
        color: #475569;
    }

    /* Testimonials */
    .testimonial-text {
        color: #334155;
    }

    .author-name {
        color: #0f172a;
    }

    .author-position {
        color: #64748b;
    }

    /* Stats Section */
    .stats-section {
        background: #ffffff;
    }

    .stat-card {
        background: #f8fafc;
        border-color: rgba(0, 0, 0, 0.06);
    }

    /* FAQ Section */
    .faq-item {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.08);
    }

    .faq-question {
        color: #0f172a;
    }

    .faq-answer {
        color: #475569;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    }

    /* Footer */
    .footer {
        background: #0f172a;
        color: #e2e8f0;
    }

    .footer h4 {
        color: #ffffff;
    }

    .footer a {
        color: #94a3b8;
    }

    .footer a:hover {
        color: #ffffff;
    }

    /* Buttons */
    .btn-outline {
        border-color: rgba(0, 0, 0, 0.2);
        color: #0f172a;
    }

    .btn-outline:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .btn-glass {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
        color: #0f172a;
    }

    .btn-glass:hover {
        background: rgba(0, 0, 0, 0.1);
    }

    .play-icon {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary);
    }

    .btn-play:hover .play-icon {
        background: var(--primary);
        color: white;
    }

    /* Section backgrounds */
    section:nth-child(even) {
        background: #ffffff;
    }

    section:nth-child(odd) {
        background: #f8fafc;
    }

    /* Badge */
    .hero-badge {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.2);
        color: #2563eb;
    }

    /* Inputs */
    input,
    textarea,
    select {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.15);
        color: #0f172a;
    }

    input:focus,
    textarea:focus,
    select:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    /* Scrollbar */
    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
        background: #cbd5e1;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    /* ========================================
       MODERN COMPACT FOOTER - Bookify
       ======================================== */

    .bk-footer {
        --footer-bg: #0f172a;
        --footer-bg-secondary: #1e293b;
        --footer-text: #94a3b8;
        --footer-text-light: #cbd5e1;
        --footer-white: #f8fafc;
        --footer-accent: #3b82f6;
        --footer-border: rgba(255, 255, 255, 0.08);
        
        background: var(--footer-bg);
        color: var(--footer-text);
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        position: relative;
        z-index: 10;
        margin-top: -160px;
        /* Pull it up */
        margin-bottom: 80px;
    }
    --footer-text: #94a3b8;
    --footer-text-light: #cbd5e1;
    --footer-white: #f8fafc;
    --footer-accent: #3b82f6;
    --footer-border: rgba(255, 255, 255, 0.08);
    
    background: var(--footer-bg);
    color: var(--footer-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
    z-index: 10;
    margin-top: -160px;
    /* Pull it up */
    margin-bottom: 80px;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    backdrop-filter: blur(24px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 2rem;
    color: #fff;
}

.newsletter-text h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 440px;
    line-height: 1.6;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: #fff;
    width: 320px;
    outline: none;
}

.newsletter-input-group button {
    background: #fff;
    color: #020617;
    padding: 12px 32px;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-input-group button:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Main */
.footer-main {
    position: relative;
    z-index: 5;
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

/* Brand - V3 */
.footer-brand-col {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 14px;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.footer-logo span {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.footer-tagline {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* App Badges - Legible V3 */
.footer-apps {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-badge-icon {
    font-size: 1.5rem;
    color: #fff;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
}

.app-badge-text span {
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.app-badge-text strong {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
}

/* Social - V3 */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
color: #94a3b8;
text-decoration: none;
transition: all 0.3s ease;
}

.social-link:hover {
background: #fff;
color: #020617;
border-color: #fff;
transform: translateY(-5px);
}

/* ========================================
   MODERN FOOTER - bk- prefixed classes
   ======================================== */

.bk-footer {
    --bk-footer-bg: linear-gradient(180deg, #0a0f1a 0%, #0d1320 50%, #070b14 100%);
    --bk-footer-bg-secondary: rgba(15, 23, 42, 0.6);
    --bk-footer-text: #94a3b8;
    --bk-footer-text-light: #cbd5e1;
    --bk-footer-white: #f8fafc;
    --bk-footer-accent: #6366f1;
    --bk-footer-accent-secondary: #a855f7;
    --bk-footer-border: rgba(99, 102, 241, 0.15);
    --bk-footer-glow: rgba(99, 102, 241, 0.3);
    
    background: var(--bk-footer-bg);
    color: var(--bk-footer-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.bk-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.5) 20%, 
        rgba(168, 85, 247, 0.5) 50%, 
        rgba(99, 102, 241, 0.5) 80%, 
        transparent 100%
    );
}

/* Subtle glow effect */
.bk-footer::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Newsletter - Modern Glassmorphism */
.bk-footer__newsletter {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.8) 0%, 
        rgba(30, 41, 59, 0.6) 50%,
        rgba(15, 23, 42, 0.8) 100%);
    border-bottom: 1px solid var(--bk-footer-border);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.bk-footer__newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.6) 30%, 
        rgba(168, 85, 247, 0.6) 70%, 
        transparent 100%
    );
}

.bk-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.bk-newsletter__content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.bk-newsletter__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bk-footer-accent), var(--bk-footer-accent-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 
        0 10px 30px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; }
    50% { box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) inset; }
}

.bk-newsletter__text h3 {
    color: var(--bk-footer-white);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}

.bk-newsletter__text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--bk-footer-text);
}

.bk-input-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.4rem;
    border-radius: 12px;
    border: 1px solid var(--bk-footer-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bk-input-group:focus-within {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.bk-input-group input {
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: var(--bk-footer-white);
    font-size: 0.9rem;
    width: 260px;
    outline: none;
}

.bk-input-group input::placeholder {
    color: var(--bk-footer-text);
}

.bk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bk-btn--primary {
    background: linear-gradient(135deg, var(--bk-footer-accent), var(--bk-footer-accent-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.bk-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.bk-btn--primary i {
    transition: transform 0.3s ease;
}

.bk-btn--primary:hover i {
    transform: translateX(3px);
}

/* Main Footer */
.bk-footer__main {
    padding: 1.75rem 0 0.75rem;
}

.bk-footer__grid {
    display: grid;
    grid-template-columns: 240px 1fr 1fr 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
}

/* Brand - Modern */
.bk-footer__brand {
    padding-right: 1.5rem;
    min-width: 280px;
}

.bk-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.bk-footer__logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--bk-footer-accent), var(--bk-footer-accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
}

.bk-footer__logo:hover .bk-footer__logo-icon {
    transform: scale(1.05);
    box-shadow: 
        0 12px 32px rgba(99, 102, 241, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.bk-footer__logo span {
    color: var(--bk-footer-white);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #c7c7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bk-footer__tagline {
    color: var(--bk-footer-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

/* Social - Modern Circle Icons */
.bk-footer__social {
    display: flex;
    gap: 0.625rem;
}

.bk-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bk-footer-border);
    border-radius: 10px;
    color: var(--bk-footer-text-light);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.bk-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bk-footer-accent), var(--bk-footer-accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bk-social-link i {
    position: relative;
    z-index: 1;
}

.bk-social-link:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.bk-social-link:hover::before {
    opacity: 1;
}

/* Columns - Modern */
.bk-footer__column {
    min-width: 140px;
}

.bk-footer__column-title {
    color: var(--bk-footer-white);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.5rem;
}

.bk-footer__column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--bk-footer-accent), var(--bk-footer-accent-secondary));
    border-radius: 2px;
}

.bk-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bk-footer__links li {
    margin-bottom: 0.35rem;
}

.bk-footer__links a {
    color: var(--bk-footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    position: relative;
}

.bk-footer__links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--bk-footer-accent), var(--bk-footer-accent-secondary));
    transition: width 0.25s ease;
}

.bk-footer__links a:hover {
    color: var(--bk-footer-white);
    transform: translateX(4px);
}

.bk-footer__links a:hover::before {
    width: 12px;
}

/* Bottom - Modern */
.bk-footer__bottom {
    background: linear-gradient(180deg, 
        rgba(15, 23, 42, 0.4) 0%, 
        rgba(15, 23, 42, 0.7) 100%);
    border-top: 1px solid var(--bk-footer-border);
    padding: 1.25rem 0;
    position: relative;
}

.bk-footer__bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.4) 20%, 
        rgba(168, 85, 247, 0.4) 80%, 
        transparent 100%
    );
}

.bk-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.bk-footer__copyright {
    color: var(--bk-footer-text);
    font-size: 0.85rem;
}

.bk-footer__copyright p {
    margin: 0;
}

.bk-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.bk-footer__legal a {
    color: var(--bk-footer-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    position: relative;
}

.bk-footer__legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--bk-footer-accent), var(--bk-footer-accent-secondary));
    transition: width 0.25s ease;
}

.bk-footer__legal a:hover {
    color: var(--bk-footer-white);
}

.bk-footer__legal a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1100px) {
    .bk-footer__grid {
        grid-template-columns: 200px repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .bk-footer__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .bk-footer__brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
        min-width: auto;
    }
    
    .bk-footer__tagline {
        max-width: 100%;
    }
    
    .bk-footer__social {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .bk-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .bk-newsletter__content {
        flex-direction: column;
    }
    
    .bk-input-group {
        width: 100%;
        max-width: 300px;
    }
    
    .bk-input-group input {
        width: 100%;
    }
    
    .bk-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .bk-footer__legal {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .bk-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .bk-footer__column {
        text-align: left;
    }
    
    .bk-footer__column-title {
        font-size: 0.7rem;
    }
    
    .bk-footer__links a {
        font-size: 0.8rem;
    }
}

/* ========================================
   FLOATING PAGE TOOLS
   ======================================== */

.floating-page-tools {
    position: fixed;
    right: 20px;
    bottom: 140px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.floating-tool-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.95);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.floating-tool-btn:hover,
.floating-tool-btn:focus-visible {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(15, 23, 42, 1);
    color: #fff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.floating-tool-highlight {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-color: rgba(14, 165, 233, 0.95);
    color: #f8fafc;
}

@media (max-width: 768px) {
    .floating-page-tools {
        right: 16px;
        bottom: 90px;
        gap: 10px;
    }

    .floating-tool-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}