:root {
    --purple: #6b21a8;
    --purple-dark: #581c87;
    --pink: #db2777;
    --green: #16a34a;
    --yellow: #f59e0b;
    --text: #1f2937;
    --muted: #6b7280;
    --bg-alt: #faf5ff;
    --border: #e5e7eb;
    --radius: 12px;
}

* { box-sizing: border-box; }

.skip-link {
    position: absolute;
    top: -100px; left: 12px;
    background: var(--purple-dark);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 200;
    transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 2px;
}

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: #fff;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 12px; }
.text-center { text-align: center; }
.text-pink { color: var(--pink); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}
.btn-primary { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; }
.btn-primary:hover { opacity: .92; }
.btn-outline { background: #fff; color: var(--purple); border: 2px solid var(--purple); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-cta { background: #fff; color: var(--purple); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* Announce bar */
.announce-bar {
    background: var(--purple-dark);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    text-align: center;
}

/* Header */
.site-header { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-badge {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
}
.logo-text { font-weight: 700; color: var(--purple-dark); font-size: 18px; }
.main-nav { display: flex; gap: 24px; }
.main-nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 15px; }
.main-nav a:hover { color: var(--purple); }
.header-actions { display: flex; gap: 10px; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--bg-alt), #fff); padding: 48px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; padding-bottom: 40px; }
.hero-copy h1 { font-size: 40px; line-height: 1.2; color: var(--purple-dark); }
.hero-sub { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.hero-price { font-size: 17px; color: var(--pink); margin-bottom: 16px; }
.hero-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.hero-trust { margin-top: 14px; font-size: 13px; color: var(--muted); }
.hero-media { display: block; }
.hero-video-frame { position: relative; width: 100%; }

.hero-video-wrap {
    position: relative;
    width: 100%;
    height: clamp(380px, 52vw, 620px);
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
    box-shadow: 0 24px 48px -12px rgba(107, 33, 168, .35);
    border: 5px solid #fff;
}
.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}
.hero-video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--purple);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    transition: opacity .2s ease, transform .2s ease;
}
.hero-video-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.hero-video-play.hidden { opacity: 0; pointer-events: none; }
.hero-media-note {
    position: absolute; top: -10px; right: -10px;
    background: #fff; padding: 6px 12px; border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1); font-size: 13px; font-weight: 600;
}

.trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip-inner {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    padding: 16px 20px; font-size: 13px; color: var(--muted); font-weight: 600;
}

/* Sections */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-title-sm { margin-top: 56px; }

