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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(to bottom, #f8fafc 0%, #e0e7ef 20%, #2a4668 60%, #1a2848 100%);
    color: #0f172a;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px 20px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header and Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 10px;
}

/* Logo */
.logo {
    margin-left: 20px;
    flex-shrink: 0;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    display: block;
}

/* Navigation */
.nav {
    display: flex;
    gap: 24px;
    margin-right: 20px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #C9A961;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A961;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    flex: 0;
    margin-bottom: 15px;
}

.main-heading {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.subheading {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
}

/* Email Form */
.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

input[type="email"] {
    width: 100%;
    padding: 14px 40px 14px 18px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

input[type="email"]::placeholder {
    color: #94a3b8;
}

input[type="email"]:focus {
    outline: none;
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.required-indicator {
    position: absolute;
    right: 15px;
    color: #64748b;
    font-size: 18px;
    pointer-events: none;
}

.submit-btn {
    background: #0f172a;
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: #1e293b;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* Messages */
.success-message {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.5);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.success-message p {
    color: #4ade80;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.error-message {
    background: rgba(248, 113, 113, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.5);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.error-message p {
    color: #f87171;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0;
    flex-shrink: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 20px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 140px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    text-align: left;
    width: 100%;
    color: #0f172a;
}

.feature-description {
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: left;
    width: 100%;
    color: #0f172a;
}

.highlight {
    color: #C9A961;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    max-width: 1200px;
    margin: 50px auto 40px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-align: center;
    margin-bottom: 40px;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.step-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #C9A961;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: rgba(201, 169, 97, 0.15);
    transform: scale(1.05);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    color: #0f172a;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1e293b;
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #C9A961;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.secondary-cta:hover {
    color: #b8954d;
    transform: translateX(4px);
}

/* Pricing Section */
.pricing-section {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

/* Pricing Section Redesign */
.pricing-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 60px 40px 60px;
    position: relative;
    z-index: 2;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1e293b;
    margin: 0 auto 40px;
    max-width: 700px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

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

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1280px) {
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    min-height: 520px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.pricing-card-popular {
    border: 2px solid #C9A961;
    background: rgba(255, 255, 255, 0.45);
}

.pricing-card-popular:hover {
    border-color: #b8954d;
    background: rgba(255, 255, 255, 0.55);
}

.pricing-card-infinite {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.pricing-card-infinite:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 169, 97, 0.5);
}

.pricing-card-infinite .pricing-tier,
.pricing-card-infinite .price-amount,
.pricing-card-infinite .price-period,
.pricing-card-infinite .pricing-subtitle,
.pricing-card-infinite .pricing-annual,
.pricing-card-infinite .pricing-features li {
    color: #ffffff;
}

.pricing-card-infinite .pricing-features li::before {
    color: #f59e0b;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C9A961 0%, #b8954d 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.pricing-tier {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    color: #0f172a;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #475569;
    margin-left: 4px;
}

.pricing-annual {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1e293b;
    text-align: center;
    margin-bottom: 12px;
}

.savings {
    color: #16a34a;
    font-weight: 600;
}

.pricing-subtitle {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #64748b;
    text-align: center;
    margin-bottom: 24px;
    min-height: 40px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A961;
    font-weight: 700;
    font-size: 16px;
}

/* Single Pricing CTA */
.pricing-cta-container {
    text-align: center;
    margin-top: 40px;
}

.pricing-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.pricing-main-cta:hover {
    transform: translateY(-2px);
    background: #1e293b;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.3);
}

.pricing-main-cta:active {
    transform: translateY(0);
}

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

.pricing-main-cta:hover svg {
    transform: translateX(4px);
}

/* Starfield Animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow:
        100px 200px 3px rgba(255, 255, 255, 0.9),
        300px 100px 2px rgba(255, 255, 255, 0.8),
        500px 300px 4px rgba(255, 255, 255, 1),
        700px 150px 2px rgba(255, 255, 255, 0.7),
        900px 250px 3px rgba(255, 255, 255, 0.9),
        1100px 100px 2px rgba(255, 255, 255, 0.8),
        200px 400px 4px rgba(255, 255, 255, 1),
        400px 450px 2px rgba(255, 255, 255, 0.7),
        600px 350px 3px rgba(255, 255, 255, 0.85),
        800px 500px 4px rgba(255, 255, 255, 1),
        1000px 400px 2px rgba(255, 255, 255, 0.75),
        150px 550px 3px rgba(255, 255, 255, 0.9),
        350px 600px 2px rgba(255, 255, 255, 0.8),
        550px 650px 4px rgba(255, 255, 255, 1),
        750px 550px 2px rgba(255, 255, 255, 0.7),
        950px 600px 3px rgba(255, 255, 255, 0.9),
        1150px 500px 2px rgba(255, 255, 255, 0.8),
        250px 50px 3px rgba(255, 255, 255, 0.85),
        450px 150px 4px rgba(255, 255, 255, 1),
        650px 100px 2px rgba(255, 255, 255, 0.75),
        1200px 300px 3px rgba(255, 255, 255, 0.9),
        50px 150px 2px rgba(255, 255, 255, 0.7),
        850px 50px 4px rgba(255, 255, 255, 1),
        1300px 250px 3px rgba(255, 255, 255, 0.85),
        400px 200px 2px rgba(255, 255, 255, 0.8);
    animation: twinkle 2.5s infinite ease-in-out alternate;
}

.stars::after {
    animation-delay: 1.25s;
}

@keyframes twinkle {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shooting-stars::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    animation: shoot 8s infinite ease-in;
}

@keyframes shoot {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translate(-300px, 300px);
        opacity: 0;
    }
}

/* Aurora Wave Effects */
.aurora-wave {
    position: fixed;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.03) 25%,
        rgba(118, 75, 162, 0.05) 50%,
        rgba(240, 147, 251, 0.03) 75%,
        transparent 100%);
    opacity: 0.4;
    animation: auroraMove 40s ease-in-out infinite;
    filter: blur(80px);
}

.aurora-wave-2 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.02) 25%,
        rgba(139, 92, 246, 0.04) 50%,
        rgba(236, 72, 153, 0.02) 75%,
        transparent 100%);
    animation: auroraMove 50s ease-in-out infinite reverse;
    filter: blur(100px);
}

