/* Mobile-First Responsive Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding-top: 80px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1003;
    padding: 1rem 0;
}

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

.logo-image {
    height: 50px;
    width: auto;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1003;
    position: relative;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 1002;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 100px 20px 30px 20px;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu-logo {
    margin-bottom: 3rem;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-footer {
    text-align: center;
    margin-top: auto;
}

.mobile-menu-footer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.mobile-menu-content a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.mobile-nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    min-height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,0.6);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    opacity: 0.7;
    transition: all 0.6s ease;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0.5px);
}

.hero-bg-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 250px;
    border-radius: 20px;
    transform: rotate(-5deg);
}

.hero-bg-2 {
    top: 15%;
    right: 10%;
    width: 200px;
    height: 150px;
    border-radius: 15px;
    transform: rotate(8deg);
}

.hero-bg-3 {
    bottom: 25%;
    left: 15%;
    width: 180px;
    height: 140px;
    border-radius: 15px;
    transform: rotate(12deg);
}

.hero-bg-4 {
    bottom: 20%;
    right: 5%;
    width: 250px;
    height: 180px;
    border-radius: 15px;
    transform: rotate(-8deg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.45) 0%, 
        rgba(118, 75, 162, 0.45) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    overflow: hidden;
}

.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    overflow: hidden;
}


.step-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-image[src="apple.png"] {
    background-color: #f8f9fa;
    padding: 20px;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.benefit-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 0 auto;
    display: block;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 0 auto;
    display: block;
}

.cta-button {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button .app-store-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
    min-width: 240px;
}

.app-store-icon {
    font-size: 1.4em;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-text .small-text {
    font-size: 0.75em;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.app-store-text .main-text {
    font-size: 1em;
    font-weight: 600;
    margin-top: -2px;
}

/* Sections */
section {
    padding: 80px 0;
}

.how-it-works {
    background: white;
}

.how-it-works h2,
.features h2,
.benefits h2,
.testimonials h2,
.final-cta h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    text-align: center;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #666;
    font-size: 1rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.features h2 {
    color: white;
}

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

.feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    background: white;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-card.popular {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 2px solid #667eea;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

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

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #666;
    font-size: 0.9rem;
}

.price-tag {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.period {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.trial-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

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

.feature-item {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.no-credit-card {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #c3e6c3;
}

.no-credit-card p {
    color: #27ae60;
    font-weight: 600;
    margin: 0;
}

.pricing-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.popular-cta {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.popular-cta:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.pricing-guarantee {
    color: #666;
    font-size: 0.9rem;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.benefit-text p {
    color: #666;
}

/* Testimonials */
.testimonials {
    position: relative;
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials-bg-image {
    position: absolute;
    opacity: 0.7;
    transition: all 0.6s ease;
}

.testimonials-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0.5px);
}

.testimonials-bg-1 {
    top: 8%;
    left: 5%;
    width: 280px;
    height: 220px;
    border-radius: 20px;
    transform: rotate(-6deg);
}

.testimonials-bg-2 {
    top: 12%;
    right: 8%;
    width: 200px;
    height: 160px;
    border-radius: 15px;
    transform: rotate(10deg);
}

.testimonials-bg-3 {
    bottom: 20%;
    left: 10%;
    width: 220px;
    height: 170px;
    border-radius: 15px;
    transform: rotate(8deg);
}

.testimonials-bg-4 {
    bottom: 15%;
    right: 5%;
    width: 190px;
    height: 150px;
    border-radius: 15px;
    transform: rotate(-12deg);
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.45) 0%, 
        rgba(118, 75, 162, 0.45) 100%);
    z-index: 2;
}

.testimonials-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.testimonials h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 4;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,0.6);
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    width: 100%;
}

.testimonial {
    background: rgba(255,255,255,0.15);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.author {
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Final CTA */
.final-cta {
    background: white;
    text-align: center;
}

.final-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee {
    margin-top: 2rem;
}

.guarantee p {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#emailForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#email {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#email:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.privacy-note {
    margin-top: 1rem;
    color: #888;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.8;
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo-image {
        height: 40px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .hero-bg-1 {
        width: 200px;
        height: 160px;
        top: 15%;
        left: 5%;
    }
    
    .hero-bg-2 {
        width: 150px;
        height: 120px;
        top: 20%;
        right: 5%;
    }
    
    .hero-bg-3 {
        width: 140px;
        height: 110px;
        bottom: 30%;
        left: 10%;
    }
    
    .hero-bg-4 {
        width: 180px;
        height: 140px;
        bottom: 25%;
        right: 5%;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .hero-bg-1 {
        width: 350px;
        height: 280px;
        top: 8%;
        left: 3%;
    }
    
    .hero-bg-2 {
        width: 220px;
        height: 170px;
        top: 12%;
        right: 8%;
    }
    
    .hero-bg-3 {
        width: 200px;
        height: 160px;
        bottom: 22%;
        left: 12%;
    }
    
    .hero-bg-4 {
        width: 280px;
        height: 200px;
        bottom: 18%;
        right: 3%;
    }
    
    .benefits-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .step-image {
        width: 150px;
        height: 150px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .modal-content {
        margin: 5% auto;
        max-width: 500px;
    }
    
    section {
        padding: 100px 0;
    }
    
    .hero-bg-1 {
        width: 400px;
        height: 320px;
        top: 5%;
        left: 2%;
    }
    
    .hero-bg-2 {
        width: 250px;
        height: 200px;
        top: 10%;
        right: 5%;
    }
    
    .hero-bg-3 {
        width: 230px;
        height: 180px;
        bottom: 20%;
        left: 10%;
    }
    
    .hero-bg-4 {
        width: 320px;
        height: 240px;
        bottom: 15%;
        right: 2%;
    }
    
    .step-image {
        width: 180px;
        height: 180px;
    }
    
    .hero-overlay {
        flex-direction: row;
        gap: 20px;
        margin-top: -60px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Loading Animation */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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