/* How it works + order form */
.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.step { display: flex; flex-direction: column; align-items: flex-start; }
.step-icon {
    width: 44px; height: 44px; border-radius: 50%; color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.step-icon-purple { background: var(--purple); }
.step-icon-pink { background: var(--pink); }
.step-icon-green { background: var(--green); }
.note-pink { color: var(--pink); font-weight: 600; background: #fdf2f8; padding: 10px 16px; border-radius: 8px; display: inline-block; }

.order-form-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; box-shadow: 0 4px 24px rgba(107,33,168,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-field input, .form-field textarea, .form-field select {
    width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 14px; font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 2px solid var(--purple); border-color: var(--purple); }

.upload-box {
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 2px dashed #d8b4fe; border-radius: 10px; padding: 28px 16px; text-align: center;
    cursor: pointer; background: #fdfaff; font-size: 13px; color: var(--muted);
}
.upload-icon { font-size: 26px; margin-bottom: 6px; }
/* Visually hidden, not display:none — keeps it keyboard-focusable and
   announced by screen readers; the wrapping <label> still handles clicks. */
.upload-box input[type="file"] {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.upload-box:focus-within { outline: 3px solid var(--purple); outline-offset: 2px; }
.upload-hint { font-size: 12px; color: var(--muted); margin-top: 6px; }

.product-radios { display: flex; flex-direction: column; gap: 8px; }
.product-radio {
    display: flex; align-items: center; gap: 10px; border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 12px; font-size: 14px; cursor: pointer;
}
.product-radio input { width: auto; }
.mp { color: var(--pink); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }
.price-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; position: relative; display: flex; flex-direction: column;
}
.price-card-popular { border: 2px solid var(--purple); box-shadow: 0 8px 24px rgba(107,33,168,.15); }
.price-badge {
    position: absolute; top: -12px; left: 20px; background: var(--yellow); color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.price-line { display: flex; align-items: baseline; gap: 8px; margin: 10px 0; flex-wrap: wrap; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: 14px; }
.price-new { font-size: 24px; font-weight: 700; color: var(--purple-dark); }
.price-save { background: #fef3c7; color: #92400e; font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 700; }
.feature-list { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text); }
.bulk-card { background: var(--purple-dark); color: #fff; }
.bulk-card .feature-list { color: #ede9fe; }

.magic-steps { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.magic-step { text-align: center; max-width: 200px; }
.magic-label {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 600; font-size: 14px; margin-bottom: 10px; color: var(--purple-dark);
}
.magic-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: var(--purple); color: #fff; font-size: 12px;
}
.magic-box {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 10px; box-shadow: 0 4px 14px rgba(107, 33, 168, .1);
    transition: transform .15s ease, box-shadow .15s ease;
}
.magic-box:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(107, 33, 168, .16); }
.magic-box img { display: block; width: 100%; height: auto; border-radius: 6px; }
.magic-arrow { font-size: 20px; color: var(--muted); }
@media (max-width: 640px) {
    .magic-arrow { transform: rotate(90deg); }
}

/* Testimonials */
.rating-line { color: var(--muted); margin-top: -8px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.testimonial-card { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; }
.stars { margin-bottom: 8px; font-size: 13px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 24px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 16px 18px;
    font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between;
}
.faq-answer { max-height: 0; overflow: hidden; padding: 0 18px; font-size: 14px; color: var(--muted); transition: max-height .2s ease, padding .2s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 18px 16px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-question span { transition: transform .2s ease; }

/* Contact / inquiry */
.inquiry-form { max-width: 700px; margin: 24px auto 0; }

/* CTA banner */
.cta-banner { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; padding: 32px 0; }
.cta-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-banner-inner p { margin: 4px 0 0; opacity: .9; font-size: 14px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #1f1033; color: #d1c4e9; padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-grid h4 { color: #fff; margin-bottom: 10px; font-size: 15px; }
.footer-grid a, .footer-grid p { display: block; color: #c4b5fd; text-decoration: none; font-size: 13px; margin-bottom: 6px; }
.footer-copy { text-align: center; font-size: 12px; color: #8b7bab; margin: 32px 0 0; }

.whatsapp-float {
    position: fixed; bottom: 20px; right: 20px; background: #25d366; color: #fff;
    width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.25); z-index: 60;
}

/* Toasts */
.toast {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
    padding: 12px 22px; border-radius: 8px; font-size: 14px; z-index: 100; box-shadow: 0 4px 14px rgba(0,0,0,.15);
    transition: opacity .3s ease;
}
.toast-error { background: #fee2e2; color: #991b1b; }
.toast-success { background: #dcfce7; color: #166534; }
.toast-hide { opacity: 0; }

/* Checkout / success / failed pages */
.checkout-body { background: var(--bg-alt); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 30px 16px; }
.checkout-card { background: #fff; border-radius: 16px; padding: 32px; max-width: 460px; width: 100%; box-shadow: 0 10px 40px rgba(107,33,168,.15); }
.checkout-logo { margin-bottom: 20px; }
.order-summary { background: var(--bg-alt); border-radius: 10px; padding: 14px 16px; margin: 16px 0; font-size: 14px; }
.order-summary div { display: flex; justify-content: space-between; padding: 4px 0; }
.success-icon { font-size: 48px; text-align: center; margin-bottom: 8px; }
.back-link { display: block; text-align: center; margin-top: 16px; font-size: 13px; color: var(--muted); text-decoration: none; }

/* Static pages (Privacy Policy, Terms, etc.) */
.static-page-section { padding-top: 32px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--purple); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { margin: 0 6px; }
.breadcrumb span[aria-current] { color: var(--text); font-weight: 600; }

.static-page-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.static-page-toc-inner {
    position: sticky; top: 20px; background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px;
}
.static-page-toc-inner h2 { margin: 0 0 10px 0; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.static-page-toc-inner ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.static-page-toc-inner a { font-size: 13px; color: var(--purple); text-decoration: none; line-height: 1.4; }
.static-page-toc-inner a:hover { text-decoration: underline; }

.static-page { max-width: 780px; }
.static-page h1 { margin-bottom: 8px; }
.static-page-updated { color: var(--muted); font-size: 13px; margin: 0 0 28px 0; }
.static-page-content { color: var(--text); line-height: 1.7; }
.static-page-content h2 { margin: 36px 0 12px 0; scroll-margin-top: 20px; color: var(--purple-dark); }
.static-page-content h2:first-child { margin-top: 0; }
.static-page-content h3 { margin-top: 24px; scroll-margin-top: 20px; }
.static-page-content p { margin: 0 0 16px 0; }
.static-page-content ul, .static-page-content ol { margin: 0 0 16px 0; padding-left: 22px; }
.static-page-content li { margin-bottom: 6px; }
.static-page-content a { color: var(--purple); }

.policy-cta {
    margin-top: 40px; padding: 20px; background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.policy-cta p { margin: 0; font-weight: 600; }

@media (max-width: 900px) {
    .static-page-layout { grid-template-columns: 1fr; }
    .static-page-toc-inner { position: static; }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid, .two-col { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 30px; }
    .main-nav { display: none; }
}
