* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-panel: rgba(20, 20, 20, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --text-muted: #555555;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.15);
    --glow-center: rgba(100, 100, 100, 0.2);
    --accent: #00d26a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--glow-center) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

.bg-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, var(--bg-primary) 75%);
}

.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 15s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(80, 80, 80, 0.4);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(60, 60, 60, 0.3);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(70, 70, 70, 0.35);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideDown 1s ease-out;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 24px;
}

.header-logo {
    justify-self: start;
}

nav {
    justify-self: center;
}

.header-actions {
    justify-self: end;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-logo img {
    width: 28px;
    height: 28px;
}

.header-logo span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

nav {
    background: var(--bg-panel);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 8px 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-list li a:hover::before {
    opacity: 1;
}

.nav-list li a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle Button */
#mobileMenuToggle {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#mobileMenuToggle:active {
    transform: scale(0.95);
}

#mobileMenuToggle.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

#mobileMenuToggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Overlay */
#mobileMenuOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

#mobileMenuOverlay.show {
    opacity: 1;
    visibility: visible;
}

.btn-signin {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-signin::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-signin:hover::after {
    width: 60%;
}

.btn-getstarted {
    background: var(--text-primary);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-getstarted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-getstarted:hover::before {
    left: 100%;
}

.btn-getstarted:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.sidebar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: var(--bg-panel);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: slideInLeft 1s ease-out 0.5s backwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.sidebar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-muted);
    position: relative;
    text-decoration: none;
}

.sidebar-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-icon.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.sidebar-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transform: scale(1.1);
}

.sidebar-icon:hover::before {
    opacity: 1;
}

.sidebar-icon svg {
    width: 20px;
    height: 20px;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 60px;
    position: relative;
}

.hero-section {
    padding-top: 120px;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Poppins', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(52px, 12vw, 140px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -4px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-title .line-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line-2 {
    display: block;
    background: linear-gradient(135deg, #a0a0a0 0%, #ffffff 50%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-subtitle {
    margin-top: 28px;
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.search-container {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-panel);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 60px;
    padding: 10px 10px 10px 32px;
    width: 100%;
    max-width: 680px;
    min-width: 500px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.search-box:focus-within {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 4px rgba(255, 255, 255, 0.03);
    transform: scale(1.02);
}

.search-box input {
    flex: 1 1 auto;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    padding: 14px 16px 14px 0;
    min-width: 280px;
    width: 100%;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.search-btn:active {
    transform: scale(0.98);
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

.stats-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 36px 56px;
    display: flex;
    gap: 56px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: fadeInUp 1s ease-out 0.7s backwards;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:not(:last-child) {
    border-right: 1px solid var(--border-subtle);
    padding-right: 56px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
    white-space: nowrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-section {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 20, 0.3) 50%, transparent 100%);
    min-height: auto;
    padding: 100px 40px;
}

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

.section-tag {
    display: inline-block;
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    width: 100%;
}

.feature-card {
    background: var(--bg-panel);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.steps-section {
    padding: 100px 40px;
    min-height: auto;
}

.steps-container {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    width: 100%;
    margin-top: 20px;
}

.step-card {
    flex: 1;
    background: var(--bg-panel);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -48px;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-glass) 0%, transparent 100%);
}

.step-card:last-child .step-connector {
    display: none;
}

.pricing-section {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 15, 0.5) 50%, transparent 100%);
    padding: 100px 40px;
    min-height: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    width: 100%;
    align-items: start;
    /* Allow cards to have natural heights */
}

