/* VeriFi App Testing — design system */
:root {
    --bg: #f0f4f8;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-soft: #94a3b8;
    --accent: #0d9488;
    --accent-dark: #0f766e;
    --accent-light: #ccfbf1;
    --accent-glow: rgba(13, 148, 136, 0.25);
    --secondary: #6366f1;
    --success: #059669;
    --success-bg: #ecfdf5;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --frame-max: 440px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html { scroll-behavior: smooth; }

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: var(--safe-bottom);
}

body.lang-menu-open { overflow: hidden; }

/* Frame */
.app-shell {
    max-width: var(--frame-max);
    margin: 0 auto;
    min-height: 100vh;
    background: var(--bg);
    position: relative;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 480px) {
    body { padding: 24px 0; }
    .app-shell {
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid var(--border);
    }
}

/* Alert strip */
.alert-banner {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alert-banner svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.9;
}

.main-content {
    padding: 0 18px 24px;
}

/* Header */
.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 12px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    color: inherit;
}

/* VeriFi wordmark + emblem (SVG) */
.verifi-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1;
}

.verifi-logo--header {
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.verifi-logo--header .verifi-emblem {
    width: 44px;
}

.verifi-logo--header .verifi-wordmark {
    font-size: 26px;
}

.verifi-logo--footer {
    gap: 4px;
}

.verifi-emblem {
    display: block;
    width: 44px;
    height: auto;
}

.verifi-logo--footer .verifi-emblem {
    width: 46px;
}

.verifi-wordmark {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.verifi-logo--footer .verifi-wordmark {
    font-size: 20px;
}

.verifi-veri {
    color: var(--text);
}

.verifi-fi {
    background: linear-gradient(105deg, #0f766e 0%, #0d9488 45%, #14b8a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-burger-wrap { position: relative; z-index: 1001; }

.lang-burger-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-burger-btn:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.lang-burger-btn .burger-line {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    position: relative;
}

.lang-burger-btn .burger-line::before,
.lang-burger-btn .burger-line::after {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

.lang-burger-btn .burger-line::before { top: -5px; }
.lang-burger-btn .burger-line::after { top: 5px; }

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    flex-direction: column;
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 1002;
}

.lang-burger-wrap.is-open .lang-dropdown { display: flex; }

.lang-dropdown-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.15s;
}

.lang-dropdown-link:hover { background: var(--accent-light); color: var(--accent-dark); }
.lang-dropdown-link.active { background: var(--accent-light); color: var(--accent-dark); }

.lang-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.4);
    pointer-events: none;
}

body.lang-menu-open .lang-overlay { display: block; }

.start-btn {
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 14px var(--accent-glow);
    white-space: nowrap;
}

.start-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Hero */
.hero-section { margin-bottom: 20px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text);
}

.hero-title .highlight {
    color: var(--accent);
    display: block;
}

.hero-title .hero-line-muted {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
    font-weight: 500;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: var(--radius-pill);
}

.hero-chip svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px var(--accent-glow);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }

.social-buttons { margin-bottom: 8px; }

/* Pay highlight card */
.pay-card {
    background: linear-gradient(145deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    color: #fff;
    margin: 24px 0;
    box-shadow: 0 12px 40px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.pay-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.pay-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.pay-card-icon svg { width: 28px; height: 28px; }

.amount {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.guarantee {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.bank-icon { display: none; }

/* Media */
.hero-image-section { margin: 20px 0; }

.girl-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.girl-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Section titles */
.section-title,
.earnings-title,
.reviews-title,
.certificates-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.section-title .highlight,
.earnings-title .highlight,
.cta-highlight {
    color: var(--accent);
}

/* Steps */
.steps-section { margin: 32px 0; }

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.step-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    display: none;
}

.step-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
    padding-top: 4px;
}

/* About us — compact, visible mid-funnel */
.about-section {
    margin: 28px 0 32px;
    scroll-margin-top: 16px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 18px 18px 14px;
    box-shadow: var(--shadow-md);
}

.about-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.about-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
}

.about-teaser {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    font-weight: 500;
    margin: 0 0 12px;
}

.about-details {
    border-top: 1px dashed var(--border);
    padding-top: 10px;
}

.about-summary {
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-dark);
    padding: 6px 0;
    user-select: none;
}

.about-summary::-webkit-details-marker { display: none; }

.about-summary::after {
    content: ' ▾';
    font-size: 12px;
    opacity: 0.8;
}

.about-details[open] .about-summary::after {
    content: ' ▴';
}

.about-more {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 8px 0 4px;
    font-weight: 500;
}

.hero-chip-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero-chip-link:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-light);
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

/* Earnings / pay banner */
.earnings-section { margin: 32px 0; }

.earnings-title { text-align: left; }

