/* ========================================
   AI PROMPTS BUNDLE - Light Theme
   ======================================== */

/* CSS Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --accent-solid: #667eea;
    --accent-hover: #5a6fd6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

/* Laurel Award Badge */
.hero-award-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.hero-award-badge .laurel {
    width: 55px;
    height: 45px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(69%) sepia(71%) saturate(600%) hue-rotate(358deg) brightness(101%) contrast(96%);
}

.hero-award-badge .laurel-left {
    object-position: left center;
}

.hero-award-badge .laurel-right {
    object-position: right center;
}

.hero-award-badge .badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.hero-award-badge .badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.hero-award-badge .badge-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.hero-award-badge .badge-star {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(79%) sepia(51%) saturate(1000%) hue-rotate(358deg) brightness(101%) contrast(96%);
}

.hero-video-wrapper {
    max-width: 700px;
    margin: 32px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5);
}

.hero-trust {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    display: block;
    max-width: 100%;
    margin: 40px auto 0;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* ========== SECTIONS COMMON ========== */
section {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--bg-primary);
    padding: 50px 0 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 24px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 28px 18px 22px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-solid);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.samples-showcase-image {
    display: block;
    max-width: 100%;
    margin: 40px auto 0;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.works-with-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.works-with-text strong {
    color: var(--accent-solid);
    font-weight: 700;
}

/* ========== WHAT'S INCLUDED ========== */
.whats-included {
    background: var(--bg-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.category-card:hover {
    border-color: var(--accent-solid);
    box-shadow: var(--shadow-sm);
}

.category-icon {
    font-size: 1.5rem;
}

.category-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.categories-more {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========== DASHBOARD PREVIEW ========== */
.dashboard-preview {
    background: var(--bg-primary);
    padding: 70px 0 60px;
}

.dashboard-video-wrapper {
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.dashboard-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.dashboard-cta {
    display: inline-block;
    margin-top: 24px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    text-align: center;
}

.dashboard-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5);
}

.dashboard-preview .container {
    text-align: center;
}

/* ========== FOLDERS SHOWCASE ========== */
.folders-showcase {
    background: var(--bg-secondary);
    padding: 70px 0 60px;
}

.screen-mockup {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.screen-topbar {
    background: #1e1e1e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.screen-topbar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.screen-topbar .dot.red {
    background: #ff5f57;
}

.screen-topbar .dot.yellow {
    background: #ffbd2e;
}

.screen-topbar .dot.green {
    background: #28ca41;
}

.topbar-title {
    margin-left: 10px;
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 500;
}

.folders-scroll-area {
    background: #1a1a2e;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 420px;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.folders-scroll-area::-webkit-scrollbar {
    width: 5px;
}

.folders-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.folders-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.folders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.folder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
    cursor: default;
}

.folder-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
}

.folder-icon {
    margin-bottom: 6px;
}

.folder-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.folder-item span {
    font-size: 0.68rem;
    color: #bbb;
    font-weight: 500;
    line-height: 1.25;
    word-wrap: break-word;
}

.scroll-hint {
    background: #1e1e1e;
    color: #666;
    text-align: center;
    font-size: 0.75rem;
    padding: 8px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ========== PROMPT EXAMPLES ========== */
.prompt-examples {
    background: var(--bg-primary);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.example-card {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.example-category {
    display: inline-block;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-prompt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* ========== FEATURES ========== */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    align-items: start;
    gap: 28px;
}

.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
    width: 100%;
}

.pricing-card.featured {
    border: 2px solid var(--accent-solid);
    box-shadow: var(--shadow-lg);
}

.pricing-badge.starter {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.price-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Feature "?" explainers */
.feature-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.info-btn {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.info-btn:hover,
.info-btn:focus-visible,
li.open .info-btn {
    background: var(--accent-solid);
    border-color: var(--accent-solid);
    color: #fff;
}

.info-tip {
    display: none;
    margin-top: 8px;
    padding: 10px 14px;
    font-size: 0.83rem;
    line-height: 1.55;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent-solid);
    border-radius: 8px;
    text-align: left;
}

li.open .info-tip {
    display: block;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: minmax(0, 420px);
    }
}

.pricing-cta {
    width: 100%;
    padding: 18px 32px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5);
}

.pricing-trust {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== SOCIAL PROOF / TESTIMONIALS ========== */
.testimonials {
    background: var(--bg-primary);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FAQ ========== */
.faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
    background: var(--accent-gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: var(--accent-solid);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-secondary);
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .hero-video-wrapper {
        max-width: 100%;
        margin: 24px auto;
        border-radius: 12px;
    }

    .hero-award-badge {
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-award-badge .laurel {
        width: 36px;
        height: 32px;
    }

    .hero-award-badge .badge-text {
        font-size: 0.8rem;
    }

    .hero-award-badge .badge-star {
        width: 11px;
        height: 11px;
    }

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

    .samples-showcase-image {
        margin: 28px auto 0;
        border-radius: 12px;
    }

    section {
        padding: 48px 0;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .category-card {
        padding: 14px 16px;
    }

    .category-name {
        font-size: 0.85rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        margin: 0;
        padding: 32px 24px;
    }

    .price-value {
        font-size: 3rem;
    }

    .final-cta {
        padding: 60px 0;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .folders-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .folder-icon img {
        width: 36px;
        height: 36px;
    }

    .folder-item {
        padding: 10px 4px 8px;
    }

    .folder-item span {
        font-size: 0.6rem;
    }

    .folders-scroll-area {
        max-height: 350px;
        padding: 14px;
    }

    .screen-mockup {
        max-width: 100%;
        border-radius: 10px;
    }

    .folders-showcase .container {
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== PAYMENT MODAL (Email / Phone Collection) ========== */
.payment-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

.payment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-modal {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 32px 32px;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 80px rgba(26, 26, 46, 0.25);
}

.payment-modal-overlay.active .payment-modal {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover,
.modal-close-btn:focus-visible {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.modal-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(102, 126, 234, 0.12);
    color: var(--accent-solid);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.modal-plan-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-solid);
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 6px;
}

.modal-title-dot {
    color: var(--accent-solid);
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

.modal-form-group {
    margin-bottom: 16px;
}

.modal-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.modal-input {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.modal-input::placeholder {
    color: var(--text-muted);
}

.modal-input:focus {
    border-color: var(--accent-solid);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.modal-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.modal-error-text {
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 5px;
    display: none;
}

.modal-error-text.visible {
    display: block;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px 24px;
    margin-top: 8px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--accent-solid);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.modal-submit-btn:hover,
.modal-submit-btn:focus-visible {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.35);
}

.modal-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-submit-arrow {
    width: 18px;
    height: 18px;
}

.modal-secure-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 480px) {
    .payment-modal {
        padding: 28px 20px 24px;
        border-radius: 16px;
    }

    .modal-title {
        font-size: 1.35rem;
    }
}

/* ========== FLOATING WHATSAPP BUTTON (bottom right) ========== */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 6px 24px rgba(26, 26, 46, 0.3);
    transition: all 0.25s ease;
}

.wa-float:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}
