body {
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f5 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background orbs */
.bg-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 122, 255, 0.08), rgba(0, 122, 255, 0.02));
    animation: float 20s infinite ease-in-out;
}

.orb:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 7s;
}

.orb:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 80px 0 120px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 48px;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.circle-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.circle-ring {
    width: 100%;
    height: 100%;
    border: 8px solid var(--primary-blue);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.2);
}

.circle-inner {
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-blue);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-title strong {
    font-weight: 500;
    color: var(--primary-blue);
}

.hero-description {
    font-size: 22px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.25);
}

.cta-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 122, 255, 0.35);
}

/* Features section */
.features {
    padding: 80px 0;
    background: white;
    border-radius: 24px;
    margin-bottom: 80px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    padding: 0 48px;
}

.feature {
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
}

.feature:nth-child(1) { animation-delay: 0.6s; }
.feature:nth-child(2) { animation-delay: 0.8s; }
.feature:nth-child(3) { animation-delay: 1s; }

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 16px rgba(0, 122, 255, 0.2);
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

/* How It Works section */
.how-it-works {
    text-align: center;
    padding: 80px 0;
    margin-bottom: 80px;
}

.how-it-works h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 300;
}

.how-it-works .section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 64px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    padding: 0 24px;
}

.step {
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
}

.step:nth-child(1) { animation-delay: 0.6s; }
.step:nth-child(2) { animation-delay: 0.8s; }
.step:nth-child(3) { animation-delay: 1s; }

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.store-screenshot {
    max-width: 280px;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.store-screenshot:hover {
    transform: translateY(-4px);
}

.store-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.hiw-link {
    display: inline-block;
    margin-top: 48px;
    font-size: 18px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.hiw-link:hover {
    opacity: 0.7;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

.step p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* Pricing section */
.pricing {
    text-align: center;
    padding: 80px 0;
}

.pricing h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 300;
}

.price-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 400px;
    margin: 48px auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 48px rgba(0, 122, 255, 0.15);
    transform: translateY(-4px);
}

.price {
    font-size: 64px;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.price span {
    font-size: 24px;
    color: var(--text-light);
}

.price-description {
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .features-grid {
        padding: 0 24px;
    }

    .price {
        font-size: 48px;
    }

    .how-it-works h2 {
        font-size: 32px;
    }

    .store-screenshot {
        max-width: 240px;
    }
}
