/* ============================================
   KUMBEKA MARKETING WEBSITE
   A stunning, modern SaaS marketing page
   ============================================ */

/* === CSS Custom Properties === */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --secondary: #8b5cf6;
    --green: #22c55e;
    --green-light: #4ade80;
    --blue: #3b82f6;
    --orange: #f59e0b;
    --pink: #ec4899;
    --teal: #14b8a6;
    --red: #ef4444;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-950: #020617;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Gradient Text === */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-ghost {
    color: var(--gray-600);
}
.btn-ghost:hover {
    color: var(--primary);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-icon {
    display: flex;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
    position: relative;
}
.nav-link:hover {
    color: var(--gray-900);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
}
.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99,102,241,0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,0.1), transparent),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(59,130,246,0.08), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(60px);
}
.shape-1 { width: 300px; height: 300px; background: var(--primary); top: 10%; left: -5%; animation: float-shape 20s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; background: var(--secondary); top: 60%; right: -3%; animation: float-shape 15s ease-in-out infinite reverse; }
.shape-3 { width: 150px; height: 150px; background: var(--blue); bottom: 10%; left: 30%; animation: float-shape 18s ease-in-out infinite 2s; }
.shape-4 { width: 100px; height: 100px; background: var(--pink); top: 20%; right: 20%; animation: float-shape 12s ease-in-out infinite 1s; }
.shape-5 { width: 80px; height: 80px; background: var(--green); top: 50%; left: 15%; animation: float-shape 14s ease-in-out infinite 3s; }

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-950);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* === Hero Visual (Dashboard Preview) === */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard-preview:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-800);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.preview-dots {
    display: flex;
    gap: 6px;
}
.preview-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.preview-url {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gray-400);
    flex: 1;
    max-width: 300px;
}

.preview-body {
    display: flex;
    min-height: 280px;
}

.preview-sidebar {
    width: 60px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.sidebar-item.active {
    background: rgba(99,102,241,0.15);
}
.sidebar-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
}
.sidebar-item.active .sidebar-icon {
    background: var(--primary);
}
.sidebar-text {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
}

.preview-main {
    flex: 1;
    padding: 16px;
}

.preview-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.preview-title-text {
    width: 120px;
    height: 14px;
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
}

