
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    max-width: 480px;
    margin: 0 auto;
    background-color: #f5f5f7;
    color: #1e293b;
    line-height: 1.5;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header styles */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 12px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #e0f2fe;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 12px;
    color: #0369a1;
    font-weight: 500;
}

.lock-icon {
    width: 12px;
    height: 12px;
}

/* Rating badge */
.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f7;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.rating-badge-label {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

.rating-stars {
    color: #a16207;
    letter-spacing: 1px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.rating-number {
    color: #1e293b;
    font-weight: 700;
    font-size: 16px;
    margin-left: 4px;
}

/* Main container */
.main-container {
    margin-top: 65px;
    padding: 0 15px 15px;
}

/* Scenarios section */
.scenarios-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.scenarios-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.scenarios-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.scenario-item {
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scenario-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.scenario-text {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

.scenarios-solution {
    font-size: 15px;
    color: #1e293b;
    margin: 0;
    padding: 16px;
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.scenarios-solution strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Hero section */
.hero-section {
    text-align: center;
    padding: 12px 0 10px;
    position: relative;
}

.hero-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 400;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.trust-item {
    font-size: 13px;
    color: #047857;
    font-weight: 500;
}

/* Upload section */
.upload-section {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.continue-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.continue-button:active {
    transform: translateY(0);
}

.button-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.continue-button:hover .button-icon {
    transform: translateX(3px);
}

.upload-button {
    width: 100%;
    min-height: 140px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upload-button:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
}

.upload-button:active {
    transform: scale(0.98);
}

.upload-button.has-image {
    border-style: solid;
    border-color: #3b82f6;
    background: #ffffff;
}

.upload-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    overflow: hidden;
}

.upload-preview.active {
    display: flex;
}

.preview-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upload-button:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.camera-icon {
    width: 56px;
    height: 56px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    position: relative;
}

.camera-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid #f8fafc;
}

.upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.upload-hint {
    font-size: 13px;
    color: #64748b;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.file-input {
    display: none;
}

/* Privacy notice */
.privacy-notice {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.privacy-icon {
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 12px;
}

.privacy-content {
    flex: 1;
}

.privacy-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.privacy-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e293b;
}

.feature-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* Reviews section */
.reviews-section {
    margin-bottom: 30px;
}

.reviews-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
    text-align: center;
}

.reviews-subtitle {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    margin-bottom: 20px;
}

.review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

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

.review-avatar {
    width: 36px;
    height: 36px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #4c1d95;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.review-rating {
    color: #a16207;
    font-size: 13px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

/* How it works */
.how-it-works {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #1e293b;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    color: white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e293b;
}

.step-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

/* Trust section */
.trust-section {
    background: #f0f9ff;
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #e0f2fe;
}

.trust-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.trust-badge {
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e0f2fe;
}

.trust-badge-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.trust-badge-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.trust-badge-desc {
    font-size: 12px;
    color: #64748b;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-button {
    background: white;
    color: #2563eb;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.faq-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 25px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 16px 20px;
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Phone page FAQ */
.phone-faq-section {
    margin-top: 20px;
}

.phone-faq-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.phone-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.1);
}

.phone-faq-question {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    text-align: left;
    transition: all 0.3s ease;
}

.phone-faq-question:hover {
    background: #f8fafc;
}

.phone-faq-icon {
    font-size: 18px;
    font-weight: 300;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.phone-faq-item.active .phone-faq-icon {
    transform: rotate(45deg);
}

.phone-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.phone-faq-item.active .phone-faq-answer {
    max-height: 150px;
}

.phone-faq-answer p {
    padding: 14px 16px;
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 15px;
    color: #64748b;
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

/* Loading state */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 40px;
}

.loading-spinner {
    width: 64px;
    height: 64px;
    border: 3px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
    margin-top: 10px;
}

.loading-status {
    font-size: 15px;
    color: #64748b;
    margin-top: -10px;
}

.loading-progress {
    width: 240px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}

.loading-progress-bar {
    height: 100%;
    background: #3b82f6;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Phone page styles - IMPROVED */
#phonePage {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f5f7;
    z-index: 200;
    overflow-y: auto;
}

.phone-page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
}

/* Phone page specific header */
.phone-page-header {
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 20px 0;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.phone-page-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-page-logo-icon {
    width: 32px;
    height: 32px;
    background: #4B7BF5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.phone-page-logo-text {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

/* Main content wrapper */
.phone-main-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Success message box */
.phone-success-box {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.08);
}

.success-icon {
    width: 36px;
    height: 36px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-content {
    flex: 1;
}

.success-title {
    font-size: 16px;
    font-weight: 600;
    color: #064e3b;
    margin: 0 0 2px 0;
}

.success-text {
    font-size: 13px;
    color: #047857;
    margin: 0;
}

.success-text strong {
    font-weight: 600;
}

/* Timer notification */
.timer-notification {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.timer-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-text {
    font-size: 13px;
    color: #1e40af;
    margin: 0;
    line-height: 1.4;
}

#countdown {
    font-weight: 600;
    color: #3b82f6;
}

/* Main form card */
.phone-form-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e7;
}

.phone-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.phone-form-section {
    margin-bottom: 24px;
}

.phone-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 8px;
}

.phone-input-wrapper {
    margin-bottom: 8px;
}

.phone-input-field {
    width: 100%;
    padding: 16px 18px;
    font-size: 17px;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    transition: all 0.2s ease;
    color: #1a1a1a;
    background: #fafafa;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

.phone-input-field::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.phone-input-field:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.phone-helper-text {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Submit button */
.phone-submit-button {
    width: 100%;
    padding: 16px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    margin-bottom: 0;
}

.phone-submit-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

.phone-submit-button:active {
    transform: translateY(0);
}

/* Trust features blocks inside form */
.phone-trust-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e7;
}

.phone-trust-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.phone-trust-block-icon {
    width: 48px;
    height: 48px;
    background: #4B7BF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-trust-block-content {
    flex: 1;
}

.phone-trust-block-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.phone-trust-block-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Back button */
.phone-back-button {
    width: 100%;
    padding: 14px 24px;
    background: #f5f5f7;
    color: #6b7280;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 24px;
}

.phone-back-button:hover {
    background: #e5e7eb;
    color: #4b5563;
}

/* Phone page reviews section */
.phone-reviews-section {
    margin-top: 20px;
}

.phone-reviews-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
    text-align: center;
}

.phone-reviews-subtitle {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin-bottom: 16px;
}

.phone-review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.phone-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-review-avatar {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: #4c1d95;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.phone-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.phone-review-info {
    flex: 1;
}

.phone-review-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1px;
}

.phone-review-rating {
    color: #a16207;
    font-size: 12px;
    letter-spacing: 1px;
}

.phone-review-text {
    font-size: 13px;
    line-height: 1.4;
    color: #475569;
    margin: 0;
}
/* Container */
.verification-page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
.verification-page-header {
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 20px 0;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.verification-page-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.verification-page-logo-icon {
    width: 32px;
    height: 32px;
    background: #4B7BF5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.verification-page-logo-text {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

/* Main content wrapper */
.verification-main-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Success message box */
.verification-success-box {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.08);
}

.success-icon {
    width: 36px;
    height: 36px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-content {
    flex: 1;
}

.success-title {
    font-size: 16px;
    font-weight: 600;
    color: #064e3b;
    margin: 0 0 2px 0;
}

.success-text {
    font-size: 13px;
    color: #047857;
    margin: 0;
}

/* Main form card */
.verification-form-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e7;
}

.verification-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.verification-card-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.phone-display {
    font-weight: 600;
    color: #1e293b;
}

.verification-form-section {
    margin-bottom: 24px;
}

.verification-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 12px;
    text-align: center;
}

/* Code input fields */
.code-input-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 8px;
}

.code-input-field {
    width: 60px;
    height: 60px;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
    color: #1a1a1a;
    background: #fafafa;
}

.code-input-field:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.code-input-field.filled {
    background: white;
    border-color: #3b82f6;
}

.verification-helper-text {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Submit button */
.verification-submit-button {
    width: 100%;
    padding: 16px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    margin-bottom: 16px;
}

.verification-submit-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

.verification-submit-button:active {
    transform: translateY(0);
}

.verification-submit-button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Privacy consent */
.privacy-consent {
    margin-top: 16px;
    margin-bottom: 16px;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.consent-text {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}

/* Resend code section */
.resend-code-section {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #e5e5e7;
}

.resend-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.resend-button {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.resend-button:hover {
    background: #eff6ff;
}

.resend-button:disabled {
    color: #6b7280;
    cursor: not-allowed;
    background: none;
}

.resend-timer {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

/* Back button */
.verification-back-button {
    width: 100%;
    padding: 14px 24px;
    background: #f5f5f7;
    color: #6b7280;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.verification-back-button:hover {
    background: #e5e7eb;
    color: #4b5563;
}

/* Reviews section */
.verification-reviews-section {
    margin-top: 20px;
}

.verification-reviews-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
    text-align: center;
}

.verification-reviews-subtitle {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin-bottom: 16px;
}

.verification-review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.verification-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.verification-review-avatar {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.verification-review-avatar.avatar-purple {
    background: #6366f1;
}

.verification-review-avatar.avatar-green {
    background: #10b981;
}

.verification-review-avatar.avatar-yellow {
    background: #f59e0b;
}

.verification-review-info {
    flex: 1;
}

.verification-review-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1px;
}

.verification-review-rating {
    color: #a16207;
    font-size: 12px;
    letter-spacing: 1px;
}

.verification-review-text {
    font-size: 13px;
    line-height: 1.4;
    color: #475569;
    margin: 0;
}

/* FAQ Section */
.verification-faq-section {
    margin-top: 20px;
}

.verification-faq-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.verification-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verification-faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.verification-faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.1);
}

.verification-faq-question {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    text-align: left;
    transition: all 0.3s ease;
}

.verification-faq-question:hover {
    background: #f8fafc;
}

.verification-faq-icon {
    font-size: 18px;
    font-weight: 300;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.verification-faq-item.active .verification-faq-icon {
    transform: rotate(45deg);
}

.verification-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.verification-faq-item.active .verification-faq-answer {
    max-height: 150px;
}

.verification-faq-answer p {
    padding: 14px 16px;
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Footer */
.verification-footer {
    background: #ffffff;
    padding: 15px;
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    width: 100%;
    max-width: 480px;
}

.footer-terms {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    word-break: break-word;
}

.phone-input-field::placeholder,
.code-input-field::placeholder,
.verification-helper-text,
.resend-timer {
    color: #6b7280;
}
