:root {
    --primary-orange: #FF6240;
    --secondary-orange: #FF8C69;
    --primary-gradient: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    --dark-bg: #0b0d1c;
    --card-bg: #1c1f2e;
    --light-text: #ffffff;
    --muted-text: #9BA3AF;
    --section-spacing: 100px;
}

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

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Animated Gradient Circles */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-circle {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 98, 64, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: pulse 15s infinite ease-in-out alternate;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 0.3; }
}

/* Header/Navigation */
.site-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(11, 13, 28, 0.8);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 98, 64, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 98, 64, 0.4);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    padding-bottom: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 13, 28, 0.95), rgba(28, 31, 46, 0.95));
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.hero .subheader {
    font-size: 1.5rem;
    color: var(--muted-text);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badges i {
    color: var(--primary-orange);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-cta {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 98, 64, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 98, 64, 0.6);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-form {
    flex: 1;
    max-width: 450px;
}

.form-card {
    background: rgba(28, 31, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.form-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--light-text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.form-card input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-card input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 98, 64, 0.2);
}

.form-card input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 98, 64, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 98, 64, 0.4);
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    margin-left: calc(-50vw + 50%);
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
    min-width: 100%;
    opacity: 0.7;
}

/* Section styling */
section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 98, 64, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 98, 64, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 98, 64, 0.2);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(255, 98, 64, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Workflow Steps */
.workflow {
    padding-top: 50px;
}

.workflow-steps {
    margin-top: 60px;
}

.workflow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 98, 64, 0.1);
}

.workflow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 98, 64, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 98, 64, 0.2);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #131629, #1a1f35);
    padding: 80px 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 98, 64, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 98, 64, 0.15);
}

.quote-icon {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

/* Pricing Section */
.pricing {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-orange);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-badge {
    background: var(--primary-gradient);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 98, 64, 0.2);
}

.pricing-card.standard {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 98, 64, 0.2);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-gradient);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price.annual {
    display: none;
}

.period {
    font-size: 1rem;
    color: var(--muted-text);
    margin-left: 5px;
}

.pricing-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary-orange);
}

.pricing-cta {
    display: block;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 98, 64, 0.2);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 98, 64, 0.4);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 98, 64, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.guarantee-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 98, 64, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: var(--card-bg);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #25283d;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-toggle {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(28, 31, 46, 0.5);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--muted-text);
}

.faq-answer a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 98, 64, 0.15), rgba(255, 140, 105, 0.05));
    padding: 100px 0;
    text-align: center;
    margin: 50px 0;
    border-radius: 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-top: 15px;
}

/* Footer */
footer {
    background: #0a0c17;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--muted-text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.footer-column a {
    display: block;
    color: var(--muted-text);
    margin-bottom: 15px;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

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

.footer-bottom p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-form {
        margin-top: 40px;
        width: 100%;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.standard {
        transform: none;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero .subheader {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .workflow-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 20px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

.hidden {
    display: none !important;
}
