:root {
    color-scheme: dark;
    --bg-color: #090312;
    --card-bg: rgba(25, 10, 40, 0.4);
    --card-border: rgba(217, 70, 239, 0.25);
    --text-main: #f8f6fb;
    --text-muted: #948ea5;
    --primary-neon: #7e22ce; 
    --primary-neon-glow: rgba(126, 34, 206, 0.5);
    --secondary-neon: #d946ef; 
    --danger: #ef4444;
    --success: #10b981;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo span {
    font-family: 'Outfit', sans-serif;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.35;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-neon);
    top: -150px;
    left: -150px;
    animation: float-slow 12s infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-neon);
    top: 50%;
    right: -100px;
    animation: float-slow 10s infinite alternate-reverse;
}

/* Glass & Card Base */
.glass-effect {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, #e879f9, #a855f7, #d946ef, #e879f9);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    z-index: 1000;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(9, 3, 18, 0.4) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
}

.nav-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary-small {
    padding: 10px 24px;
    background: var(--primary-neon);
    color: white;
    font-size: 0.9rem;
}

.btn-primary-small:hover {
    box-shadow: 0 0 24px var(--primary-neon-glow);
    background: #9333ea;
}

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(126, 34, 206, 0.3);
    animation: button-pulse 3s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    padding: 15px 38px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}
.faq-icon-box.blue { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); color: #3B82F6; }
.faq-icon-box.purple { background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2); color: #8B5CF6; }
.faq-icon-box.red { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #EF4444; }
.faq-icon-box.green { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: #10B981; }
.faq-icon-box.orange { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); color: #F59E0B; }
.faq-icon-box.gray { background: rgba(156, 163, 175, 0.1); border: 1px solid rgba(156, 163, 175, 0.2); color: #9CA3AF; }

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

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 160px 5% 80px;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

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

.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 0 60px rgba(168, 85, 247, 0.4));
    transform: perspective(1000px) rotateY(-10deg);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

/* Stats Strip */
.stats-strip {
    max-width: 1100px;
    margin: -20px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8f6fb;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.9rem;
    color: #948ea5;
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

/* How It Works */
.how-it-works-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px 60px;
}
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.15);
}
.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(168, 85, 247, 0.08);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}
.step-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    transition: all 0.3s;
}
.step-icon-box svg { width: 28px; height: 28px; }
.step-card:hover .step-icon-box {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}
.step-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #f8f6fb;
}
.step-card p {
    color: #948ea5;
    font-size: 0.9rem;
    line-height: 1.6;
}
.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    width: 60px;
    flex-shrink: 0;
}
.step-connector svg {
    width: 100%;
    height: 24px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Bento Grid (Features) */
.features-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    grid-auto-flow: dense;
}

.bento-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: #1E0A3A; /* Deep Surface Purple */
    border: 1px solid rgba(157, 78, 221, 0.2); /* Vibrant Purple border */
    border-radius: 24px;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(157, 78, 221, 0.3);
}

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

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: #10081C; /* Dark Purple */
}

