:root {
    --bg-dark: #0f172a;
    --primary-blue: #1e293b;
    --gold: #fbbf24;
    --gold-hover: #d97706;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --glass: rgba(30, 41, 59, 0.7);
    --green: #10b981;
    --red: #ef4444;
    --purple: #8b5cf6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Фон с градиентами */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #20BA5F);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.gold-text { color: var(--gold); }

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.contact-btn {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
}

/* Главный блок */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    flex: 1;
}

/* Текстовая часть */
.text-section { max-width: 50%; }

.badge {
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 80%;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-item h3 { font-size: 24px; color: var(--text-light); }
.stat-item p { color: var(--text-gray); font-size: 14px; }

/* Калькулятор Карточка */
.calculator-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calc-header h2 { font-size: 22px; font-weight: 600; }
.calc-header i { color: var(--gold); font-size: 24px; }

.input-control { margin-bottom: 25px; }

.input-control label {
    color: var(--text-gray);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.amount-display {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.amount-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: rgba(30, 41, 59, 0.7);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
}

.amount-number-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    outline: none;
}

.amount-number-input::placeholder {
    color: var(--text-gray);
}

.amount-number-input:focus {
    color: var(--gold);
}

.amount-currency {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
}

/* Слайдер */
input[type=range] {
    width: 100%;
    height: 6px;
    background: #334155;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 8px;
}

.quick-amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.quick-btn {
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--text-light);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.quick-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Итоги */
.payment-summary {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.highlight-row {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
    margin-top: 10px;
}

.warning-text {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border: none;
    padding: 16px;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3); }

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border: none;
    padding: 16px;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    text-decoration: none;
}

.apply-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}

.apply-btn.whatsapp-quick {
    background: linear-gradient(135deg, #25D366, #20BA5F);
    color: white;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.apply-btn.whatsapp-quick:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* FEATURES SECTION */
.features {
    padding: 100px 8%;
    background: linear-gradient(135deg, rgba(14, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--gold), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--glass);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(30, 41, 59, 0.9);
}

.feature-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* PRICING SECTION */
.pricing-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 1), rgba(14, 23, 42, 0.95));
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 60px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(30, 41, 59, 0.95);
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(30, 41, 59, 0.95));
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--gold);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.plan-badge.popular {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
}

.plan-name {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
}

.plan-description {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 14px;
}

.features-list i {
    color: var(--green);
    font-size: 16px;
}

.plan-btn {
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.starter-btn {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.starter-btn:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.pro-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
}

.pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.enterprise-btn {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple);
    border: 1px solid var(--purple);
}

.enterprise-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

/* COMPARISON TABLE */
.comparison-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, rgba(14, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.table-wrapper {
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
    padding: 20px;
    text-align: left;
    font-weight: 700;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    color: var(--text-gray);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.05);
}

/* CTA SECTION */
.cta-section {
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    padding: 16px 40px;
    background: #000;
    color: var(--gold);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding: 60px 8%;
    color: var(--text-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 14px;
}

/* ===== APPLICATION PAGE STYLES ===== */

.back-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.application-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--glass);
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(20px);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Steps Indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.3s;
}

.step-name {
    font-size: 12px;
    text-align: center;
    color: var(--text-gray);
}