.preview-btn {
    width: 80px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--primary);
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.preview-card {
    padding: 14px 12px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.card-icon {
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}
.card-purple .card-icon { color: var(--primary-light); }
.card-green .card-icon { color: var(--green-light); }
.card-blue .card-icon { color: var(--blue); }

.card-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.card-label {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.preview-chart {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: rgba(99,102,241,0.3);
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
    min-height: 10px;
}
.chart-bar.active {
    background: var(--primary);
}
.chart-bar:hover {
    background: var(--primary);
}

/* Floating notification cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.06);
    z-index: 2;
}

.card-checkin {
    bottom: 30%;
    left: -40px;
}
.card-event {
    top: 20%;
    right: -30px;
}

.fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fc-icon.green { background: var(--green); }
.fc-icon.purple { background: var(--primary); }

.fc-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-800);
}
.fc-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}
.fc-time {
    font-size: 0.7rem;
    color: var(--gray-400);
    white-space: nowrap;
}

.animate-float {
    animation: float-card 6s ease-in-out infinite;
}
.animate-float-delayed {
    animation: float-card 6s ease-in-out infinite 3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gray-200);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* === Animations === */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* === Logos Section === */
.logos-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.logos-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.logos-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-slide {
    display: flex;
    gap: 48px;
    animation: slide-logos 30s linear infinite;
    width: max-content;
}

.logo-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    padding: 8px 16px;
    letter-spacing: -0.01em;
}

@keyframes slide-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Section Styles === */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === Features Section === */
.features {
    padding: 120px 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-md);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-icon.purple { background: rgba(99,102,241,0.1); color: var(--primary); }
.feature-icon.green { background: rgba(34,197,94,0.1); color: var(--green); }
.feature-icon.blue { background: rgba(59,130,246,0.1); color: var(--blue); }
.feature-icon.orange { background: rgba(245,158,11,0.1); color: var(--orange); }
.feature-icon.pink { background: rgba(236,72,153,0.1); color: var(--pink); }
.feature-icon.teal { background: rgba(20,184,166,0.1); color: var(--teal); }

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature-list li {
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-50);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%236366f1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* === How It Works === */
.how-it-works {
    padding: 120px 0;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-card {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.step-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.step-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.step-visual {
    display: flex;
    justify-content: center;
}

/* Terminal window mock */
.terminal-window {
    width: 100%;
    max-width: 340px;
    background: var(--gray-900);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.terminal-header {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: var(--gray-800);
}
.terminal-body {
    padding: 16px;
}
.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.78rem;
    color: var(--gray-300);
    margin-bottom: 8px;
}
.terminal-prompt {
    color: var(--green);
    font-weight: 700;
}
.terminal-line.success {
    color: var(--green);
}
.terminal-check {
    font-weight: 700;
}

/* Event setup mock */
.event-setup-mock {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.mock-field {
    margin-bottom: 16px;
}
.mock-field:last-child {
    margin-bottom: 0;
}
.mock-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mock-input {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-700);
}
.mock-input.filled {
    border-color: var(--primary);
    background: var(--primary-50);
}
.mock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.mock-tag {
    padding: 4px 10px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}
.mock-tag.add {
    background: var(--gray-100);
    color: var(--gray-500);
}
.mock-radio-group {
    display: flex;
    gap: 8px;
}
.mock-radio {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--gray-100);
    color: var(--gray-500);
}
.mock-radio.active {
    background: var(--primary);
    color: #fff;
}

/* QR Demo */
.qr-demo {
    display: flex;
    justify-content: center;
}
.qr-phone {
    width: 180px;
    background: var(--gray-900);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.phone-notch {
    width: 60px;
    height: 6px;
    background: var(--gray-700);
    border-radius: 3px;
    margin: 0 auto 12px;
}
.phone-screen {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}
.qr-scan-line {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: scan-line 2.5s ease-in-out infinite;
}

@keyframes scan-line {
    0%, 100% { top: 15%; }
    50% { top: 85%; }
}

.phone-success {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    padding: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Report mock */
.report-mock {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
}
.report-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-800);
}
.report-export {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
}
.report-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.7fr;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.8rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-50);
}
.report-row.header {
    font-weight: 600;
    color: var(--gray-400);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gray-50);
}
.cpd-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34,197,94,0.1);
    color: var(--green);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
}

/* === Showcase (Tabs) === */
.showcase {
    padding: 120px 0;
    background: var(--gray-50);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    background: #fff;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}
.tab-btn.active svg {
    opacity: 1;
}
.tab-btn svg {
    opacity: 0.5;
}

.showcase-content {
    position: relative;
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.4s ease;
}
.tab-panel.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.panel-text p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.panel-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.panel-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}
.panel-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Panel visuals */
.panel-visual {
    display: flex;
    justify-content: center;
}

/* Mock Dashboard */
.mock-dashboard {
    width: 100%;
    max-width: 440px;
}
.md-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.md-stat {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--gray-100);
}
.md-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}
.md-stat-label {
    font-size: 0.72rem;
    color: var(--gray-400);
    margin-top: 2px;
}
.md-stat-trend {
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 4px;
}
.md-stat-trend.up {
    color: var(--green);
}
.md-chart {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--gray-100);
}
.sparkline {
    width: 100%;
    height: 80px;
}

/* Mock Events */
.mock-events {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.me-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--gray-100);
}
.me-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.me-type.conf { background: rgba(99,102,241,0.1); color: var(--primary); }
.me-type.work { background: rgba(245,158,11,0.1); color: var(--orange); }
.me-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}
.me-meta {
    display: flex;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-bottom: 10px;
}
.me-progress {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}
.me-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 1s ease;
}

