@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --text-heading: #1a1615;
    --text-body: #453f3d;
    --text-muted: #7a6a5e;
    --text-light: #ffffff;

    --accent-blue: #4285f4;
    --accent-blue-transparent: rgba(66, 133, 244, 0.08);
    --accent-green: #10b981;
    --accent-green-transparent: rgba(16, 185, 129, 0.08);
    --accent-purple: #8b5cf6;
    --accent-purple-transparent: rgba(139, 92, 246, 0.08);
    --accent-orange: #e67e22;
    --accent-orange-transparent: rgba(230, 126, 34, 0.08);

    --bg-light: #fafaf8;
    --border-color: rgba(26, 22, 21, 0.08);
    --border-color-medium: rgba(26, 22, 21, 0.15);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 12px 48px -8px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 32px 64px -16px rgba(26, 22, 21, 0.12);

    --max-width: 1120px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: #fafafa;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Global Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

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

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/* Badges & Buttons */
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #614a44;
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9999px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--text-heading);
    color: var(--text-light);
    padding: 16px 36px;
    font-size: 16px;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    border: 1px solid var(--border-color-medium);
    color: var(--text-heading);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: rgba(26, 22, 21, 0.04);
}

/* Background Gradients */
.bg-wrapper {
    position: relative;
    background-color: rgb(156, 193, 231);
}

.bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
            rgb(237, 223, 208) 0%,
            rgb(250, 250, 250) 8%,
            rgb(250, 250, 250) 30%,
            rgb(244, 241, 238) 45%,
            rgb(244, 241, 238) 55%,
            rgb(226, 236, 246) 75%,
            rgb(167, 203, 242) 100%
    );
}

.bg-content {
    position: relative;
    z-index: 1;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 12px 0;
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-radius: 9999px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-wrapper {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--text-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 800;
    font-size: 14px;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-body);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition-smooth);
}

.lang-selector:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-nav-started {
    background-color: var(--text-heading);
    color: var(--text-light);
    padding: 10px 24px;
    font-size: 15px;
    border-radius: 9999px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-nav-started:hover {
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-heading);
}

@media (max-width: 991px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .navbar {
        padding: 12px 0;
    }
    .nav-wrapper {
        border-radius: 0;
        padding: 8px 16px;
    }
    .navbar.scrolled .nav-wrapper {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-color: transparent;
        box-shadow: none;
    }
    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-color);
    }
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 248, 246, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1100;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-menu-panel.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(26, 22, 21, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mobile-menu-link {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.mobile-menu-link:hover {
    background-color: rgba(26, 22, 21, 0.03);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    border-radius: 14px;
    background-color: var(--text-heading);
    color: var(--text-light);
    font-weight: 600;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-heading);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 36px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
}

.hero-proof {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-mock {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background-color: #ddd;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-body);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.avatar-mock.count {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-color: var(--text-light);
}

.proof-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #ca8a04;
    font-weight: 500;
}

.proof-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Hero Tilt Image Frame */
.hero-image-container {
    margin-top: 60px;
    width: 100%;
    max-width: 960px;
    padding: 0 24px;
    perspective: 1200px;
}

.hero-tilt-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: rotateX(10deg) scale(0.96);
    transform-origin: center bottom;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-container:hover .hero-tilt-image {
    transform: rotateX(2deg) scale(1.01);
}

.hero-tilt-image img, .hero-tilt-image svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: transparent;
}

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.stats-card {
    background-color: rgba(26, 22, 21, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stats-card:hover {
    background-color: rgba(26, 22, 21, 0.05);
    border-color: rgba(26, 22, 21, 0.12);
}

.stats-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
}

.stats-label {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
}

/* Interactive Dashboard Preview */
.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--text-heading);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
}

.dashboard-mock {
    background-color: var(--text-light);
    border-radius: 16px;
    border: 1px solid var(--border-color-medium);
    box-shadow: var(--shadow-large);
    overflow: hidden;
    margin-top: 24px;
}

.db-header {
    height: 48px;
    background-color: #f9f8f7;
    border-bottom: 1px solid var(--border-color);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.db-dots {
    display: flex;
    gap: 8px;
}

.db-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.db-dot-red { background-color: var(--accent-red); }
.db-dot-yellow { background-color: var(--accent-yellow); }
.db-dot-green { background-color: var(--accent-green); }

.db-address-bar {
    background-color: rgba(26, 22, 21, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 6px;
}

.db-address-dot {
    color: var(--accent-blue);
    font-size: 8px;
}

.db-badge {
    background-color: var(--accent-blue-transparent);
    border: 1px solid rgba(66, 133, 244, 0.2);
    color: var(--accent-blue);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
}

/* Dashboard App Toolbar */
.db-toolbar {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-app-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #f2ede6;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.db-app-meta {
    flex: 1;
}

.db-app-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
}

.db-app-dev {
    font-size: 11px;
    color: var(--text-muted);
}

.db-app-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
}

.db-status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
}

