:root {
    --primary-color: #FF6633;
    --primary-hover: #e85a2b;
    --primary-light: #FFF5F1;
    --secondary-color: #ffffff;
    --text-color: #0A0A0A;
    --text-muted: #666666;
    --bg-color: #ffffff;
    --dot-color: #FEECE5;
    /* Subtle orange dots */
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Background Dot Grid */
.bg-dot-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(var(--dot-color) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    background-position: center;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 102, 51, 0.05);
}

.navbar-brand img {
    height: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 51, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.badge-top {
    background: white;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid #FFEBE5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(255, 102, 51, 0.05);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF6633 0%, #FF9966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-outline-custom {
    background: white;
    border: 1px solid #FFEBE5;
    color: var(--primary-color);
}

.btn-outline-custom:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
}

/* Hero Badges */
.hero-stats-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.stat-badge {
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #EEE;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-badge i {
    color: var(--primary-color);
}

/* Section Header */
.section-tag {
    background: #FFF5F1;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-card h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* How It Works */
.how-it-works-row {
    position: relative;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    text-align: left;
    height: 100%;
    position: relative;
    z-index: 2;
}

.connecting-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFEBE5;
    z-index: 1;
    display: block;
}

.step-num {
    background: #FFF5F1;
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.step-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 102, 51, 0.2);
}

/* Stats Banner */
.stats-banner {
    background: #0A0A0A;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Auth Pages */
.auth-centric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-card-new {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 480px;
    text-align: left;
}

/* Onboarding Progress */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.step-dot.active {
    background: var(--primary-color);
    color: white;
}

.step-dot.completed {
    background: var(--primary-light);
    color: var(--primary-color);
}

.step-line {
    height: 2px;
    width: 20px;
    background: #F3F4F6;
    transition: all 0.3s;
}

.step-line.active {
    background: var(--primary-light);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    text-align: left;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 102, 51, 0.05);
}

.testimonial-card i.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(255, 102, 51, 0.1);
    font-size: 3rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

/* Pricing Section */
.pricing-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    border-top: 1px solid #EEE;
    padding-top: 2rem;
}

.pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* Final CTA */
.final-cta {
    background: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, #FF9966 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
    height: 32px;
    margin-bottom: 1.5rem;
}

.footer-links h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: white;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}