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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F8FAFF 0%, #F0F8FF 50%, #FFF8F8 100%);
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(184, 255, 249, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(160, 240, 228, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 217, 232, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 248, 198, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(184, 255, 249, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(184, 255, 249, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 70% 40%, rgba(160, 240, 228, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 217, 232, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 248, 198, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, rgba(248, 250, 255, 0.8) 0%, rgba(240, 248, 255, 0.6) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 251, 253, 0.7) 0%, rgba(184, 255, 249, 0.3) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
    animation: fadeInUp 1.5s ease-out;
}

.hero-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: 
        linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 30%, #FFD9E8 70%, #FFF8C6 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 12px 35px rgba(184, 255, 249, 0.4),
        0 0 30px rgba(255, 217, 232, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(184, 255, 249, 0.5),
        0 0 40px rgba(255, 217, 232, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: 
        linear-gradient(135deg, #A0F0E4 0%, #B8FFF9 30%, #FFD9E8 70%, #FFF8C6 100%);
}

/* Carousel Section */
.carousel-section {
    min-height: 80vh;
    padding: 80px 0;
    position: relative;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-slides {
    position: relative;
    height: 70vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(184, 255, 249, 0.8) 100%);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.carousel-slide.active .carousel-caption {
    opacity: 1;
    transform: translateY(0);
}

.carousel-caption h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #333;
}

.carousel-caption p {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(184, 255, 249, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #B8FFF9;
    transform: scale(1.2);
}

/* Marketing Section */
.marketing-section {
    min-height: 60vh;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(184, 255, 249, 0.1) 0%, rgba(255, 217, 232, 0.1) 100%);
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.marketing-box {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.8) 100%),
        radial-gradient(circle at 20% 20%, rgba(184, 255, 249, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 217, 232, 0.25) 0%, transparent 50%);
    backdrop-filter: blur(25px);
    padding: 36px;
    border-radius: 28px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(184, 255, 249, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.marketing-box.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.marketing-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(184, 255, 249, 0.3),
        0 0 20px rgba(255, 217, 232, 0.2);
    border: 2px solid rgba(184, 255, 249, 0.8);
}

.marketing-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(184, 255, 249, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(255, 217, 232, 0.08) 0%, transparent 30%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.marketing-box::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(184, 255, 249, 0.6) 0%, rgba(255, 217, 232, 0.4) 100%);
    border-radius: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.marketing-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
}

.marketing-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

/* Pricing Section */
.pricing-section {
    min-height: 70vh;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(160, 240, 228, 0.1) 0%, rgba(255, 248, 198, 0.1) 100%);
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.85) 100%),
        radial-gradient(circle at 30% 20%, rgba(184, 255, 249, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 217, 232, 0.2) 0%, transparent 50%);
    backdrop-filter: blur(25px);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 25px rgba(184, 255, 249, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: 
        linear-gradient(135deg, rgba(184, 255, 249, 0.4) 0%, rgba(255, 217, 232, 0.3) 50%, rgba(255, 248, 198, 0.2) 100%),
        radial-gradient(circle at 20% 20%, rgba(160, 240, 228, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 217, 232, 0.15) 0%, transparent 50%);
    border: 2px solid rgba(184, 255, 249, 0.6);
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(184, 255, 249, 0.15),
        0 0 30px rgba(255, 217, 232, 0.1);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.18),
        0 0 35px rgba(184, 255, 249, 0.3),
        0 0 20px rgba(255, 217, 232, 0.2);
    border: 2px solid rgba(184, 255, 249, 0.8);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 
        0 30px 70px rgba(184, 255, 249, 0.25),
        0 0 50px rgba(255, 217, 232, 0.2),
        0 0 30px rgba(255, 248, 198, 0.15);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.card-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.card-content li {
    padding: 8px 0;
    color: #666;
    font-weight: 300;
    position: relative;
    padding-left: 25px;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B8FFF9;
    font-weight: bold;
}

.card-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 100%);
    color: #333;
}

