:root {
    --primary: #FF5E36;
    --primary-hover: #E04D27;
    --secondary: #1E293B;
    --background: #0B0F19;
    --surface: rgba(22, 30, 49, 0.65);
    --surface-hover: rgba(30, 41, 69, 0.85);
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 94, 54, 0.35);
    --accent: #10B981;
    --accent-alt: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 54, 0.08) 0%, transparent 65%);
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
}
.glow-top-right { top: -100px; right: -100px; }
.glow-bottom-left { bottom: 200px; left: -150px; }

/* Navbar */
nav {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #FF8566);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--primary), #FF8566);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 94, 54, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 94, 54, 0.4);
}

.btn-secondary-nav {
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
}

.btn-secondary-nav:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

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

.hero-tag {
    background: rgba(255, 94, 54, 0.08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 94, 54, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    background: linear-gradient(to right, #FFFFFF, #E2E8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 48px;
    animation: fadeInUp 1s ease;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    animation: fadeInUp 1.2s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), #FF8566);
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 4px 22px rgba(255, 94, 54, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(255, 94, 54, 0.5);
}

.btn-hero-secondary {
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Sections Global Styling */
section {
    position: relative;
}

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

.section-header h2 {
    font-size: 2.7rem;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    background: linear-gradient(to right, #FFFFFF, #CBD5E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Before & After section */
.comparison {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}

.comparison-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 44px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.comparison-card.negative {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: inset 0 0 40px rgba(239, 68, 68, 0.02);
}

.comparison-card.positive {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: inset 0 0 40px rgba(16, 185, 129, 0.02);
}

.comparison-card:hover {
    transform: translateY(-6px);
}

.comparison-card.negative:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.comparison-card.positive:hover {
    border-color: rgba(16, 185, 129, 0.4);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-card.negative h3 { color: var(--accent-alt); }
.comparison-card.positive h3 { color: var(--accent); }

.comparison-list {
    list-style: none;
}

.comparison-list li {
    font-size: 0.98rem;
    margin-bottom: 18px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.comparison-list li i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.comparison-card.negative li i { color: var(--accent-alt); }
.comparison-card.positive li i { color: var(--accent); }

/* Features Section */
.features {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(11, 15, 25, 0.4));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 44px;
    border-radius: 28px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--surface-hover);
    border-color: rgba(255, 94, 54, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 94, 54, 0.05);
}

.feature-icon {
    width: 62px;
    height: 62px;
    background: rgba(255, 94, 54, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 28px;
    border: 1px solid rgba(255, 94, 54, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 94, 54, 0.22);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

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

/* Pricing Section */
.pricing {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 36px;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 54px 44px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border-color: rgba(255, 94, 54, 0.35);
    background: rgba(30, 41, 69, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(255, 94, 54, 0.02);
}

.pricing-card.premium .popular-badge {
    position: absolute;
    top: 28px;
    right: 36px;
    background: linear-gradient(135deg, var(--primary), #FF8566);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(255, 94, 54, 0.25);
}

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

.pricing-card.premium:hover {
    border-color: rgba(255, 94, 54, 0.6);
}

.pricing-title {
    font-size: 1.45rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 44px;
    flex-grow: 1;
}

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

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

.btn-pricing {
    width: 100%;
    text-align: center;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.02rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card.premium .btn-pricing {
    background: linear-gradient(135deg, var(--primary), #FF8566);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 94, 54, 0.25);
}

.pricing-card.premium .btn-pricing:hover {
    box-shadow: 0 8px 25px rgba(255, 94, 54, 0.45);
    transform: translateY(-2px);
}

.pricing-card:not(.premium) .btn-pricing:hover {
    background-color: var(--border);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: var(--surface-hover);
    border-color: rgba(255, 94, 54, 0.3);
    transform: translateY(-6px);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
}

.testimonial-text::before {
    content: '“';
    font-size: 4rem;
    color: rgba(255, 94, 54, 0.1);
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: 'Outfit', sans-serif;
}

.testimonial-author h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 110px 0;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.2), var(--background));
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(11, 15, 25, 0.8));
    border: 1px solid rgba(255, 94, 54, 0.3);
    border-radius: 36px;
    padding: 84px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 94, 54, 0.1) 0%, transparent 65%);
    filter: blur(50px);
    z-index: 0;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #FFFFFF, #E2E8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.18rem;
    max-width: 620px;
    margin: 0 auto 44px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 44px;
    margin-bottom: 44px;
}

.footer-column h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 22px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 18px;
}

/* Keyframes for soft initial fade in */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.08rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links {
        display: none;
    }
}
