/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 68px; }
body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout helpers ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.btn-primary {
    background: #1d4ed8;
    color: #fff;
}
.btn-primary:hover { background: #1e40af; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(29,78,216,0.35); }
.btn-outline {
    background: transparent;
    border: 2px solid #1d4ed8;
    color: #1d4ed8;
}
.btn-outline:hover { background: #eff6ff; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── Nav ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1d4ed8;
    font-weight: 700;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.2s;
}
.nav-links a:hover { color: #1d4ed8; }
.nav-cta { display: flex; gap: 0.75rem; }

/* ── Hero ── */
#hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #faf5ff 100%);
    padding: 6rem 0 5rem;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero-badge::before { content: '✦'; }
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.25rem;
}
h1 em { font-style: italic; color: #1d4ed8; }
.hero-sub {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #dbeafe;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1d4ed8;
    font-weight: 700;
}
.stat-label { font-size: 0.85rem; color: #6b7280; margin-top: 0.15rem; }
.hero-visual {
    display: flex;
    justify-content: center;
}
.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 380px;
}
.avatar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}
.avatar-info .name { font-weight: 700; font-size: 1rem; }
.avatar-info .role { font-size: 0.8rem; color: #6b7280; }
.quote-text {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

/* ── Section headings ── */
.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1d4ed8;
    margin-bottom: 0.75rem;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    line-height: 1.25;
    color: #111827;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 560px;
}
.section-header { margin-bottom: 3.5rem; }

/* ── What You Get ── */
#benefits { background: #fff; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.benefit-card {
    padding: 1.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.2s;
}
.benefit-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 30px rgba(29,78,216,0.08);
    transform: translateY(-3px);
}
.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.benefit-card p { font-size: 0.9rem; color: #6b7280; }

/* ── Pricing ── */
#pricing { background: #f8faff; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 760px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s;
}
.pricing-card:hover { border-color: #93c5fd; box-shadow: 0 12px 40px rgba(29,78,216,0.1); }
.pricing-card.popular {
    border-color: #1d4ed8;
    box-shadow: 0 12px 40px rgba(29,78,216,0.15);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d4ed8;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.plan-name {
    font-weight: 700;
    font-size: 1rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-desc { font-size: 0.9rem; color: #9ca3af; margin-bottom: 1.75rem; }
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: #374151;
    padding: 0.45rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.plan-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.plan-btn-primary { background: #1d4ed8; color: #fff; }
.plan-btn-primary:hover { background: #1e40af; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(29,78,216,0.35); }
.plan-btn-secondary { background: #f3f4f6; color: #1d4ed8; border: 2px solid #1d4ed8; }
.plan-btn-secondary:hover { background: #eff6ff; }

/* ── Testimonials ── */
#testimonials { background: #fff; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.testimonial-card {
    background: #f8faff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 2rem;
}
.testimonial-card .stars { margin-bottom: 1rem; }
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.reviewer-info .reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-info .reviewer-title { font-size: 0.8rem; color: #9ca3af; }

/* ── CTA Banner ── */
#cta-banner {
    background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}
#cta-banner h2 { color: #fff; }
#cta-banner .section-label { color: #bfdbfe; }
#cta-banner .section-desc { color: #bfdbfe; margin: 0 auto 2.5rem; }
.btn-white {
    background: #fff;
    color: #1d4ed8;
    font-weight: 700;
}
.btn-white:hover { background: #f0f9ff; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* ── Footer ── */
footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 2.5rem 1.5rem;
    font-size: 0.88rem;
}
footer a { color: #6b7280; transition: color 0.2s; }
footer a:hover { color: #d1d5db; }
.footer-logo {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* ── Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    animation: slideUp 0.25s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.15s;
}
.modal-close:hover { background: #e5e7eb; color: #111; }
.modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #111827;
    margin-bottom: 0.5rem;
}
.modal-sub { font-size: 0.9rem; color: #6b7280; margin-bottom: 1.75rem; }
.selected-package {
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.selected-package .pkg-name { font-weight: 600; font-size: 0.95rem; color: #1e40af; }
.selected-package .pkg-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #1d4ed8; font-weight: 700; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #111827;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #111827;
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.form-group textarea:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}

/* ── Contact page ── */
#contact { background: #fff; }
.contact-wrap { max-width: 640px; }
.contact-intro { font-size: 1.05rem; color: #4b5563; margin-bottom: 2.5rem; max-width: 52ch; line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-grid .full { grid-column: 1 / -1; }
.contact-submit { margin-top: 0.5rem; }
.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
    font-weight: 500;
    line-height: 1.5;
}
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.submit-btn {
    width: 100%;
    padding: 0.95rem;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    margin-top: 0.5rem;
}
.submit-btn:hover:not(:disabled) { background: #1e40af; }
.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.submit-btn .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}
.submit-btn.loading .spinner { display: block; }
.submit-btn.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    margin-top: 1rem;
    display: none;
}
.stripe-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 1rem;
}
.stripe-note a { color: #6b7280; text-decoration: underline; }

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.15s;
}
.hamburger:hover { background: #f3f4f6; }
.hamburger span {
    display: block;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.25s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: #fff;
    z-index: 99;
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid #e5e7eb;
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #374151;
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover { background: #eff6ff; color: #1d4ed8; }
.mobile-nav .btn {
    margin-top: 0.75rem;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { display: none; }
    .hero-sub { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
    .stat-num { font-size: 1.5rem; }

    /* Sections */
    section { padding: 3rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    #hero { padding: 3.5rem 0 3rem; }

    /* Benefits */
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .benefit-card { padding: 1.25rem; }
    .benefit-icon { font-size: 1.6rem; margin-bottom: 0.65rem; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; gap: 2rem; }
    .pricing-card { padding: 2rem 1.5rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* CTA Banner */
    #cta-banner { padding: 3.5rem 0; }

    /* Modal — bottom sheet on mobile */
    .modal-overlay { align-items: flex-end; padding: 0; }
    .modal {
        border-radius: 20px 20px 0 0;
        padding: 2rem 1.25rem 2rem;
        max-height: 92dvh;
        overflow-y: auto;
        animation: slideSheet 0.3s ease;
    }
    @keyframes slideSheet {
        from { transform: translateY(100%); opacity: 0; }
        to   { transform: translateY(0);    opacity: 1; }
    }
    .modal::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #d1d5db;
        border-radius: 2px;
        margin: 0 auto 1.5rem;
    }
    .modal-close { top: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 2rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-stats { justify-content: space-between; }
}
