@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap');


:root {
    --bg-primary: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent: #A855F7;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.06);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    zoom: 1.1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    user-select: none;
}


.landing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}


.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.landing-logo img {
    width: 28px;
    height: 28px;
}

.landing-logo span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.landing-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.landing-nav a:hover {
    color: var(--text-primary);
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-login:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.btn-cta {
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    filter: brightness(1.1);
}


.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.landing-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 30, 40, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.tag-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
}

.landing-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.landing-hero h1 .line {
    display: block;
}

.landing-hero h1 .accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.scroll-down-arrow:hover {
    opacity: 1;
    color: var(--accent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-search {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px;
}

.hero-search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 6px;
    transition: all 0.2s ease;
}

.hero-search-box:focus-within {
    border-color: var(--accent);
}

.hero-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding: 12px 16px;
}

.hero-search-box input::placeholder {
    color: var(--text-muted);
}

.hero-search-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hero-search-btn:hover {
    filter: brightness(1.1);
}

.hero-note {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-btn.primary {
    background: var(--accent);
    color: #000;
}

.hero-btn.primary:hover {
    filter: brightness(1.1);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.hero-btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.hero-btn svg {
    width: 16px;
    height: 16px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 80px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hero-stat-value .accent {
    color: var(--accent);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}


.landing-search {
    padding: 0 40px 120px;
    display: flex;
    justify-content: center;
}

.search-wrapper {
    width: 100%;
    max-width: 600px;
}

.landing-search-box {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 6px 6px 6px 24px;
    transition: all 0.2s ease;
}

.landing-search-box:focus-within {
    border-color: var(--accent);
}

.landing-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding: 12px 16px 12px 0;
}

.landing-search-box input::placeholder {
    color: var(--text-muted);
}

.landing-search-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.landing-search-btn:hover {
    filter: brightness(1.1);
}

.landing-search-btn svg {
    width: 16px;
    height: 16px;
}


.landing-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.landing-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 16px;
}

.landing-section-tag::before {
    content: '•';
    color: var(--accent);
}

.landing-section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.landing-section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 450px;
    margin: 0 auto;
    font-weight: 400;
}


.landing-features {
    padding: 100px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 36px;
    min-height: 260px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(168, 85, 247, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.2), 0 0 15px rgba(168, 85, 247, 0.15);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}


.landing-modules {
    padding: 100px 40px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.2s ease;
}

.module-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

.module-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.module-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-content {
    flex: 1;
}

.module-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.module-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.modules-grid-hidden {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 24px auto 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

.modules-grid-hidden.show {
    opacity: 1;
    max-height: 1000px;
    transform: translateY(0);
}

.modules-explore {
    text-align: center;
    margin-top: 40px;
}

.explore-modules-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-modules-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.explore-modules-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-modules-btn.expanded svg {
    transform: rotate(180deg);
}


.landing-pricing {
    padding: 100px 40px;
}

.pricing-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.billing-toggle-container {
    background: #0f1115;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 4px;
    display: flex;
    position: relative;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.billing-toggle-option {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.billing-toggle-option:hover {
    color: #e5e7eb;
}

.billing-toggle-option.active {
    color: #000;
    font-weight: 600;
}

.billing-toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: var(--accent);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1;
    width: 90px;
}

.discount-badge {
    background: #10b981;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 100px;
    margin-left: 4px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
    transform: scale(1.05) !important;
    z-index: 10;
    padding: 40px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px) !important;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 50%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.25;
}

.pricing-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 16px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
}

.pricing-features svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    margin-top: auto;
}

.pricing-card .pricing-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.pricing-card .pricing-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pricing-card.featured .pricing-btn {
    background: var(--accent);
    color: #000;
    border: none;
}

.pricing-card.featured .pricing-btn:hover {
    filter: brightness(1.1);
}


.landing-faq {
    padding: 100px 40px;
}

.faq-container {
    max-width: 650px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-card);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
    color: var(--accent);
    background: rgba(168, 85, 247, 0.05);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 18px 22px;
}

.faq-answer-content {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}


.landing-footer {
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border-card);
    background: linear-gradient(180deg, var(--bg-primary) 0%, #050505 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.footer-logo img {
    width: 24px;
    height: 24px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Floating Glassmorphic Cards ===== */
.floating-cards-container {
    position: relative;
    width: 100%;
    max-width: 1050px;
    height: 560px;
    margin: 40px auto 40px;
    perspective: 1500px;
    z-index: 10;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg,
            rgba(25, 25, 35, 0.5) 0%,
            rgba(18, 18, 28, 0.55) 50%,
            rgba(12, 12, 22, 0.6) 100%);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.15) inset;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

.floating-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 10%,
            rgba(168, 85, 247, 0.5) 50%,
            transparent 90%);
}

.floating-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(168, 85, 247, 0.15),
        0 0 0 1px rgba(168, 85, 247, 0.15) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.12) inset;
    transform: translateY(-4px);
}

.card-inner {
    padding: 22px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Stats Card - Top Left */
.card-stats {
    top: 0;
    left: 0;
    width: 240px;
    transform: rotateY(10deg) rotateX(-3deg);
    animation: floatLeft 6s ease-in-out infinite;
    z-index: 3;
}

.card-header-sm {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 14px;
}

.card-header-sm span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.big-stat {
    text-align: center;
    padding: 12px 0 16px;
}

.big-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #A855F7;
    line-height: 1;
    margin-bottom: 4px;
}