.earnings-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.banner {
    min-height: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: block;
    padding: 0;
}

.geometric-bg,
.triangle1, .triangle2, .triangle3 { display: none; }

.banner .content {
    padding: 20px;
    color: var(--text);
    position: relative;
}

.banner .main-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.banner .price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.banner .price {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.banner .verification-text {
    font-size: 14px;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
}

.banner .content img {
    display: none;
}

.pay-visual {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px 20px;
    border-top: 1px dashed var(--border);
}

.pay-visual-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.pay-visual-meta {
    flex: 1;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* Quiz */
.question-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    margin: 32px 0;
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light), var(--shadow-md);
    position: relative;
}

.question-section::before { display: none; }

.quiz-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.quiz-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, transform 0.3s;
}

.quiz-progress-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.quiz-progress-dot.done { background: var(--success); }

.question-content { position: relative; z-index: 1; }

.question-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.question-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
    text-align: center;
    font-weight: 500;
}

.question-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    color: var(--text);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.answer-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-yes {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-no {
    background: var(--bg);
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
}

.answer-btn:hover { transform: translateY(-2px); }
.answer-btn:active { transform: translateY(0); }

.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #229ed9, #0088cc);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 136, 204, 0.4);
}

.telegram-btn .icon { width: 24px; height: 24px; }

@media (max-width: 768px) {
    .button-group { align-items: stretch; }
    .telegram-btn { width: 100%; max-width: none; }
}

/* Reviews */
.reviews-section { margin: 36px 0; overflow: hidden; }

.reviews-title { text-align: center; }

.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 16px;
    touch-action: pan-y;
}

.reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 auto;
    box-sizing: border-box;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: border-color 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.review-card::before { display: none; }

.review-card.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.review-card:not(.active) {
    opacity: 0.92;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.review-date { color: var(--text-soft); font-size: 12px; }

.review-star { color: #f59e0b; font-size: 13px; }

.review-earned {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid #a7f3d0;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
}

.review-body { padding: 14px 16px; }

.review-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.review-image {
    border: none !important;
    outline: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.review-image img {
    width: 100%;
    display: block;
    border: none !important;
    outline: none;
    box-shadow: none;
    border-radius: 0;
}

.review-footer {
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-verified {
    color: var(--success);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-likes {
    color: var(--text-soft);
    font-size: 13px;
    cursor: pointer;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.carousel-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-arrow:hover:not(.disabled) {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent-dark);
}

.carousel-arrow.disabled { opacity: 0.35; cursor: not-allowed; }

.carousel-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.carousel-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: width 0.25s, background 0.25s, border-radius 0.25s;
}

.carousel-dot.active {
    width: 22px;
    height: 8px;
    border-radius: 4px;
    background: var(--accent);
}

.swipe-hint {
    text-align: center;
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Trust block */
.certificates-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    margin: 32px 0;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.certificates-section::before { display: none; }

.certificates-icon { margin-bottom: 12px; }
.certificates-icon svg { fill: var(--accent); }

.certificates-title {
    font-size: 20px;
    background: none;
    -webkit-text-fill-color: var(--text);
    color: var(--text);
}

.certificates-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.certificate-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: #f8fafc;
    line-height: 0;
}

.certificate-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.certificate-image::before { display: none; }

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 14px;
    background: var(--success-bg);
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-pill);
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
}

/* CTA */
.cta-section {
    background: linear-gradient(160deg, #0f766e 0%, #0d9488 100%);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    margin: 32px 0;
    color: #fff;
    box-shadow: 0 16px 40px var(--accent-glow);
    border: none;
}

.cta-section::before { display: none; }

.cta-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    color: #fff;
}

.cta-highlight { color: #99f6e4; }

.cta-icon { margin-bottom: 12px; text-align: center; }
.cta-icon svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }

.start-button,
.cta-section .social-btn {
    background: #fff !important;
    color: var(--accent-dark) !important;
    width: 100%;
    padding: 16px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.security-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin: 24px 0;
    text-align: center;
}

.security-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.security-title svg { color: var(--accent); width: 20px; height: 20px; }

.security-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

.footer {
    text-align: center;
    padding: 24px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
}

.footer-logo {
    font-weight: 800;
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-soft);
}

/* Icons utility */
.icon { width: 24px; height: 24px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 40px; height: 40px; }
.icon-xxl { width: 56px; height: 56px; }

.mobile-frame { /* legacy alias */ }
.app-shell.mobile-frame { }

/* Hide legacy */
.particles { display: none !important; }

.neon-border::before { display: none; }

@media (hover: none) {
    .step-item:hover,
    .answer-btn:hover,
    .stat-item:hover { transform: none; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 30px; }
    .amount { font-size: 44px; }
    .banner .price { font-size: 34px; }
}