/* Dashboard Layout Grid */
.db-body {
    display: flex;
    min-height: 420px;
}

.db-sidebar {
    width: 200px;
    background-color: #fafaf8;
    border-right: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.db-menu-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.db-menu-btn:hover {
    background-color: rgba(26, 22, 21, 0.03);
    color: var(--text-heading);
}

.db-menu-btn.active {
    background-color: var(--text-heading);
    color: var(--text-light);
}

.db-sidebar-stats {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.db-progress-item {
    font-size: 11px;
}

.db-progress-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.db-progress-bar-bg {
    height: 4px;
    border-radius: 2px;
    background-color: rgba(26, 22, 21, 0.07);
    overflow: hidden;
}

.db-progress-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.8s ease;
}

.db-progress-bar.blue { background-color: var(--accent-blue); }
.db-progress-bar.green { background-color: var(--accent-green); }

.db-main {
    flex: 1;
    padding: 24px;
    background-color: var(--text-light);
}

.db-tab-content {
    display: none;
}

.db-tab-content.active {
    display: block;
}

/* Dashboard Tab: Overview Card */
.db-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background-color: var(--text-light);
    margin-bottom: 16px;
}

.db-card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.db-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.db-info-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.db-info-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
}

.db-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.db-mini-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.db-mini-card.blue {
    background-color: var(--accent-blue-transparent);
    border-color: rgba(66, 133, 244, 0.14);
    color: var(--accent-blue);
}

.db-mini-card.green {
    background-color: var(--accent-green-transparent);
    border-color: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.db-mini-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.1;
    margin-top: 4px;
}

.db-mini-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Dashboard Responsive Mobile Navigation */
.db-tabs-mobile {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border-color);
    background-color: #fafaf8;
}