@keyframes auroraMove {
    0%, 100% {
        transform: translateX(0%) translateY(0%) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateX(5%) translateY(-2%) rotate(1deg);
        opacity: 0.4;
    }
    66% {
        transform: translateX(-3%) translateY(2%) rotate(-1deg);
        opacity: 0.35;
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticles 15s infinite ease-in-out;
}

.particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    top: 60%;
    left: 80%;
    animation-delay: 7s;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-200px) translateX(100px) scale(1.2);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-400px) translateX(200px) scale(0.5);
        opacity: 0;
    }
}

/* Clouds */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.clouds::before,
.clouds::after {
    content: '';
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}

.clouds::before {
    width: 300px;
    height: 100px;
    top: 5%;
    left: 10%;
    animation: cloudDrift1 60s infinite ease-in-out;
}

.clouds::after {
    width: 400px;
    height: 120px;
    top: 8%;
    right: 15%;
    animation: cloudDrift2 70s infinite ease-in-out;
}

@keyframes cloudDrift1 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(50px) translateY(-10px);
        opacity: 0.5;
    }
}

@keyframes cloudDrift2 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.25;
    }
    50% {
        transform: translateX(-40px) translateY(10px);
        opacity: 0.45;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 25px 20px;
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .container {
        padding: 20px;
        height: auto;
    }

    .header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .logo {
        margin-left: 0;
    }

    .nav {
        margin-right: 0;
    }

    .hero {
        margin-bottom: 40px;
    }

    .how-it-works {
        padding: 0 20px;
        margin: 40px auto 30px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .pricing-section {
        padding: 40px 20px 40px;
        margin: 40px auto;
    }

    .pricing-disclaimer {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .pricing-card {
        padding: 28px 24px;
        min-height: auto;
    }

    .price-amount {
        font-size: 40px;
    }

    .pricing-main-cta {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 20px;
    }

    .feature-card {
        padding: 25px 20px;
        min-height: 160px;
    }

    .email-form {
        width: 100%;
    }

    input[type="email"],
    .submit-btn {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 36px;
    }

    .subheading {
        font-size: 15px;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 14px;
    }
}
