/* ============================================================
   VUPerfect BETA page — style.css
   ============================================================ */

/* --- Base -------------------------------------------------- */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
}

/* --- Navbar override (transparent → solid on scroll) ------- */
.navbar {
    background-color: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(4px);
}
.navbar-brand { font-weight: 700; letter-spacing: 0.5px; }

/* --- Animated gradient keyframes --------------------------- */
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Hero -------------------------------------------------- */
.beta-hero {
    /*background: linear-gradient(135deg, #001d5e 0%, #003087 40%, #0056b3 70%, #001d5e 100%);*/
    background: linear-gradient(135deg, #001d5e 0%, #003087 35%, #0056b3 65%, #001d5e 100%);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    color: #fff;
    padding: 60px 20px 40px;
    text-align: center;
}
.beta-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.beta-hero .subheadline {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 14px;
    line-height: 1.6;
}
.beta-hero .urgency {
    display: inline-block;
    background: rgba(240, 173, 0, 0.18);
    border: 1px solid rgba(240, 173, 0, 0.55);
    color: #ffd54f;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 32px;
}

.beta-hero-img {
  max-width: 150px;
  max-height: 150px;
  padding-left: 20px;
  margin-right: 15px;
  border-radius: 0%; /* rectangular images */
}

.beta-benefits-img {
  max-width: 600px;
  max-height: 500px;
  padding-left: 20px;
  margin-right: 15px;
  border-radius: 0%; /* rectangular images */
}

/* --- Social proof line ------------------------------------- */
.social-proof {
    font-size: 0.98rem;
    color: #ffd54f;
    font-style: italic;
    letter-spacing: 0.2px;
    margin: 0 auto 24px;
    opacity: 0.92;
}

/* --- App mockup -------------------------------------------- */
.app-mockup {
    max-width: 580px;
    margin: 0 auto 52px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.35);
}
.mockup-chrome {
    background: #2a2a2a;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.mockup-dot.red   { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-url {
    flex: 1;
    background: #3a3a3a;
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: #aaa;
    margin-left: 6px;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mockup-body {
    background: #f4f7fb;
    padding: 16px 20px;
}
.mockup-header {
    font-size: 0.78rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.mockup-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e0e4ef;
    border-radius: 7px;
    padding: 9px 13px;
    margin-bottom: 7px;
    font-size: 0.82rem;
}
.mockup-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mockup-step-dot.done    { background: #28a745; }
.mockup-step-dot.active  { background: #f0ad00; }
.mockup-step-dot.pending { background: #c8d0e0; }
.mockup-step-label {
    flex: 1;
    color: #333;
    font-weight: 500;
}
.mockup-step-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}
.mockup-step-tag.done    { background: #e6f9ed; color: #1a7a36; }
.mockup-step-tag.active  { background: #fff3cd; color: #856404; }
.mockup-step-tag.pending { background: #f0f2f7; color: #888; }

/* --- CTA Cards --------------------------------------------- */
.cta-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
    flex-wrap: wrap;
    max-width: 940px;
    margin: 0 auto;
}

.cta-card {
    border-radius: 14px;
    padding: 44px 40px 50px;
    text-align: left;
    width: 400px;
    flex-shrink: 0;
    position: relative;
}

/* BETA card — blue */
.card-beta {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

/* Super BETA card — gold, featured */
.card-super-beta {
    background: #fff;
    color: #1a1a2e;
    box-shadow: 0 8px 40px rgba(240, 173, 0, 0.45), 0 2px 12px rgba(0,0,0,0.18);
    border: 2px solid #f0ad00;
    transform: translateY(-12px);
    width: 430px;
}

.card-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.card-beta .card-badge {
    background: rgba(255,255,255,0.18);
    color: #e8f0ff;
}
.card-super-beta .card-badge {
    background: #f0ad00;
    color: #fff;
}

.cta-card h2 {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.card-beta h2 { color: #fff; }
.card-super-beta h2 { color: #003087; }

.cta-card .card-price {
    font-size: 1rem;
    margin-bottom: 22px;
    opacity: 0.85;
}
.card-super-beta .card-price { color: #444; }

.cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.cta-card ul li {
    padding: 5px 0;
    font-size: 0.97rem;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.4;
}
.cta-card ul li::before {
    content: '✓';
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.card-beta ul li::before { color: #7dd3fc; }
.card-super-beta ul li::before { color: #f0ad00; }

.btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.btn-cta:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

.card-beta .btn-cta {
    background: #fff;
    color: #003087;
}
.card-super-beta .btn-cta {
    background: #003087;
    color: #fff;
}

/* --- Section shared ---------------------------------------- */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: #003087;
}
.section-subtitle {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 48px;
}

/* --- Benefits ---------------------------------------------- */
.benefits-section {
    background: #fff;
    background-image: radial-gradient(circle, #c8d4ee 1px, transparent 1px);
    background-size: 28px 28px;
    padding: 80px 20px;
    text-align: center;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 960px;
    margin: 0 auto;
}
.benefit-card {
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #e8edf5;
    background: #f8f9ff;
    text-align: center;
}
.benefit-card .benefit-icon {
    font-size: 2.4rem;
    color: #003087;
    margin-bottom: 18px;
}
.benefit-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 10px;
}
.benefit-card p {
    color: #555;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}

/* --- How It Works ------------------------------------------ */
.how-it-works-section {
    background: #f4f7fb;
    padding: 80px 20px;
    text-align: center;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.step-card {
    padding: 28px 20px;
    text-align: center;
}
.step-number {
    width: 52px;
    height: 52px;
    background: #003087;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.step-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 8px;
}
.step-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- FAQ --------------------------------------------------- */
.faq-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.faq-list .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #003087;
    background: #f8f9ff;
}
.faq-list .accordion-button:not(.collapsed) {
    background: #e8edf5;
    color: #003087;
    box-shadow: none;
}
.faq-list .accordion-button::after {
    filter: invert(0.3) sepia(1) hue-rotate(190deg);
}
.faq-list .accordion-body {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.7;
}
.faq-list .accordion-item {
    border: 1px solid #e0e4ef;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

/* --- Footer ------------------------------------------------ */
footer .footer-logo  { max-height: 40px; margin-right: 12px; }
footer .footer-icon  { font-size: 1.3rem; }
footer .footer-text  { font-size: 0.9rem; }
footer .footer-copyright { font-size: 0.85rem; }

/* --- Responsive -------------------------------------------- */
@media (max-width: 768px) {
    .cta-cards { flex-direction: column; align-items: center; }
    .cta-card { width: 100%; max-width: 380px; padding: 32px 28px 36px; }
    .card-super-beta { transform: none; width: 100%; }
    .benefits-grid, .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .beta-hero { padding: 100px 16px 60px; }
    .app-mockup { max-width: 100%; }
}