/* Mock Check-in */
.mock-checkin {
    width: 100%;
    max-width: 440px;
}
.mc-scanner {
    background: var(--gray-900);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 32px;
    display: flex;
    justify-content: center;
}
.mc-viewfinder {
    width: 160px;
    height: 160px;
    position: relative;
}
.mc-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary);
}
.mc-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.mc-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.mc-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.mc-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 4px 0; }
.mc-laser {
    position: absolute;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: scan-line 2s ease-in-out infinite;
}
.mc-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 0 0 var(--radius) var(--radius);
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--green);
}
.mc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.mc-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}
.mc-detail {
    font-size: 0.78rem;
    color: var(--gray-400);
}
.mc-status {
    margin-left: auto;
    padding: 4px 12px;
    background: rgba(34,197,94,0.1);
    color: var(--green);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Mock Reports */
.mock-reports {
    width: 100%;
    max-width: 440px;
}
.mr-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius) var(--radius) 0 0;
    border: 1px solid var(--gray-100);
    border-bottom: none;
}
.mr-bar {
    flex: 1;
    background: rgba(99,102,241,0.2);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: var(--transition);
    min-height: 20px;
}
.mr-bar.highlight {
    background: linear-gradient(to top, var(--primary), var(--secondary));
}
.mr-bar:hover {
    background: var(--primary);
}
.mr-bar span {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
}
.mr-summary {
    background: #fff;
    border-radius: 0 0 var(--radius) var(--radius);
    border: 1px solid var(--gray-100);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mr-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mr-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}
.mr-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* Mock Branding */
.mock-branding {
    width: 100%;
    max-width: 440px;
}
.mb-preview {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.mb-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
}
.mb-logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
}
.mb-body {
    padding: 24px 20px;
}
.mb-color-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.mb-swatch {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}
.mb-swatch:hover {
    transform: scale(1.1);
}
.mb-url {
    padding: 10px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-500);
    font-family: monospace;
    border: 1px solid var(--gray-200);
}

/* === Pricing === */
.pricing {
    padding: 120px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: var(--transition);
    cursor: pointer;
}
.toggle-label.active {
    color: var(--gray-900);
    font-weight: 600;
}

.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34,197,94,0.1);
    color: var(--green);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition);
    padding: 3px;
}
.toggle-switch.active {
    background: var(--primary);
}
.toggle-knob {
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.toggle-switch.active .toggle-knob {
    transform: translateX(22px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
    transform: scale(1.05);
    z-index: 1;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.plan-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pricing-amount {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-500);
}
.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    line-height: 1;
}
.period {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.plan-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-features li.included {
    color: var(--gray-700);
}
.plan-features li.excluded {
    color: var(--gray-300);
}
.plan-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
}
.plan-features li.included::before {
    background-color: rgba(34,197,94,0.1);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%2322c55e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plan-features li.excluded::before {
    background-color: var(--gray-100);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3L7 7M7 3L3 7' stroke='%23cbd5e1' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* === Testimonials === */
.testimonials {
    padding: 120px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}
.author-role {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* === FAQ === */
.faq {
    padding: 120px 0;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--gray-400);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === CTA Section === */
.cta-section {
    padding: 120px 0;
    background: var(--gray-50);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary), #7c3aed);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: #fff;
    top: -100px;
    right: -100px;
}
.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: -80px;
    left: -80px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-form .form-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.form-input {
    padding: 14px 20px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font);
    min-width: 200px;
    outline: none;
    transition: var(--transition);
}
.form-input::placeholder {
    color: rgba(255,255,255,0.5);
}
.form-input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

.form-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* === Footer === */
.footer {
    padding: 80px 0 40px;
    background: var(--gray-950);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}
.footer-brand .logo-text {
    color: #fff;
}
.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: 4px 0;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    color: var(--gray-500);
    transition: var(--transition-fast);
}
.footer-social a:hover {
    color: #fff;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .dashboard-preview {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    .dashboard-preview:hover {
        transform: none;
    }
    .floating-card {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-card {
        grid-template-columns: 60px 1fr;
    }
    .step-visual {
        display: none;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tab-panel {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-link {
        font-size: 1.25rem;
    }
    .nav-actions {
        display: none;
    }
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    .hero-visual {
        display: none;
    }
    .hero-scroll-indicator {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }
    .step-number {
        font-size: 2rem;
    }

    .showcase-tabs {
        gap: 6px;
    }
    .tab-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .tab-btn svg {
        display: none;
    }
    .tab-panel {
        padding: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 48px 24px;
    }
    .cta-form .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .form-input {
        min-width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .features,
    .how-it-works,
    .showcase,
    .pricing,
    .testimonials,
    .faq,
    .cta-section {
        padding: 80px 0;
    }
}

/* === Print Styles === */
@media print {
    .navbar,
    .hero-bg,
    .floating-shapes,
    .floating-card,
    .hero-scroll-indicator,
    .cta-section,
    .footer {
        display: none;
    }
    body {
        color: #000;
    }
}
