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

:root {
    --primary: #0A0A0A;
    --secondary: #6E59A5;
    --accent: #9D7FD4;
    --success: #34C759;
    --background: #FAFAFA;
    --card-bg: #FFFFFF;
    --text-primary: #000000;
    --text-secondary: #6B6B6B;
    --text-tertiary: #999999;
    --border: #E8E8E8;
    --shadow: rgba(0, 0, 0, 0.06);
    --shadow-hover: rgba(0, 0, 0, 0.12);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #fafafa 0%, #f5f4f8 100%);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* Container */
.container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-top: 20px;
}

.back-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.back-button:active {
    transform: scale(0.95);
    background: var(--background);
}

.step-indicator {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 48px;
}

.logo {
    font-size: 56px;
    margin-bottom: 24px;
    opacity: 0.95;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.8;
    max-width: 360px;
    margin: 0 auto;
}

/* Pricing Container - Shift Nudge Style */
.pricing-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-total {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-caption {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-tertiary);
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.price-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
}

.price-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, #34C759 0%, #30B350 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(52, 199, 89, 0.35);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    letter-spacing: -0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(52, 199, 89, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0px);
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.35);
}

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

.cta-button:hover .arrow {
    transform: translateX(-4px);
}

/* Trust Text */
.trust-text {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.7;
    padding: 20px;
    background: linear-gradient(135deg, rgba(110, 89, 165, 0.04) 0%, rgba(157, 127, 212, 0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(110, 89, 165, 0.08);
}

/* No Commission Badge */
.no-commission-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 24px 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.no-commission-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 127, 212, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.badge-text {
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.badge-subtext {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.5;
}

/* Phone Form */
.phone-form {
    margin-bottom: 32px;
}

.phone-form .form-group {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(110, 89, 165, 0.08);
    transition: all 0.3s ease;
}

.phone-form .form-group:hover {
    box-shadow: 0 8px 32px rgba(110, 89, 165, 0.12);
    border-color: rgba(110, 89, 165, 0.15);
}

.phone-form .form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-form .form-label::before {
    content: '📱';
    font-size: 18px;
}

.phone-form .form-input {
    font-size: 20px;
    padding: 16px 20px;
    border: 2px solid transparent;
    background: var(--background);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.phone-form .form-input:focus {
    border-color: var(--secondary);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(110, 89, 165, 0.08);
}

.phone-form .form-input::placeholder {
    font-weight: 400;
    letter-spacing: 1px;
}

.error-message {
    color: #ff3b30;
    font-size: 13px;
    margin-top: 12px;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(255, 59, 48, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.error-message::before {
    content: '⚠️';
    font-size: 14px;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--text-primary);
}

/* Question Section */
.question-section {
    margin-bottom: 40px;
}

.question-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.question-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Options Grid */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-card {
    background: var(--card-bg);
    padding: 28px 24px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 16px var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.option-card:active {
    transform: scale(0.98);
    border-color: var(--secondary);
    box-shadow: 0 4px 24px var(--shadow-hover);
}

.option-icon {
    font-size: 42px;
    line-height: 1;
}

.option-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.option-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 17px;
    font-family: 'Tajawal', sans-serif;
    border: 2px solid var(--border);
    border-radius: 14px;
    background: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(110, 89, 165, 0.1);
}

.form-hint {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 15px;
    pointer-events: none;
}

/* Payment Section */
.payment-section {
    text-align: center;
    padding-top: 40px;
}

.payment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 32px;
}

.payment-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.payment-amount {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 2px 20px var(--shadow);
}

.amount-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.amount-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.amount-note {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Payment Benefits */
.payment-benefits {
    text-align: right;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Apple Pay Button */
.apple-pay-button {
    width: 100%;
    padding: 18px;
    background: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.apple-pay-button:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.apple-pay-icon::before {
    content: '';
    width: 32px;
    height: 32px;
    display: inline-block;
    background: white;
    -webkit-mask: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuMiA4QzExLjYgNi44IDEyLjQgNS44IDEzLjIgNS4yQzE0IDQuNiAxNSA0IDE2IDRDMTcgNCAxOCA0LjYgMTguOCA1LjJDMTkuNiA1LjggMjAuNCA2LjggMjAuOCA4TTE4IDhDMTggOS4yIDE3LjYgMTAuNCAxNyAxMS40QzE2LjQgMTIuNCAxNS42IDEzIDEzIDEzQzEwLjQgMTMgOS42IDEyLjQgOSAxMS40QzguNCAxMC40IDggOS4yIDggOE02IDE2QzYgMTQuOCA2LjQgMTMuNiA3IDEyLjZDNy42IDExLjYgOC40IDExIDkgMTFDMTAuNCAxMSAxMS42IDEyIDEyIDEzQzEyLjQgMTQgMTMgMTUgMTQgMTZDMTUgMTcgMTYgMTggMTcgMTlDMTggMjAgMTkgMjEgMjAgMjJDMjEgMjMgMjIgMjQgMjIgMjVDMjIgMjYgMjIgMjcgMjEgMjhDMjAgMjkgMTkgMjkgMTggMjlDMTcgMjkgMTYgMjguNCAxNSAyNy44QzE0IDI3LjIgMTMgMjYgMTIgMjVDMTEgMjQgMTAgMjMgOSAyMkM4IDIxIDcgMjAgNiAxOVoiIGZpbGw9IndoaXRlIi8+PC9zdmc+') center/contain no-repeat;
    mask: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuMiA4QzExLjYgNi44IDEyLjQgNS44IDEzLjIgNS4yQzE0IDQuNiAxNSA0IDE2IDRDMTcgNCAxOCA0LjYgMTguOCA1LjJDMTkuNiA1LjggMjAuNCA2LjggMjAuOCA4TTE4IDhDMTggOS4yIDE3LjYgMTAuNCAxNyAxMS40QzE2LjQgMTIuNCAxNS42IDEzIDEzIDEzQzEwLjQgMTMgOS42IDEyLjQgOSAxMS40QzguNCAxMC40IDggOS4yIDggOE02IDE2QzYgMTQuOCA2LjQgMTMuNiA3IDEyLjZDNy42IDExLjYgOC40IDExIDkgMTFDMTAuNCAxMSAxMS42IDEyIDEyIDEzQzEyLjQgMTQgMTMgMTUgMTQgMTZDMTUgMTcgMTYgMTggMTcgMTlDMTggMjAgMTkgMjEgMjAgMjJDMjEgMjMgMjIgMjQgMjIgMjVDMjIgMjYgMjIgMjcgMjEgMjhDMjAgMjkgMTkgMjkgMTggMjlDMTcgMjkgMTYgMjguNCAxNSAyNy44QzE0IDI3LjIgMTMgMjYgMTIgMjVDMTEgMjQgMTAgMjMgOSAyMkM4IDIxIDcgMjAgNiAxOVoiIGZpbGw9IndoaXRlIi8+PC9zdmc+') center/contain no-repeat;
}

.apple-pay-text {
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.apple-pay-button.processing {
    pointer-events: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.lock-icon {
    font-size: 16px;
}

/* Confirmation Section */
.confirmation-section {
    text-align: center;
    padding-top: 60px;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: white;
    margin: 0 auto 32px;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.confirmation-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
}

.confirmation-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.confirmation-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px var(--shadow);
}

.confirmation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.confirmation-label {
    font-size: 15px;
    color: var(--text-secondary);
}

.confirmation-value {
    font-size: 17px;
    font-weight: 700;
}

.status-badge {
    background: rgba(110, 89, 165, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.confirmation-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

/* Next Steps */
.next-steps {
    text-align: right;
    background: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 2px 20px var(--shadow);
}

.next-steps-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.step-number {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Secondary Button */
.secondary-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.secondary-button:active {
    transform: scale(0.98);
    background: var(--background);
}

/* Calculator Styles */
.calculator-hero {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.calculator-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.calculator-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.calculator-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.calculator-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 20px var(--shadow);
}

.savings-result {
    margin-top: 32px;
}

.savings-comparison {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.comparison-item {
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.old-way {
    background: rgba(255, 59, 48, 0.08);
    border: 2px solid rgba(255, 59, 48, 0.2);
}

.new-way {
    background: rgba(52, 199, 89, 0.08);
    border: 2px solid rgba(52, 199, 89, 0.3);
}

.comparison-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.comparison-value {
    font-size: 28px;
    font-weight: 700;
}

.comparison-value.old {
    color: #ff3b30;
}

.comparison-value.new {
    color: var(--success);
}

.comparison-divider {
    text-align: center;
    padding: 8px 0;
}

.vs-text {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.savings-highlight {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.savings-label {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.savings-amount {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.savings-note {
    font-size: 14px;
    opacity: 0.9;
}

.benefits-section {
    margin-bottom: 32px;
}

.benefits-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px var(--shadow);
}

.benefit-emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Welcome Back Styles */
.welcome-back-section {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.welcome-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.welcome-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.welcome-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.sms-verification {
    margin-bottom: 32px;
}

.verification-card {
    background: var(--card-bg);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 2px 20px var(--shadow);
}

.verification-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.verification-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.code-input {
    width: 56px;
    height: 64px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--background);
    transition: all 0.2s ease;
}

.code-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(110, 89, 165, 0.1);
}

.skip-button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: color 0.2s ease;
}

.skip-button:hover {
    color: var(--text-primary);
}

/* Status Section */
.status-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.request-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 20px var(--shadow);
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.request-number {
    font-size: 18px;
    font-weight: 700;
}

.status-badge.active {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
}

.request-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.detail-label {
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
}

.agent-message {
    display: flex;
    gap: 16px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 20px var(--shadow);
}

.agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.agent-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.message-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.message-time {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 390px) {
    .title {
        font-size: 36px;
    }
    
    .question-title {
        font-size: 28px;
    }
    
    .amount-value {
        font-size: 40px;
    }
    
    .calculator-title {
        font-size: 30px;
    }
    
    .savings-amount {
        font-size: 36px;
    }
}
