/* ===== LANDING PAGE STYLES ===== */

/* Import Shadcn colors */
@import url("core.css");

/* ===== BASE STYLES ===== */
body {
    font-family:
        "Inter",
        ui-sans-serif,
        system-ui,
        -apple-system,
        sans-serif;
    line-height: 1.6;
    color: var(--color-zinc-950);
}

.container {
    max-width: 1200px;
}

/* ===== NAVIGATION ===== */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700; /* fw-bold */
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    border: none !important;
    box-shadow: none !important;
    border-radius: var(--radius); /* rounded */
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2814, 165, 233, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        var(--color-sky-500) 0%,
        var(--color-sky-600) 100%
    );
    border-radius: var(--radius); /* rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
        text-align: center;
    }

    .navbar-nav .btn {
        width: 100%;
        margin: 0.25rem 0;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--radius); /* rounded */
        margin-top: 1rem;
        padding: 0 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(
        135deg,
        var(--color-sky-500) 0%,
        var(--color-sky-600) 100%
    );
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 9999px; /* rounded-full */
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500; /* fw-medium */
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700; /* fw-bold */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em; /* tracking-tight */
    color: var(--color-zinc-50);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.hero-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.mockup-container {
    background: white;
    border-radius: var(--radius); /* rounded */
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-zinc-200);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px; /* rounded-full */
}

.mockup-content {
    color: var(--color-zinc-950);
}

.mockup-card {
    background: var(--color-zinc-50);
    border-radius: var(--radius); /* rounded */
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--color-zinc-200);
}

.mockup-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mockup-bar {
    height: 8px;
    background: var(--color-zinc-200);
    border-radius: 0.25rem; /* rounded-sm */
    overflow: hidden;
}

.mockup-progress {
    height: 100%;
    background: var(--color-sky-500);
    border-radius: 0.25rem; /* rounded-sm */
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 500; /* fw-medium */
    border-radius: var(--radius); /* rounded */
    padding: 0.5rem 1rem; /* py-2 px-4 */
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--color-sky-500);
    color: white;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-sm */
}

.btn-primary:hover {
    background: var(--color-sky-600);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-light {
    background: white;
    color: var(--color-sky-600);
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-sm */
}

.btn-light:hover {
    background: var(--color-zinc-50);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    color: var(--color-sky-600);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-sky-500);
    border: 2px solid var(--color-sky-500);
}

.btn-outline-primary:hover {
    background: var(--color-sky-500);
    color: white;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700; /* fw-bold */
    color: var(--color-sky-500);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--color-zinc-500);
    font-weight: 500; /* fw-medium */
    font-size: 1.1rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 120px 0;
    background: var(--color-zinc-50);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700; /* fw-bold */
    color: var(--color-zinc-950);
    margin-bottom: 1rem;
    letter-spacing: -0.025em; /* tracking-tight */
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-zinc-500);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: var(--radius); /* rounded */
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--color-zinc-200);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-sm */
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-sky-500),
        var(--color-green-500)
    );
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius); /* rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700; /* fw-bold */
    color: var(--color-zinc-950);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-zinc-500);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 0;
    background: white;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--color-sky-500),
        var(--color-sky-600)
    );
    color: white;
    border-radius: 9999px; /* rounded-full */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700; /* fw-bold */
    margin: 0 auto 1.5rem;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-sm */
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700; /* fw-bold */
    color: var(--color-zinc-950);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-zinc-500);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-sky-500), transparent);
    z-index: -1;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--color-sky-500) 0%,
        var(--color-sky-600) 100%
    );
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v20h40V20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700; /* fw-bold */
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em; /* tracking-tight */
    color: var(--color-zinc-50);
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: white;
    padding: 80px 0 0;
    border-top: 1px solid var(--color-zinc-200);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--color-zinc-500);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-title {
    font-weight: 700; /* fw-bold */
    color: var(--color-zinc-950);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--color-zinc-500);
    text-decoration: none;
    font-weight: 500; /* fw-medium */
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--color-sky-500);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-zinc-50);
    border-radius: var(--radius); /* rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-zinc-500);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--color-sky-500);
    color: white;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--color-zinc-500);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--color-sky-500);
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-zinc-200);
    margin-top: 3rem;
    padding: 2rem 0;
}

.footer-copyright {
    color: var(--color-zinc-500);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-links {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }

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

    .footer-bottom .col-md-6:last-child {
        margin-top: 1rem;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-mockup {
        transform: none;
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .step-connector {
        display: none;
    }

    .feature-card {
        padding: 2rem;
    }

    .btn {
        padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
