:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #0066FF; /* Notion Blue */
    --urgent-color: #FFEB3B; /* Yellow */
    --border-width: 2px;
    --shadow-offset: 4px;
    --border-style: var(--border-width) solid var(--text-color);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

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

.container.wide {
    max-width: 1000px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: var(--border-style);
}

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

.back-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--text-color);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    border-radius: 4px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 40px;
}

.hero-image-card {
    background: white;
    border: var(--border-style);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--text-color);
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.2s;
}

.hero-image-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--text-color);
}

.hero-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: var(--border-style);
}

/* Urgency Banner */
.urgency-banner {
    background-color: var(--urgent-color);
    border-top: var(--border-style);
    border-bottom: var(--border-style);
    padding: 15px 0;
    margin: 40px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    text-align: center;
}

.banner-content p {
    font-size: 0.95rem;
}

.banner-content strong {
    text-decoration: underline;
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    padding: 30px;
    border: var(--border-style);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--text-color);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: var(--border-style);
}

.step-card h3 {
    margin-bottom: 12px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.price-card {
    padding: 40px;
    border: var(--border-style);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--text-color);
    background: white;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    box-shadow: 8px 8px 0px var(--accent-color);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.sale-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff4444;
    color: white;
    padding: 4px 12px;
    font-weight: 800;
    border: var(--border-style);
}

.price-header {
    margin-bottom: 30px;
}

.package-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: block;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: var(--border-style);
    transition: all 0.2s;
}

.btn-secondary {
    background: white;
    color: var(--text-color);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--text-color);
}

.btn-primary {
    background: var(--text-color);
    color: white;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--accent-color);
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--text-color);
}

.btn-primary:hover {
    box-shadow: 6px 6px 0px var(--accent-color);
}

/* FAQ Accordion */
.accordion {
    border: var(--border-style);
}

.accordion-item {
    border-bottom: var(--border-style);
}

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

.accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: "+";
    font-size: 1.5rem;
}

.accordion-item.active .accordion-header::after {
    content: "-";
}

.accordion-body {
    padding: 0 20px 20px;
    display: none;
    color: #555;
}

.accordion-item.active .accordion-body {
    display: block;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: var(--border-style);
    text-align: center;
    background: #f9f9f9;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .price-card {
        padding: 25px;
    }

    .price-card.featured {
        transform: scale(1);
        margin-top: 10px;
        border-width: 3px;
    }
    
    .pricing-grid {
        gap: 20px;
    }

    .urgency-banner {
        padding: 10px 15px;
    }

    .banner-content p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 14px;
        font-size: 1rem;
    }

    .step-card {
        padding: 20px;
    }
}

/* --- Modal System --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1.25rem;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.order-form .form-group {
    margin-bottom: 1.5rem;
}

.order-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.order-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #000;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: 4px 4px 0 #000;
    outline: none;
}

.order-form input:focus {
    background: #f8f8f8;
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 #000;
}

.order-info {
    background: #f4f4f4;
    border: 2px solid #000;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.form-note {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

.w-full { width: 100%; }

/* Redirect State */
.redirect-state {
    text-align: center;
    padding: 2rem 0;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #000;
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.hidden {
    display: none !important;
}

/* Fix Icon Size in Buttons */
.order-form .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
