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

:root {
    --primary: #25B994;
    --primary-dark: #1C8C70;
    --primary-light: #4DE2BE;
    --accent: #FF6B6B;
    --bg-deep: #0B0F1A;
    --bg-dark: #121826;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Unique Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    height: 70px;
    background: rgba(18, 24, 38, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

nav.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-content {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(37, 185, 148, 0.3);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 185, 148, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #94A3B8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-span {
    color: var(--primary);
    position: relative;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-deep);
    box-shadow: 0 10px 30px rgba(37, 185, 148, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 185, 148, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    cursor: default;
    opacity: 0.8;
}

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

.coming-soon-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--bg-deep);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 40px;
    padding: 10px;
    background: linear-gradient(135deg, var(--glass-border), transparent);
    border: 1px solid var(--glass-border);
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Floating Metrics */
.metric-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 16px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* Features - Bento Grid Style */
.features {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.bento-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.bento-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: var(--transition);
    z-index: 0;
}

.bento-item:hover .bento-img {
    opacity: 0.5;
    transform: scale(1.05);
}

.bento-1 {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(45deg, rgba(37, 185, 148, 0.05), transparent);
}

.bento-2 {
    grid-column: span 2;
}

.bento-3 {
    grid-column: span 1;
}

.bento-4 {
    grid-column: span 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 3rem;
    }

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

    .bento-1 {
        grid-column: span 2;
        grid-row: auto;
        min-height: 400px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-deep);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-deep);
}

.user-details h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quote {
    font-size: 1rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.8;
}

/* Trust Badges */
.trust-badges {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-dark);
}

.badges-wrapper {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 32px;
    max-width: 900px;
    margin: 0 auto;
    transition: var(--transition);
}

.badges-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.badges-img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    mix-blend-mode: screen;
    display: block;
}

/* Final CTA */
.final-cta {
    padding: 10rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(37, 185, 148, 0.05) 0%, transparent 70%);
}

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

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

.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    backdrop-filter: blur(10px);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.visitor-counter.visible {
    opacity: 1;
}

.visitor-counter i {
    color: var(--primary);
    opacity: 0.8;
}

.visitor-count-number {
    color: #E2E8F0;
    font-weight: 600;
}