.big-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-val {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.stat-val.accent {
    color: var(--accent);
}

/* Main Card - Center */
.card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    min-height: 360px;
    z-index: 5;
    animation: floatCenter 5s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 14px;
}

.card-icon {
    width: 32px;
    height: 32px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 16px;
    height: 16px;
    color: #A855F7;
}

.card-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.card-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 4px;
}

.card-menu span {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.search-preview {
    margin-bottom: 16px;
}

.search-input-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
}

.search-input-preview span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.result-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.result-item-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.result-dot {
    width: 6px;
    height: 6px;
    background: #A855F7;
    border-radius: 50%;
}

.result-url {
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.result-pass {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    font-family: monospace;
}

.result-count {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.count-num {
    font-weight: 700;
    color: #A855F7;
}

/* Modules Card - Top Right */
.card-modules {
    top: 0;
    right: 0;
    width: 210px;
    transform: rotateY(-10deg) rotateX(-2deg);
    animation: floatRight 5.5s ease-in-out infinite;
    z-index: 3;
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.module-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.module-row img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.module-row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.module-more {
    margin-top: 10px;
    font-size: 11px;
    color: #A855F7;
    text-align: center;
}

/* Plan Card - Bottom Left */
.card-plan {
    bottom: 0;
    left: 60px;
    width: 190px;
    transform: rotateY(8deg) rotateX(3deg);
    animation: floatBottomLeft 6.5s ease-in-out infinite;
    z-index: 2;
}

.plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 4px;
}

.plan-row.featured {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.25);
}

.plan-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.plan-limit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.plan-row.featured .plan-limit {
    color: #A855F7;
    font-weight: 600;
}

/* Features Card - Bottom Right */
.card-features {
    bottom: 0;
    right: 60px;
    width: 200px;
    transform: rotateY(-6deg) rotateX(2deg);
    animation: floatBottomRight 6s ease-in-out infinite;
    z-index: 2;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
}

.feature-row span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Float Animations */
@keyframes floatLeft {

    0%,
    100% {
        transform: rotateY(12deg) rotateX(-3deg) translateY(0);
    }

    50% {
        transform: rotateY(12deg) rotateX(-3deg) translateY(-10px);
    }
}

@keyframes floatCenter {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(-2deg) translateY(0);
    }

    50% {
        transform: rotateY(-10deg) rotateX(-2deg) translateY(-12px);
    }
}

@keyframes floatBottomLeft {

    0%,
    100% {
        transform: rotateY(8deg) rotateX(3deg) translateY(0);
    }

    50% {
        transform: rotateY(8deg) rotateX(3deg) translateY(-6px);
    }
}

@keyframes floatBottomRight {

    0%,
    100% {
        transform: rotateY(-6deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform: rotateY(-6deg) rotateX(2deg) translateY(-8px);
    }
}

@media (max-width: 900px) {
    .floating-cards-container {
        display: none;
    }
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-4px);
    }
}

@media (max-width: 768px) {
    .landing-header {
        padding: 16px 24px;
    }

    .landing-nav {
        display: none;
    }

    .features-grid,
    .modules-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
        padding: 32px;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none !important;
        padding: 32px;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px) !important;
    }
}

@media (max-width: 600px) {
    .landing-hero {
        padding: 120px 20px 80px;
    }

    .landing-hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .landing-search {
        padding: 0 20px 80px;
    }

    .landing-search-box {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
    }

    .landing-search-box input {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .landing-search-btn {
        width: 100%;
        justify-content: center;
    }

    .landing-features,
    .landing-modules,
    .landing-pricing,
    .landing-faq {
        padding: 60px 20px;
    }
}

.step-card:hover .step-number {
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.step-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

.step-connector {
    display: none;
}

.guarantee-badge {
    display: none !important;
}

/* Pricing Cards from Dashboard */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}

.pricing-card>* {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.75) 0%, rgba(139, 92, 246, 0.25) 70%, transparent 100%);
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
}

.pricing-card.featured::after {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 12px;
    text-align: left;
}

.pricing-price {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    text-align: left;
}

.pricing-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-align: left;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    padding: 0;
    width: 100%;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
}

.pricing-features svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.pricing-card .pricing-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    margin-top: auto;
}

.pricing-card .pricing-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pricing-card.featured .pricing-btn {
    background: var(--accent);
    color: #000;
    border: none;
}

.pricing-card.featured .pricing-btn:hover {
    filter: brightness(1.1);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Combined Search Result Sections */
.combined-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.combined-section-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.combined-section-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.combined-section-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.combined-section-count {
    background: rgba(168, 85, 247, 0.15);
    /* Purple tint */
    color: #a855f7;
    /* Purple accent */
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.combined-section-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.combined-section-toggle svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.combined-section-body {
    border-top: 1px solid var(--border-subtle);
    animation: slideDownSection 0.3s ease;
}

@keyframes slideDownSection {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.combined-section-content {
    padding: 20px;
}

/* Lazy Load Indicators */
.lazy-load-indicator {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    border-top: 1px solid var(--border-subtle);
}

.lazy-load-info {
    text-align: center;
    padding: 12px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.2);
}