body {
    background: linear-gradient(180deg, #f5f7fa, #b6d7fe);
    font-family: 'Inter', sans-serif;
}

.page-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;

    background: linear-gradient(180deg, #f5f7fa, #f5f7fa);
    border-radius: 16px;

    /* VERY subtle shadow */
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero p {
    color: #666;
    font-size: 1.1rem;
}

/* Pricing */
.badge {
    font-size: 0.7rem;
    background: #f8ffd6;
    color: #e5467b;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid rgb(181, 181, 181);
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.price-anchor {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 10px 0;
}

.price-sub {
    font-size: 0.9rem;
    color:#e11d48;
    font-weight: 600;
    margin-top: 6px;
}

.cta-btn {
    background: #6366f1;
    color: white;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1.1rem;
    margin-top: 15px;
}

.cta-btn:hover {
    background: #4f46e5;
}

.features {
    margin-top: 30px;
    text-align: left;
    list-style: none;
}

.features li {
    margin-bottom: 10px;
}

.features li::before {
    content: "✔";
    margin-right: 8px;
    color: #16a34a;
}

.note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.footer {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #999;
}

/* Email */
.email-card {
    background: #ffffff;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    /* box-shadow: 0 6px 18px rgba(0,0,0,0.05); */
    border: 1px solid black;
    max-width: 480px; /* slightly bigger than 440 for padding */
    margin: 0 auto;    
}

.mailchimp-form input {
    border-radius: 6px !important;
}

.mailchimp-form button {
    background: #111;
    color: white;
    border-radius: 6px;
}

/* Video */
.demo-wrapper {
    margin-top: 40px;
    text-align: center;
}

.demo-video-container {
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;

    /* subtle elevation */
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.05);

    /* soft background frame */
    background: linear-gradient(180deg, #ffffff, #ffffff);
    padding: 8px;
    border: 1px solid rgb(183, 183, 183);
}

.demo-video-container video {                
    display: block;
    border-radius: 10px;
    width: calc(100% + 20px);
    margin-left: -10px;
}

.demo-caption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #666;
}

.demo-video-container:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
    box-shadow: 
        0 14px 40px rgba(0,0,0,0.12),
        0 4px 12px rgba(0,0,0,0.06);
}

/* Progress */
.container-progress {
    margin: 10px 0 18px;
}

.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 6px;
}