.pricing-card {
    background: var(--bg-panel);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 44px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: auto !important;
    min-height: 0 !important;
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    /* Reduced from 36px */
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-features li svg.status-yes {
    color: #00d26a !important;
    stroke: #00d26a !important;
}

.pricing-features li svg.status-no {
    color: #ff5f5f !important;
    stroke: #ff5f5f !important;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.pricing-btn.primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
}

.pricing-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pricing-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.pricing-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-section {
    padding: 100px 40px;
    min-height: auto;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ffffff;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-content {
    padding: 10px 0 28px 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    transform: translateY(-10px);
    transition: transform 0.4s ease 0.1s;
}

.faq-item.active .faq-answer-content {
    transform: translateY(0);
}

footer {
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    color: var(--text-muted);
    font-size: 14px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }

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

    .steps-container {
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1 1 calc(50% - 16px);
    }

    .step-connector {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .stats-panel {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        padding: 32px;
    }

    .stat-item {
        border-right: none !important;
        padding: 0 24px !important;
    }
}

@media (max-width: 1024px) {
    .nav-list li a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 16px 20px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
    }

    .header-logo {
        order: 1;
    }

    .header-actions {
        order: 2;
        gap: 10px;
    }

    .header-actions .btn-signin {
        display: none;
    }

    nav {
        order: 3;
        width: 100%;
        border-radius: 20px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    nav.active {
        max-height: 400px;
        margin-top: 10px;
        background: var(--bg-panel);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid var(--border-glass);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        padding: 6px;
    }

    .nav-list {
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    nav.active .nav-list {
        opacity: 1;
        transform: translateY(0);
        padding: 10px;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 80px 20px 60px;
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex: 1 1 100%;
    }

    .search-container {
        padding: 0 16px;
    }

    .search-box {
        flex-direction: column;
        padding: 20px;
        border-radius: 28px;
        min-width: auto;
        max-width: 100%;
        gap: 12px;
    }

    .search-box input {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        min-width: auto;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .btn-getstarted {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Show mobile toggle button and overlay on small screens */
    #mobileMenuToggle {
        display: flex;
    }

    #mobileMenuOverlay {
        display: block;
    }

    /* Mobile sidebar - hidden by default, slide in from left when open */
    .sidebar {
        left: -100px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }

    .sidebar.open {
        left: 20px;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 16px;
    }

    .header-logo span {
        display: none;
    }

    .nav-list li a {
        padding: 8px 12px;
        font-size: 11px;
    }

    .btn-getstarted {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/* Pricing Pros Expandable Section */
.pricing-pros-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: -40px auto 80px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.pricing-expand-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-expand-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.pricing-expand-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pricing-pros-container {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 20px;
}

.pricing-pros-container.active {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.pros-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.pros-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 4px;
}

.pros-item h4 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
}

.pros-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pros-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}


/* Hidden Features in Pricing Card - Smooth Slide Down */
.pricing-features li.feature-hidden {
    max-height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
    border-bottom: 0 solid transparent;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
}

.pricing-features li.feature-hidden.show {
    max-height: 200px;
    /* Increased for mobile responsive safety */
    opacity: 1;
    padding: 12px 0;
    transform: translateY(0);
    border-bottom: 1px solid var(--border-subtle);
    pointer-events: all;
}

/* Premium Stagger Effect */
.pricing-features li.feature-hidden.show:nth-child(5) {
    transition-delay: 0.05s;
}

.pricing-features li.feature-hidden.show:nth-child(6) {
    transition-delay: 0.1s;
}

.pricing-features li.feature-hidden.show:nth-child(7) {
    transition-delay: 0.15s;
}

.pricing-features li.feature-hidden.show:nth-child(8) {
    transition-delay: 0.2s;
}

.pricing-features li.feature-hidden.show:nth-child(9) {
    transition-delay: 0.25s;
}

.pricing-features li.feature-hidden.show:nth-child(10) {
    transition-delay: 0.3s;
}

.btn-expand-features {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin: 12px 0 16px 0;
    padding: 0;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.7;
    text-decoration: none !important;
}

.btn-expand-features svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px;
    transition: transform 0.3s ease;
    display: block;
}

.btn-expand-features.expanded svg {
    transform: rotate(180deg);
}

.btn-expand-features:hover {
    color: var(--text-primary);
    opacity: 1;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Gap can cause issues with display:none items in some browsers, use li margins instead */
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Status icon styles for pricing features */
ul.pricing-features li .status-yes {
    width: 16px;
    height: 16px;
    color: var(--accent, #00d26a) !important;
    stroke: var(--accent, #00d26a) !important;
    flex-shrink: 0;
}

ul.pricing-features li .status-no {
    width: 16px;
    height: 16px;
    color: #ff5f5f !important;
    stroke: #ff5f5f !important;
    flex-shrink: 0;
}