.card-button.featured {
    background: linear-gradient(135deg, #FFD9E8 0%, #FFF8C6 100%);
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #F0F8FF 50%, #FFF8F8 100%);
    position: relative;
    overflow: hidden;
}

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

.value-content {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.8) 100%),
        radial-gradient(circle at 20% 20%, rgba(184, 255, 249, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 217, 232, 0.15) 0%, transparent 50%);
    backdrop-filter: blur(25px);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(184, 255, 249, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
}

.value-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.value-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.value-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.value-point {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 255, 0.6) 100%),
        radial-gradient(circle at 20% 20%, rgba(184, 255, 249, 0.15) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 0 20px rgba(184, 255, 249, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.value-point:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(184, 255, 249, 0.15);
}

.value-point h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.value-point p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

.success-stats {
    background: 
        linear-gradient(135deg, rgba(184, 255, 249, 0.2) 0%, rgba(255, 217, 232, 0.2) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(184, 255, 249, 0.3);
    margin-top: 40px;
}

.success-stats h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.success-stats p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

/* Preview Features Section */
.preview-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #F0F8FF 50%, #FFF8F8 100%);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    border: 2px solid rgba(184, 255, 249, 0.3);
}

.preview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.preview-features h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.preview-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.feature-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.8) 100%),
        radial-gradient(circle at 20% 20%, rgba(184, 255, 249, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 217, 232, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 0 20px rgba(184, 255, 249, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(184, 255, 249, 0.15);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 100%);
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    width: fit-content;
    border: 2px solid #B8FFF9;
    box-shadow: 0 4px 15px rgba(184, 255, 249, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.supplier-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, #A0F0E4 0%, #B8FFF9 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    border: 2px solid #A0F0E4;
    box-shadow: 0 4px 15px rgba(160, 240, 228, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.supplier-link:hover {
    background: linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 100%);
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 240, 228, 0.4);
    border-color: #B8FFF9;
}

.preview-cta {
    background: 
        linear-gradient(135deg, rgba(184, 255, 249, 0.2) 0%, rgba(255, 217, 232, 0.2) 100%);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(184, 255, 249, 0.3);
    margin-top: 40px;
}

.preview-cta h3 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.preview-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #FFD9E8 0%, #FFF8C6 100%);
    color: #333;
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #FFF8C6 0%, #FFD9E8 100%);
}

/* Subscribe Section */
.subscribe-section {
    min-height: 40vh;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(160, 240, 228, 0.2) 0%, rgba(255, 217, 232, 0.2) 100%);
}

.subscribe-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.subscribe-content {
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 255, 0.6) 100%),
        radial-gradient(circle at 30% 30%, rgba(184, 255, 249, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 217, 232, 0.15) 0%, transparent 50%);
    backdrop-filter: blur(25px);
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.subscribe-content::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(184, 255, 249, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 217, 232, 0.08) 0%, transparent 40%);
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
}

.subscribe-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.subscribe-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(184, 255, 249, 0.5);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    border-color: #B8FFF9;
    box-shadow: 0 0 0 3px rgba(184, 255, 249, 0.2);
}

.subscribe-form button {
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 100%);
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    flex-shrink: 0;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 255, 249, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(160, 240, 228, 0.1) 0%, rgba(255, 248, 198, 0.1) 100%);
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    color: #666;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(10px, -10px) rotate(1deg);
    }
    66% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .marketing-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .carousel-slides {
        height: 50vh;
    }
    
    .value-content {
        padding: 40px 30px;
    }
    
    .value-content h2 {
        font-size: 32px;
    }
    
    .value-points {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-point {
        padding: 30px;
    }
    
    .success-stats {
        padding: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .preview-cta {
        padding: 30px 20px;
    }
    
    .preview-cta h3 {
        font-size: 28px;
    }
    
    .cta-button.secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .marketing-box,
    .pricing-card {
        padding: 24px;
    }
    
    .subscribe-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
}

