/* Landing Page Specific Styles */
.landing-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Navbar */
.landing-navbar {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.landing-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.landing-navbar.scrolled .nav-link-landing,
.landing-navbar.scrolled .navbar-brand {
    color: var(--text-main) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
    transition: color 0.3s;
}

.nav-link-landing {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-link-landing:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.btn-landing-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-landing-outline:hover {
    background: white;
    color: var(--accent-color);
    border-color: white;
}

/* Scrolled state for outline button */
.landing-navbar.scrolled .btn-landing-outline {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.landing-navbar.scrolled .btn-landing-outline:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-landing {
    background: white;
    color: var(--accent-color);
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-landing:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
}

/* Scrolled state for primary button */
.landing-navbar.scrolled .btn-landing {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.landing-navbar.scrolled .btn-landing:hover {
    background: #4f46e5;
    border-color: #4f46e5;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-hero {
    background: white;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero:hover {
    /* transform: translateY(-3px); */
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-ghost:hover {
    background: white;
    color: var(--accent-color);
    border-color: white;
}

/* Hero Image floating */
.hero-image-container {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: floatUp 6s ease-in-out infinite;
}

.hero-card-small {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-card-1 {
    top: -20px;
    right: -30px;
    animation: floatLeft 5s ease-in-out infinite;
}

.hero-card-2 {
    bottom: 20px;
    left: -40px;
    animation: floatRight 7s ease-in-out infinite;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -10px) rotate(5deg);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -10px) rotate(-5deg);
    }
}

/* Floating shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 15%;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
}

/* Features Section */
.features-section {
    background: var(--soft-bg);
    padding: 6rem 0;
    position: relative;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: -1px;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--soft-bg);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.feature-card {
    /* background: white; */
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.feature-icon.pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
}

.feature-icon.amber {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.feature-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* How It Works */
.how-section {
    background: white;
    padding: 6rem 0;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 4.5rem;
    left: 60%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #ec4899);
    z-index: 1;
}

.step-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.step-desc {
    color: #64748b;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: white;
    padding-bottom: 5rem;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Footer */
.landing-footer {
    background: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.footer-text {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 1rem 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image-container {
        margin-top: 2rem;
    }

    .hero-card {
        padding: 1.25rem;
    }

    .btn-hero,
    .btn-hero-ghost {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .wave-divider svg {
        height: 40px;
    }

    .features-section {
        padding: 4rem 1rem;
    }

    .how-section {
        padding: 4rem 1rem;
    }

    .cta-section {
        padding: 0 1rem 3rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 0.75rem 60px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .wave-divider svg {
        height: 30px;
    }

    .btn-hero,
    .btn-hero-ghost {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Navbar responsive - only hide brand text */
    .navbar-brand .brand-text {
        display: none;
    }
}