:root {
    --warm-600: #f97316;
    --warm-700: #ea580c;
    --warm-50: #fff7ed;
    --warm-100: #ffedd5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: #fafafa;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 1.5rem; */
}

/* Hero Section - Enhanced */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #ffedd5 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

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

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

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid var(--warm-600);
    border-radius: 50px;
    color: var(--warm-600);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--warm-600), #ff9a3c);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--warm-600);
    border: 2px solid var(--warm-600);
}

.btn-secondary:hover {
    background: var(--warm-50);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
}

.hero-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 30px 80px rgba(249, 115, 22, 0.2);
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    display: block;
}
.hero-section h1{
    font-size: clamp(3rem, 7vw, 2rem);
}
/* Benefits Section - Enhanced */
.benefits-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--warm-50);
    color: var(--warm-600);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 48rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 237, 0.5));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-600), #ff9a3c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
    border-color: var(--warm-600);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--warm-50), var(--warm-100));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--warm-600);
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--warm-600), #ff9a3c);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.2;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.benefit-text {
    color: #666;
    line-height: 1.7;
}

/* Pricing Section - Enhanced */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--warm-50) 0%, white 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.5s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--warm-600);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--warm-600), #ff9a3c);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
    border-color: var(--warm-600);
}

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

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-plan {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: #666;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--warm-600);
    line-height: 1;
}

.price-period {
    color: #999;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #999;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-features i {
    color: var(--warm-600);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pricing-cta-primary {
    background: linear-gradient(135deg, var(--warm-600), #ff9a3c);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.pricing-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.pricing-cta-secondary {
    background: var(--warm-50);
    color: var(--warm-600);
}

.pricing-cta-secondary:hover {
    background: var(--warm-100);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

/* FAQ Section - Enhanced */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, white 0%, var(--warm-50) 100%);
}

.faq-container {
    max-width: 48rem;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--warm-600);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--warm-600);
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--warm-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-600);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--warm-600);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-grid {
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}    @keyframes reveal-text {
        from {
            transform: translateY(40px);
            opacity: 0;
            filter: blur(10px);
        }

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

    @keyframes fade-in-up {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

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

    @keyframes float-slow {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(1deg);
        }
    }

    @keyframes pulse-slow {

        0%,
        100% {
            opacity: 0.5;
            scale: 1;
        }

        50% {
            opacity: 0.8;
            scale: 1.1;
        }
    }

    @keyframes pulse-gentle {

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

        50% {
            transform: scale(1.03);
        }
    }

    .animate-reveal-text {
        animation: reveal-text 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .animate-fade-in-up {
        opacity: 0;
        animation: fade-in-up 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .animate-float-slow {
        animation: float-slow 8s ease-in-out infinite;
    }

    .animate-pulse-slow {
        animation: pulse-slow 6s ease-in-out infinite;
    }

    .animate-pulse-gentle {
        animation: pulse-gentle 4s ease-in-out infinite;
    }

    /* Your Brand Colors Integration */
    :root {
        --warm-50: #fffaf0;
        --warm-100: #fef3c7;
        --warm-600: #d97706;
        --warm-700: #b45309;
        --warm-900: #78350f;
    }