.step.active .step-number {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.step.active .step-name {
    color: var(--gold);
    font-weight: 600;
}

.step.completed .step-number {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.step.completed .step-number::after {
    content: '✓';
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h2 {
    font-size: 28px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--gold), #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-light);
    font-size: 14px;
    transition: 0.3s;
}

.form-group input::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-blue);
    color: var(--text-light);
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-next, .btn-back {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.btn-next {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-back {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-back:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

/* Step 2 & 3 Styles */
.amount-display {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin: 10px 0;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #334155;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 15px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 12px;
}

/* Calculation Box */
.calculation-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
}

.calc-item.highlight {
    background: rgba(251, 191, 36, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px -25px;
    padding: 15px 25px;
}

/* Payment Schedule */
.payment-schedule {
    margin-top: 30px;
}

.payment-schedule h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.table-container {
    overflow-x: auto;
}

.payment-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.payment-table th {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
}

.payment-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    font-size: 14px;
}

.payment-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.05);
}

/* Document Check */
.document-check {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.check-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.check-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.check-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.progress-timer {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.loading-text {
    text-align: center;
    color: var(--text-gray);
    margin: 20px 0;
}

/* Face Recognition */
.face-recognition-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.camera-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 2px solid rgba(251, 191, 36, 0.2);
}

#cameraVideo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.face-guide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.face-oval {
    width: 150px;
    height: 200px;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.guide-text {
    color: rgba(251, 191, 36, 0.6);
    margin-top: 10px;
    font-size: 12px;
}

.face-status {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.status-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.status-item i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 10px;
}

.status-item p {
    color: var(--text-gray);
}

.scanning-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: wave 1.4s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.requirements-list {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.requirements-list h4 {
    color: var(--green);
    margin-bottom: 10px;
}

.requirements-list ul {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    color: var(--text-gray);
    font-size: 13px;
}

.requirements-list i {
    color: var(--green);
}

/* Payment Info */
.insurance-info {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.insurance-info h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.insurance-info p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.insurance-details {
    list-style: none;
    padding: 0 0 0 20px;
}

.insurance-details li {
    color: var(--text-gray);
    font-size: 13px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insurance-details i {
    color: var(--gold);
    flex-shrink: 0;
}

.payment-summary-box {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.payment-summary-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* Bank Details */
.bank-details {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.bank-info {
    display: grid;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span {
    color: var(--text-gray);
}

.info-row strong {
    color: var(--gold);
}

.payment-form {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.payment-form h3 {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Receipt Upload Section */
.receipt-upload {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.receipt-upload h4 {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 16px;
}

.receipt-upload p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.file-upload-area {
    border: 2px dashed rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    background: rgba(251, 191, 36, 0.05);
    cursor: pointer;
    transition: 0.3s;
    margin: 15px 0;
}

.file-upload-area:hover {
    border-color: var(--gold);
    background: rgba(251, 191, 36, 0.1);
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-upload-area i {
    font-size: 40px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.file-upload-area p {
    color: var(--text-gray);
    margin: 0;
}

#receiptPreview {
    display: none;
    margin: 15px 0;
    text-align: center;
}

#receiptImage {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-small {
    padding: 8px 15px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    background: var(--red);
    color: white;
    margin-top: 10px;
}

.btn-small:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Final Step */
.final-success-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.final-success-box i {
    font-size: 60px;
    color: var(--green);
    display: block;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease;
}

.final-success-box h3 {
    font-size: 24px;
    color: var(--green);
    margin-bottom: 10px;
}

.final-success-box p {
    color: var(--text-gray);
}

.money-transfer {
    margin: 30px 0;
}

.money-transfer h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.instruction {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.transfer-form {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.transfer-info {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 24px;
    color: var(--gold);
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-item.highlight-item {
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    margin: 10px -20px -20px -20px;
    padding: 15px 20px;
}

.timer-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.timer-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.timer-content p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.timer-content h4 {
    font-size: 32px;
    color: var(--gold);
    margin: 10px 0;
}

.timer-content small {
    color: var(--text-gray);
    font-size: 12px;
}

/* Timeline */
.status-timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-left: 3px solid rgba(251, 191, 36, 0.2);
    margin-bottom: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.timeline-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
}

.timeline-item.completed {
    border-left-color: var(--green);
    background: rgba(16, 185, 129, 0.05);
}

.timeline-item.completed .timeline-marker {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.timeline-item.active {
    border-left-color: var(--gold);
    background: rgba(251, 191, 36, 0.05);
    animation: pulse 2s infinite;
}

.timeline-item.active .timeline-marker {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    animation: pulse 1.5s infinite;
}

.timeline-text strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.timeline-text p {
    color: var(--text-gray);
    font-size: 13px;
}

/* Support Contact */
.support-contact {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.support-contact h4 {
    color: var(--green);
    margin-bottom: 10px;
}

.support-contact p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #20BA5F);
    color: white;
}

.contact-btn.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.phone {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
}

.contact-btn.phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(251, 191, 36, 0.3);
}

/* Progress Bar Large */
.overall-progress {
    margin: 20px 0;
}

.overall-progress p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.progress-bar-large {
    width: 100%;
    height: 8px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.info-text {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Payment Box */
.payment-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.payment-info {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 0;
}

.payment-item span:first-child {
    color: var(--text-gray);
}

.payment-item span:last-child {
    color: var(--text-light);
    font-weight: 600;
}

.qr-code-section, .manual-payment {
    margin: 25px 0;
}

.qr-code-section h4, .manual-payment h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: rgba(251, 191, 36, 0.1);
    border: 2px dashed rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.qr-placeholder i {
    font-size: 48px;
    color: var(--gold);
}

.or-divider {
    text-align: center;
    color: var(--text-gray);
    margin: 30px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(251, 191, 36, 0.2);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

/* Success Modal */
.success-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.success-modal.show {
    display: flex !important;
}

.modal-content {
    background: linear-gradient(135deg, var(--primary-blue), rgba(30, 41, 59, 0.9));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content i {
    font-size: 80px;
    color: var(--green);
    margin-bottom: 20px;
    display: block;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--gold);
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    color: var(--green);
    font-weight: 600;
    white-space: pre-wrap;
}

.btn-home {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* ===== CAMERA COUNTDOWN ===== */
.camera-countdown {
    text-align: center;
    padding: 60px 20px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin: 30px 0;
}

.countdown-text h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    animation: pulse 2s infinite;
}

.countdown-text p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 5px;
}

.camera-countdown .instruction {
    color: var(--text-light);
    font-size: 16px;
    margin: 20px 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== PAYMENT WARNING ===== */
.payment-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.payment-warning p:first-child {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.payment-warning p:last-child {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 14px;
}

.payment-warning i {
    margin-right: 8px;
}

/* ===== IMPROVED CAMERA UI ===== */
.face-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.face-circle .face-oval {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.face-circle .guide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    z-index: 10;
}

/* ===== VERIFICATION INFO ===== */
.verification-info {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.verification-info p {
    color: var(--text-light);
    margin: 10px 0;
    line-height: 1.5;
}

.verification-info p:first-child {
    font-weight: 600;
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .application-container {
        margin: 15px 10px;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .steps-indicator {
        margin-bottom: 25px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .step {
        min-width: 60px;
        margin: 0 5px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .step-name {
        font-size: 10px;
        margin-top: 5px;
    }
    
    .form-step {
        padding: 20px 10px;
    }
    
    .form-step h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group.full-width {
        grid-column: 1 / -1;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .btn-next,
    .btn-back {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
        width: 100%;
        margin: 5px 0;
    }
    
    .button-group {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .document-check {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .check-item {
        padding: 15px;
        border-radius: 10px;
    }
    
    .check-item p {
        font-size: 13px;
        margin: 10px 0;
    }
    
    .progress-timer {
        font-size: 12px;
    }
    
    .modal-content {
        padding: 25px 20px;
        margin: 20px;
        border-radius: 15px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .countdown-circle {
        width: 120px;
        height: 120px;
    }
    
    .countdown-text h3 {
        font-size: 36px;
    }
    
    .countdown-text p {
        font-size: 12px;
    }
    
    .face-circle {
        width: 150px;
        height: 150px;
    }
    
    .camera-countdown {
        padding: 40px 15px;
        margin: 20px 0;
    }
    
    .camera-countdown .instruction {
        font-size: 14px;
    }
    
    .payment-summary-box,
    .transfer-form,
    .bank-details {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .payment-item {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .insurance-info h4 {
        font-size: 16px;
    }
    
    .insurance-info p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .payment-tiers h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .payment-tiers ul {
        font-size: 12px;
    }
    
    .file-upload-area {
        padding: 30px 20px;
        border-radius: 10px;
    }
    
    .file-upload-area p {
        font-size: 14px;
    }
    
    .verification-info {
        padding: 15px;
        border-radius: 10px;
    }
    
    .verification-info p {
        font-size: 13px;
    }
    
    .final-success-box {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .final-success-box h3 {
        font-size: 1.3rem;
    }
    
    .timer-box {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .timer-content h4 {
        font-size: 24px;
    }
    
    .timeline-item {
        padding: 15px;
        border-radius: 8px;
    }
    
    .timeline-text strong {
        font-size: 14px;
    }
    
    .timeline-text p {
        font-size: 12px;
    }
    
    .support-contact {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .contact-btn {
        font-size: 12px;
        padding: 10px 15px;
        border-radius: 8px;
    }
}

/* Мобильная версия */
@media (max-width: 900px) {
    .main-content { flex-direction: column; text-align: center; padding: 20px; }
    .text-section { max-width: 100%; margin-bottom: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-container { grid-template-columns: 1fr; }
    .calculator-card { width: 100%; max-width: 400px; }
    .nav-links { display: none; }
    .stats { justify-content: center; }
}

/* Mobile phones */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 4%;
        flex-wrap: wrap;
        background: var(--primary-blue);
        backdrop-filter: blur(10px);
    }
    
    .logo {
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .logo-svg {
        width: 30px;
        height: 30px;
    }
    
    .nav-right {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        gap: 12px;
    }
    
    .contact-btn {
        font-size: 11px;
        padding: 8px 12px;
        border-radius: 6px;
    }
    
    .main-content {
        padding: 25px 4%;
        text-align: center;
    }
    
    .text-section h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .text-section p {
        font-size: 0.95rem;
        max-width: 100%;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 25px;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin: 30px 0;
    }
    
    .stat-card {
        width: 100%;
        max-width: 200px;
        padding: 20px 15px;
    }
    
    .calculator-card {
        width: 100%;
        padding: 20px 15px;
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .amount-display {
        font-size: 20px;
        margin: 15px 0;
    }
    
    .amount-number-input {
        font-size: 16px;
        padding: 12px;
    }
    
    .quick-amount-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 15px 0;
    }
    
    .quick-btn {
        font-size: 11px;
        padding: 10px 8px;
        border-radius: 8px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 40px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .feature-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 40px 0;
    }
    
    .pricing-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .plan-name {
        font-size: 20px;
    }
    
    .plan-price {
        font-size: 24px;
        margin: 15px 0;
    }
    
    .plan-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .cta-section {
        padding: 50px 4%;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .footer {
        padding: 30px 4%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer-bottom {
        margin-top: 20px;
        padding-top: 20px;
        font-size: 11px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 3%;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-svg {
        width: 30px;
        height: 30px;
    }
    
    .main-content {
        padding: 15px 3%;
    }
    
    .text-section h1 {
        font-size: 1.8rem;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .calculator-card {
        padding: 20px 15px;
    }
    
    .amount-display {
        font-size: 20px;
    }
    
    .amount-number-input {
        font-size: 16px;
    }
    
    .quick-btn {
        font-size: 11px;
        padding: 10px 8px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .plan-name {
        font-size: 20px;
    }
    
    .plan-price {
        font-size: 24px;
    }
    
    .cta-section {
        padding: 40px 3%;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .footer {
        padding: 30px 3%;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* POLICY PAGES STYLING */
.policy-content {
    min-height: calc(100vh - 200px);
    padding: 60px 8%;
    margin-top: 20px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h1 {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section {
    margin-bottom: 40px;
    background: rgba(30, 41, 59, 0.5);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.policy-section h2 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    margin-left: 0;
}

.policy-section li {
    color: var(--text-gray);
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.policy-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.policy-section strong {
    color: var(--text-light);
}

.company-info {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.company-info p {
    margin: 5px 0;
    color: var(--text-light);
    font-size: 14px;
}

.company-info strong {
    color: var(--gold);
}

.footer-content { grid-template-columns: 1fr; }
.comparison-table { font-size: 14px; }
.comparison-table th, .comparison-table td { padding: 10px; }
.nav-right { flex-direction: column; gap: 10px; }
.stats { justify-content: center; }
.calculator-card { width: 100%; }
.nav-links { display: none; }