.db-tab-mobile-btn {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.db-tab-mobile-btn.active {
    color: var(--text-heading);
    border-bottom-color: var(--text-heading);
    background-color: rgba(26, 22, 21, 0.03);
}

@media (max-width: 800px) {
    .db-sidebar {
        display: none;
    }
    .db-tabs-mobile {
        display: grid;
    }
    .db-body {
        flex-direction: column;
    }
    .db-main {
        padding: 16px;
    }
    .db-stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: var(--text-light);
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-toggle-pill {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 280px;
    background-color: rgba(26, 22, 21, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    padding: 4px;
}

.pricing-toggle-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    background-color: var(--text-light);
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pricing-toggle-pill.pro-selected .pricing-toggle-slider {
    transform: translateX(100%);
}

.pricing-toggle-btn {
    position: relative;
    z-index: 2;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: var(--transition-smooth);
}

.pricing-toggle-btn.active {
    color: var(--text-heading);
}

.pricing-toggle-badge {
    position: absolute;
    top: -8px;
    right: 4px;
    background-color: var(--text-heading);
    color: var(--text-light);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 9999px;
}

.pricing-card-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-blur-bg {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(156, 193, 231, 0.5), rgba(237, 223, 208, 0.5));
    filter: blur(8px);
    opacity: 0.7;
    z-index: 0;
}

.pricing-card {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color-medium);
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    padding: 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

@media (max-width: 900px) {
    .pricing-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }
}

.pricing-card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(26, 22, 21, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pricing-plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 16px 0;
}

.pricing-price {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -2px;
}

.pricing-price-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-plan-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-card-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 600px) {
    .pricing-card-right {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(26, 22, 21, 0.04);
    border: 1px solid var(--border-color-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Reviews Testimonials Marquee */
.reviews-section {
    padding: 80px 0;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 10px 0;
}

/* Mask overlay at the edges of the marquee */
.marquee-mask {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to right, #fafafa 0%, transparent 8%, transparent 92%, #fafafa 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.marquee-track.left {
    animation: scroll-left 50s linear infinite;
}

.marquee-track.right {
    animation: scroll-right 55s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.review-card {
    width: 380px;
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.review-card:hover {
    background-color: var(--text-light);
    border-color: var(--border-color-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.review-text {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
}

.author-location {
    font-size: 11px;
    color: var(--text-muted);
}

/* How It Works Section */
.how-it-works {
    position: relative;
}

.hiw-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

@media (max-width: 991px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.hiw-step {
    position: relative;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.hiw-step:hover {
    background-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

.hiw-step::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
}

.hiw-step-1::before { background-color: var(--accent-blue); }
.hiw-step-2::before { background-color: var(--accent-purple); }
.hiw-step-3::before { background-color: var(--accent-orange); }
.hiw-step-4::before { background-color: var(--accent-green); }

.hiw-number-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hiw-step-1 .hiw-number-badge { background-color: var(--accent-blue-transparent); color: var(--accent-blue); }
.hiw-step-2 .hiw-number-badge { background-color: var(--accent-purple-transparent); color: var(--accent-purple); }
.hiw-step-3 .hiw-number-badge { background-color: var(--accent-orange-transparent); color: var(--accent-orange); }
.hiw-step-4 .hiw-number-badge { background-color: var(--accent-green-transparent); color: var(--accent-green); }

.hiw-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.hiw-step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section Accordion */
.faq-section {
    background-color: var(--text-light);
}

.faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.85);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    gap: 16px;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--text-heading);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 0 24px;
}

.faq-panel p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Community App Showcase Section */
.community-section {
    padding: 100px 0;
}

.community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.community-phone-frame {
    width: 250px;
    height: 500px;
    border-radius: 36px;
    border: 8px solid var(--text-heading);
    box-shadow: var(--shadow-large);
    background-color: var(--text-heading);
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.community-phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f2ede6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.phone-app-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.phone-app-logo {
    width: 64px;
    height: 64px;
    background-color: var(--text-heading);
    border-radius: 16px;
    color: var(--text-light);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-app-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
}

.phone-app-btn {
    background-color: var(--text-heading);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
}

.community-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .community-right {
        align-items: center;
    }
}

.community-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.community-tag {
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    color: var(--text-body);
}

.community-tag-solid {
    background-color: var(--text-heading);
    color: var(--text-light);
    border-color: var(--text-heading);
}

/* Footer Section */
.footer {
    background-color: #f9f8f7;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

















/* PlayLaunch Enterprise Design System */
:root {
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --dark-card: rgba(30, 41, 59, 0.7);
  --border-light: rgba(255, 255, 255, 0.1);
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
}

* {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #f8fafc;
  color: #1e293b;
  overflow-x: hidden;
}

/* Glassmorphism Navbar */
.enterprise-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.enterprise-navbar .nav-link {
  color: #334155 !important;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.enterprise-navbar .nav-link:hover,
.enterprise-navbar .nav-link.active {
  color: #d97706 !important;
}

.enterprise-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
              radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              #ffffff;
  color: #1e293b;
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #0f172a;
}

.hero p {
  margin: 24px 0;
  color: #475569;
  font-size: 1.2rem;
  line-height: 1.7;
}

.text-indigo {
  color: #4f46e5 !important;
}

.btn-primary-indigo {
  background-color: #4f46e5 !important;
  border-color: #4f46e5 !important;
  color: white !important;
  transition: all 0.2s ease-in-out !important;
}

.btn-primary-indigo:hover {
  background-color: #4338ca !important;
  border-color: #4338ca !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-whatsapp {
  background-color: white !important;
  color: #22c55e !important;
  border: 2px solid #22c55e !important;
  transition: all 0.2s ease-in-out !important;
}

.btn-whatsapp:hover {
  background-color: #22c55e !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

.hero-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 10px #fbbf24;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.hero-image {
  max-height: 440px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Feature & Impact Cards */
.feature-card, .impact-card, .price-card, .testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.feature-card:hover, .impact-card:hover, .price-card:hover, .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

.feature-card {
  padding: 36px 28px;
  text-align: center;
}

.feature-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  padding: 16px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.08);
}

.small-card {
  background: #ffffff;
  padding: 28px 20px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.25s ease;
}

.small-card:hover {
  transform: translateY(-6px);
  border-color: #f59e0b;
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.15) !important;
}

.feature-card-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-item:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08) !important;
}

.feature-card-item:hover .icon-circle {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.small-card i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.impact-card {
  padding: 40px 30px;
  text-align: center;
}

.impact-card h2 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

/* Pricing Section */
.price-card {
  padding: 40px 32px;
  position: relative;
}

.price-card.active-plan {
  border: 2px solid #f59e0b;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.price-card h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 16px 0;
  color: #0f172a;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.stats{
    background:#f8fafc;
}

.section-title{
    color:#0f172a;
    font-size:2.3rem;
    font-weight:700;
}

.section-subtitle{
    color:#64748b;
    font-size:16px;
    max-width:650px;
    margin:auto;
}

.stat-item{
    background:#ffffff;
    border-radius:18px;
    padding:35px 20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid #e5e7eb;
}

.stat-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(37,99,235,.15);
}

.stat-item h2{
    color:#2563eb;
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-item p{
    color:#475569;
    font-size:17px;
    font-weight:500;
    margin:0;
}

.price-card li {
  padding: 10px 0;
  color: #475569;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Testimonials */
.testimonial-card {
  padding: 32px;
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #f59e0b;
  margin-bottom: 16px;
  object-fit: cover;
}

/* Section Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  color: white;
  text-align: center;
  position: relative;
}

/* Social Share Button Micro-interactions */
.social-share-btn {
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.social-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* Live Traffic Section Light Theme */
#live-traffic {
  background-color: #ffffff !important;
  color: #1e293b !important;
}

#live-traffic .bg-white {
  background-color: #ffffff !important;
}

#live-traffic .bg-light {
  background-color: #f8fafc !important;
}

/* Footer Links */
.hover-white {
  transition: color 0.2s ease;
}

.hover-white:hover {
  color: #fbbf24 !important;
}