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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.gradient-text-warm {
    background: linear-gradient(to right, #fbbf24, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-cool {
    background: linear-gradient(to right, #3b82f6, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation Classes */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s ease-out;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s ease-out;
}

.animate-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease-out;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dbeafe;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #2563eb, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.header-tagline svg {
    color: #f87171;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 50%, #d1fae5 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: bounce 3s infinite;
}

.circle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: #fcd34d;
    animation-delay: 0s;
    animation-duration: 3s;
}

.circle-2 {
    top: 10rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: #93c5fd;
    animation-delay: 1s;
    animation-duration: 4s;
}

.circle-3 {
    bottom: 5rem;
    left: 25%;
    width: 3rem;
    height: 3rem;
    background: #86efac;
    animation-delay: 2s;
    animation-duration: 5s;
}

.circle-4 {
    bottom: 10rem;
    right: 33%;
    width: 3.5rem;
    height: 3.5rem;
    background: #fdba74;
    animation-delay: 0.5s;
    animation-duration: 3.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .hero-rating {
        justify-content: flex-start;
    }
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-btn {
    background: linear-gradient(to right, #f97316, #ef4444);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-btn {
        margin: 0;
    }
}

.hero-btn:hover {
    background: linear-gradient(to right, #ea580c, #dc2626);
    transform: translateY(-4px);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, #60a5fa, #fcd34d, #34d399);
    border-radius: 1.5rem;
    opacity: 0.2;
    filter: blur(1rem);
    animation: pulse 2s infinite;
}

.hero-img {
    position: relative;
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.badge-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #f97316;
}

.badge-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.purple-gradient {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.red-gradient {
    background: linear-gradient(135deg, #ef4444, #ec4899);
}

.green-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

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

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Offer Section */
.offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 50%, #fecaca 100%);
    position: relative;
    overflow: hidden;
}

.offer-bg-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.spinning-ring {
    position: absolute;
    border: 4px solid;
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.ring-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border-color: #f97316;
}

.ring-2 {
    bottom: 5rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
    border-color: #fcd34d;
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    border: 4px solid #f97316;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .offer-card {
        border-radius: 2rem;
    }
}

.offer-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: white;
    padding: 0.5rem 1rem;
    transform: rotate(12deg) translateX(0.5rem) translateY(-0.5rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .offer-ribbon {
        padding: 0.75rem 1.5rem;
        transform: rotate(12deg) translateX(1rem) translateY(-0.5rem);
        font-size: 0.875rem;
    }
}

.offer-content {
    padding: 1rem;
}

@media (min-width: 1024px) {
    .offer-content {
        padding: 2rem;
    }
}

@media (min-width: 1280px) {
    .offer-content {
        padding: 3rem;
    }
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .offer-title {
        font-size: 2rem;
    }
}

@media (min-width: 1280px) {
    .offer-title {
        font-size: 2.5rem;
    }
}

.offer-subtitle {
    display: block;
    font-size: 1rem;
    background: linear-gradient(to right, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .offer-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .offer-subtitle {
        font-size: 1.875rem;
    }
}

.offer-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .offer-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
}

@media (min-width: 1024px) {
    .feature {
        padding: 1rem;
    }
}

.feature:nth-child(1) { background: #f0fdf4; }
.feature:nth-child(2) { background: #eff6ff; }
.feature:nth-child(3) { background: #faf5ff; }

.feature-icon {
    padding: 0.5rem;
    border-radius: 50%;
    color: white;
}

.feature-icon.green { background: #10b981; }
.feature-icon.blue { background: #3b82f6; }
.feature-icon.purple { background: #8b5cf6; }

.feature-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .feature-title {
        font-size: 1rem;
    }
}

.feature-desc {
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 1024px) {
    .feature-desc {
        font-size: 0.875rem;
    }
}

.offer-pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.125rem;
    color: #6b7280;
    text-decoration: line-through;
}

@media (min-width: 1024px) {
    .old-price {
        font-size: 1.5rem;
    }
}

.current-price {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) {
    .current-price {
        font-size: 3rem;
    }
}

.price-note {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .price-note {
        font-size: 1rem;
    }
}

.offer-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #f97316, #ef4444);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.5rem;
    }
}

.cta-button:hover {
    background: linear-gradient(to right, #ea580c, #dc2626);
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
    animation: none;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    animation: bounce 0.6s ease;
}

.security-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .security-note {
        font-size: 0.875rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f3e8ff 50%, #fce7f3 100%);
}

.testimonials-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .testimonial-card {
        border-radius: 2rem;
        padding: 3rem;
    }
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #e5e7eb;
    transform: rotate(-12deg);
}

.testimonial-content {
    position: relative;
    z-index: 10;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.author-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #e5e7eb;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

@media (min-width: 1024px) {
    .testimonial-text {
        font-size: 1.5rem;
    }
}

.testimonial-cite {
    text-align: center;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.author-role {
    color: #6b7280;
    margin-top: 0.25rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.nav-btn svg {
    color: #6b7280;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b5cf6;
    transform: scale(1.25);
}

.dot:hover {
    background: #d1d5db;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.faq-header-icon svg {
    color: #3b82f6;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question span {
    padding-right: 1rem;
}

.faq-icon {
    color: #3b82f6;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 24rem;
    opacity: 1;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, #60a5fa, #34d399);
}

.footer-brand .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.brand-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-contact {
    text-align: center;
}

.footer-contact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-links {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-links {
        text-align: right;
    }
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-heart svg {
    color: #f87171;
}

.footer-heart span {
    color: #9ca3af;
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-btn, .cta-button {
        width: 100%;
        max-width: none;
    }
    
    .testimonial-nav {
        display: none;
    }
}