.card-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.card-wide {
    grid-column: span 4;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.row-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text-content {
    flex: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Mock UI Elements (Productivity Feel) */
.mock-ui {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.mt-10 { margin-top: 24px; }

.progress-bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
}

.danger-bar { background: var(--danger); }
.success-bar { background: var(--success); }

/* Mock Streak */
.mock-streak {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.day {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}
.category-badge.blue { background: rgba(59, 130, 246, 0.12); color: #3B82F6; border: 1px solid rgba(59, 130, 246, 0.3); }
.category-badge.purple { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; border: 1px solid rgba(139, 92, 246, 0.3); }
.category-badge.red { background: rgba(239, 68, 68, 0.12); color: #EF4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.category-badge.green { background: rgba(16, 185, 129, 0.12); color: #10B981; border: 1px solid rgba(16, 185, 129, 0.3); }
.category-badge.orange { background: rgba(245, 158, 11, 0.12); color: #F59E0B; border: 1px solid rgba(245, 158, 11, 0.3); }
.category-badge.gray { background: rgba(156, 163, 175, 0.12); color: #9CA3AF; border: 1px solid rgba(156, 163, 175, 0.3); }

.day.active {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.day.current {
    background: var(--primary-neon);
    color: white;
    box-shadow: 0 0 15px var(--primary-neon-glow);
}

/* Mock Toggle */
.mock-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.toggle-track {
    width: 60px;
    height: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: background 0.3s;
}

.toggle-track.active {
    background: var(--primary-neon);
}

.toggle-thumb {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-track.active .toggle-thumb {
    transform: translateX(28px);
}

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

/* Offline Section */
.offline-section {
    padding: 80px 20px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.offline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: rgba(20, 10, 30, 0.4);
    border: 1px solid rgba(126, 34, 206, 0.15);
    border-radius: 40px;
    padding: 60px;
}

.offline-text {
    flex: 1;
}

.offline-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.offline-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.offline-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.offline-icon-svg {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.offline-icon-svg svg { width: 24px; height: 24px; }

.offline-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.offline-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Shield Animation */
.offline-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-anim-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon-svg {
    width: 120px;
    height: 120px;
    color: #10b981;
    z-index: 2;
    animation: shield-float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.6));
}
.shield-icon-svg svg { width: 100%; height: 100%; fill: rgba(16, 185, 129, 0.1); }

.shield-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.floating-particle {
    position: absolute;
    background: #10b981;
    border-radius: 50%;
    filter: blur(2px);
    animation: float-around 5s infinite ease-in-out;
}
.p1 { width: 12px; height: 12px; top: 10%; left: 20%; animation-delay: 0s; }
.p2 { width: 8px; height: 8px; bottom: 20%; right: 10%; animation-delay: 1.5s; }
.p3 { width: 16px; height: 16px; top: 40%; right: 5%; animation-delay: 3s; opacity: 0.5; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

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

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.lock-icon-anim {
    animation: lock-wobble 3s ease-in-out infinite;
}

@keyframes lock-wobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

/* Audience Section */
.audience-section {
    padding: 60px 20px 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.audience-card.professional {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.12) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.1);
}

.audience-card.professional:hover {
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.5);
}

.pro-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.audience-icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.audience-icon-svg svg { width: 100%; height: 100%; }

.audience-card.professional .audience-icon-svg {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.audience-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: #f8f6fb;
}

.audience-card p {
    color: #948ea5;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    max-width: 960px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
}

.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.2);
    top: -80px;
    left: -60px;
    animation: float-around 8s infinite ease-in-out;
}
.cta-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(96, 165, 250, 0.15);
    bottom: -60px;
    right: -40px;
    animation: float-around 10s infinite ease-in-out reverse;
}

.cta-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(160deg, rgba(168, 85, 247, 0.08), rgba(255,255,255,0.02) 40%, rgba(96, 165, 250, 0.06));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-icon-container {
    margin-bottom: 28px;
}
.cta-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5));
}

.cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.cta-content p {
    color: #948ea5;
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px 36px;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}
.cta-download-btn:hover {
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
}

.cta-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.cta-links a {
    color: #948ea5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.cta-links a:hover {
    color: #f8f6fb;
}
.cta-link-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(148, 142, 165, 0.4);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-icon {
    width: 28px;
    height: 28px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Animations */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes button-pulse {
    0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(168, 85, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

@keyframes float-slow {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(20px, 30px) scale(1.05) rotate(5deg); }
    100% { transform: translate(40px, 60px) scale(1) rotate(-5deg); }
}

.floating-anim {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.flip-in {
    opacity: 0;
    transform: perspective(600px) rotateX(15deg) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.flip-in.visible {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg) translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-wide, .card-large, .card-medium {
        grid-column: span 2;
    }
    .audience-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-connector { width: 30px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .nav-links { display: none; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text-content { text-align: center; }
    .hero-actions { align-items: center; }
    .hero-icon { width: 180px; height: 180px; }

    .stats-container {
        flex-wrap: wrap;
        gap: 24px;
        padding: 30px 20px;
    }
    .stat-divider { display: none; }
    .stat-item { flex: 1 1 40%; }
    .stat-number { font-size: 2rem; }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        width: 40px;
        height: 20px;
    }
    .step-card { max-width: 100%; }

    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-wide, .card-large, .card-medium, .card-small {
        grid-column: span 1;
        grid-row: auto;
    }
    .row-layout {
        flex-direction: column;
        align-items: flex-start;
    }
    .audience-bento {
        grid-template-columns: 1fr;
    }
    .cta-buttons { flex-direction: column; }
}

/* Clean Mockup Showcase */
.mockup-section {
    padding: 80px 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.mockup-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.clean-phone {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1f0b3b, #110423);
    border-radius: 42px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(157, 78, 221, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.clean-phone::before {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.clean-phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(157, 78, 221, 0.35), inset 0 2px 15px rgba(255, 255, 255, 0.1);
}
.center-phone {
    transform: translateY(-20px);
    background: linear-gradient(145deg, #2b1154, #160630);
    box-shadow: 0 40px 70px -15px rgba(157, 78, 221, 0.5), 0 0 100px rgba(168, 85, 247, 0.2), inset 0 2px 15px rgba(255, 255, 255, 0.15);
    border-color: rgba(168, 85, 247, 0.5);
    z-index: 2;
}
.center-phone:hover {
    transform: translateY(-25px);
    box-shadow: 0 50px 80px -20px rgba(157, 78, 221, 0.6), 0 0 130px rgba(168, 85, 247, 0.3), inset 0 2px 20px rgba(255, 255, 255, 0.2);
}
.clean-screen {
    background: #10081C;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
}
/* App Guard Mock Screens CSS */
.mock-bg {
    background: #09030f;
    color: #f8f6fb;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}
.mock-bg::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(126, 34, 206, 0.05) 0%, transparent 100%);
    z-index: -1; pointer-events: none;
}
.mock-header-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1rem; font-weight: 600; color: #f8f6fb;
}
.mock-icon {
    width: 20px; height: 20px; color: #948ea5;
}
.mock-title-center { font-family: 'Outfit', sans-serif; font-size: 1.1rem; }
.mock-tabs {
    display: flex; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; padding: 4px; margin-top: 24px;
}
.mock-tab {
    flex: 1; text-align: center; padding: 8px; border-radius: 8px;
    font-size: 0.85rem; font-weight: 500; color: #948ea5;
}
.active-tab {
    background: #7E22CE; color: white;
    box-shadow: 0 2px 10px rgba(126,34,206,0.3);
}
.badge {
    background: #EF4444; color: white; border-radius: 100px;
    padding: 2px 6px; font-size: 0.65rem; margin-left: 4px; font-weight: 700;
}
.mock-list {
    display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
    overflow-y: auto; overflow-x: hidden; padding-bottom: 20px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.mock-list::-webkit-scrollbar { display: none; }
.mock-list-item {
    display: flex; align-items: center; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); padding: 12px 14px; border-radius: 16px;
}
.highlighted-item {
    border-color: rgba(126, 34, 206, 0.4);
    background: rgba(126, 34, 206, 0.05);
    position: relative;
}
.mock-app-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-right: 14px;
}
.mock-app-icon svg { width: 22px; height: 22px; }
.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.wa { background: #25D366; }
.yt { background: #FF0000; color: white; }
.yt-large { width: 56px; height: 56px; border-radius: 16px; background: #FF0000; color: white; margin-right: 16px; }
.yt-huge { width: 80px; height: 80px; border-radius: 24px; background: #FF0000; color: white; }
.mock-app-info { flex: 1; }
.mock-app-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; color: #f8f6fb; }
.mock-app-time { font-size: 0.75rem; color: #948ea5; }
.mock-arrow { width: 16px; height: 16px; color: #948ea5; }
.mock-pointer-svg {
    position: absolute; right: -20px; bottom: -20px;
    color: #f59e0b; filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
    animation: float 2s infinite; width: 40px; height: 40px;
}
.mock-section-title { font-size: 0.8rem; color: #948ea5; font-weight: 500; margin: 24px 0 12px; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.mock-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-grid-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.08); padding: 14px 8px; border-radius: 14px;
    font-size: 0.8rem; font-weight: 500; color: #948ea5; background: rgba(255,255,255,0.02);
}
.mock-btn-icon-svg { width: 20px; height: 20px; margin-bottom: 8px; color: inherit; }
.active-btn { border-color: #c084fc; color: #c084fc; background: rgba(168,85,247,0.08); box-shadow: inset 0 0 0 1px #c084fc; }
.mock-picker { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 10px; }
.picker-row { display: flex; gap: 40px; font-size: 1.6rem; font-weight: 600; padding: 10px 24px; align-items: center; font-family: 'Outfit', sans-serif; color: #f8f6fb; }
.picker-row.highlight { background: rgba(255,255,255,0.04); border-radius: 14px; width: 100%; justify-content: center; border: 1px solid rgba(255,255,255,0.08); color: #c084fc; }
.picker-row small { font-size: 0.8rem; color: #948ea5; font-weight: 400; margin-left: 2px; font-family: 'Inter', sans-serif; }
.mock-bottom-btn { background: linear-gradient(135deg, #9333ea, #7e22ce); color: white; text-align: center; padding: 16px; border-radius: 14px; font-weight: 600; width: 100%; box-shadow: 0 8px 20px rgba(126, 34, 206, 0.3); cursor: pointer; }
.mock-bottom-btn.outlined { background: transparent; border: 1px solid rgba(255,255,255,0.2); box-shadow: none; color: #f8f6fb; }
.mock-app-header { display: flex; align-items: center; }
.glow-yt { box-shadow: 0 0 40px rgba(255, 0, 0, 0.4); }
.mock-block-title { font-family: 'Outfit', sans-serif; font-size: 1.6rem; margin-bottom: 12px; color: #f8f6fb; }
.mock-quote { text-align: center; font-size: 0.9rem; line-height: 1.6; margin-bottom: 30px; color: #948ea5; padding: 0 10px; }
.mock-timer-card { background: rgba(255,255,255,0.03); padding: 16px 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; width: 100%; }
.mock-timer-text { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; text-align: center; color: #c084fc; margin-top: 4px; }
.mock-center-icon { display: flex; justify-content: center; margin: 40px 0; }

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}
.faq-icon {
    font-size: 1.5rem;
    color: #9D4EDD;
    transition: transform 0.3s;
}
.faq-question.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}
.faq-question.active + .faq-answer {
    padding-bottom: 24px;
    max-height: 300px;
}

@media (max-width: 900px) {
    .center-phone {
        transform: translateY(0);
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-large, .card-medium, .card-small, .card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .navbar {
        width: 95%;
        padding: 12px 16px;
    }
    .nav-links {
        display: none; /* Hide navigation links on small screens */
    }
    .hero {
        padding: 140px 16px 60px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text-content {
        text-align: center;
    }
    .hero-visual-content {
        grid-row: 1; /* Move icon to top on mobile */
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-icon {
        width: 160px;
        height: 160px;
        transform: none;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    .hero-actions .btn-primary, .hero-actions .btn-secondary {
        width: 100%;
        margin-bottom: 16px;
    }
    .section-title {
        font-size: 2rem;
    }
    .row-layout {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .mock-grid-2, .mock-grid-3 {
        grid-template-columns: 1fr;
    }
    .picker-row {
        flex-direction: column;
        gap: 16px;
    }
    .faq-section {
        padding: 60px 16px;
    }
}

/* ─── HERO ENHANCEMENTS ─── */

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-drift linear infinite;
}
.p1 { width: 6px; height: 6px; background: #a855f7; top: 20%; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.p2 { width: 4px; height: 4px; background: #d946ef; top: 60%; left: 80%; animation-duration: 12s; animation-delay: 2s; }
.p3 { width: 8px; height: 8px; background: #7e22ce; top: 80%; left: 30%; animation-duration: 10s; animation-delay: 4s; }
.p4 { width: 5px; height: 5px; background: #c084fc; top: 40%; left: 60%; animation-duration: 9s; animation-delay: 1s; }
.p5 { width: 3px; height: 3px; background: #e879f9; top: 15%; left: 75%; animation-duration: 11s; animation-delay: 3s; }

@keyframes particle-drift {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

/* Badge pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #c084fc;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    animation: badge-pulse 3s ease-in-out infinite;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(168,85,247,0); }
    50% { box-shadow: 0 0 12px 2px rgba(168,85,247,0.2); }
}

/* Feature pills */
.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    cursor: default;
}
.feature-pill:hover {
    background: rgba(168,85,247,0.12);
    border-color: rgba(168,85,247,0.35);
    color: #c084fc;
    transform: translateY(-2px);
}

/* Hero download button */
.hero-download-btn {
    display: inline-flex;
    align-items: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    width: fit-content;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.hero-stat .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-stat .stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #a855f7;
}
.hero-stat .stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* Hero Icon Glow */
.hero-visual-content {
    position: relative;
}
.hero-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(126,34,206,0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Floating notification cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(15, 8, 25, 0.85);
    border: 1px solid rgba(168,85,247,0.25);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #f0e6ff;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.card-1 {
    top: 10%;
    right: -10px;
    animation: float-card 4s ease-in-out infinite;
}
.card-2 {
    bottom: 25%;
    left: -20px;
    animation: float-card 5s ease-in-out infinite reverse;
    animation-delay: 1s;
}
.card-3 {
    bottom: 10%;
    right: 0px;
    animation: float-card 4.5s ease-in-out infinite;
    animation-delay: 2s;
}
@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Typing animation */
.title-cursor {
    animation: cursor-blink 1s steps(2, start) infinite;
    margin-left: 2px;
    color: #d946ef;
    font-weight: 300;
}
@keyframes cursor-blink {
    to { visibility: hidden; }
}

/* Mini typing line */
.hero-mini-typing {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: #a855f7;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mini-cursor {
    color: #d946ef;
    animation: cursor-blink 0.7s step-end infinite;
    font-weight: bold;
}

/* Testimonials Slider */
.testimonials-slider-section {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    position: relative;
}
.testimonial-slider-container {
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0 40px 0;
}
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.testimonial-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 45px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
/* Decorative Quote Mark */
.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 180px;
    font-family: serif;
    color: rgba(168, 85, 247, 0.06);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 18px;
    position: relative;
    z-index: 1;
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(168, 85, 247, 0.3);
    padding: 2px; /* For border effect */
}
.testimonial-avatar svg {
    width: 24px;
    height: 24px;
    background: #11091a; /* Match body bg */
    border-radius: 50%;
    padding: 12px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.testimonial-author-info {
    flex-grow: 1;
}
.testimonial-author-info h4 {
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.testimonial-author-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.testimonial-stars-svg {
    display: flex;
    gap: 2px;
}
.testimonial-stars-svg svg {
    display: block;
}
.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 1;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.slider-dot.active {
    background: var(--primary-color);
    width: 24px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 16px;
        padding: 12px 16px;
    }
    .card-1, .card-2, .card-3 {
        display: none;
    }
    .hero-icon-glow {
        width: 180px;
        height: 180px;
    }
    .hero-badge-pill {
        font-size: 0.75rem;
    }
    .hero-feature-pills {
        justify-content: center;
    }
}
