/* JustFinn - Premium Fintech CSS */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #7c3aed;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --bg: #f8fafc;
    --bg-dark: #0f172a;
    --white: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a:hover {
    color: var(--primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-text {
    background: none;
    color: var(--text-muted);
    padding: 10px;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.3rem;
}

/* ============ LANDING SECTION - PREMIUM REDESIGN ============ */
.landing {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 40%, #1a1f35 100%);
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Orbs */
.landing::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orb-float 12s ease-in-out infinite;
}

.landing::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 15s ease-in-out infinite reverse;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -10px) scale(1.02);
    }
}

/* Grid Pattern Overlay */
.landing .container {
    position: relative;
    z-index: 2;
}

.landing .container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Badge with glow */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    color: #93c5fd;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.4);
    }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 45px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    padding: 18px 36px;
    font-size: 1.05rem;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 18px 36px;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.trust-badges {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: 0.3s;
}

.trust-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.trust-icon {
    font-size: 1.4rem;
}

/* Eligibility Card - Premium Glassmorphism */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse-slow 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

.eligibility-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 50px;
    border-radius: 32px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 360px;
    animation: card-float 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.eligibility-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.5) 0%, rgba(124, 58, 237, 0.3) 50%, rgba(6, 182, 212, 0.5) 100%);
    border-radius: 34px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(25px);
    animation: glow-rotate 8s linear infinite;
}

@keyframes glow-rotate {
    0% {
        filter: blur(25px) hue-rotate(0deg);
    }

    100% {
        filter: blur(25px) hue-rotate(360deg);
    }
}

@keyframes card-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-0.5deg);
    }

    75% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #34d399;
    font-weight: 600;
    font-size: 1.1rem;
}

.check-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.card-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
}

.card-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 1rem;
}

.card-banks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.bank-dot {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-left: -12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.bank-dot:first-child {
    margin-left: 0;
}

.bank-dot:hover {
    transform: translateY(-5px);
}

.bank-count {
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Partners */
.partners {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.partners-title {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* Disclaimer */
.disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.disclaimer-icon {
    flex-shrink: 0;
}

/* ============ WIZARD SECTION ============ */
.wizard {
    padding: 40px 0;
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 33%;
    transition: width 0.5s ease;
}

.step-indicator {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.step {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.step-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Option Cards */
.option-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.option-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.option-card:hover,
.option-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.option-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.option-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.option-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.input,
.select-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.input:focus,
.select-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-option {
    flex: 1;
    cursor: pointer;
}

.radio-option input {
    display: none;
}

.radio-box {
    display: block;
    padding: 15px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.radio-option input:checked+.radio-box {
    border-color: var(--primary);
    background: var(--primary-light);
}

/* Slider */
.slider-container {
    position: relative;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: var(--border);
    border-radius: 4px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.3);
}

.slider-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Question Cards */
.question-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.question {
    font-weight: 600;
    margin-bottom: 15px;
}

.answer-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.answer-btn {
    padding: 12px 20px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.answer-btn:hover,
.answer-btn.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

/* Credit Estimate */
.credit-estimate {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    margin: 30px 0;
}

.estimate-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.estimate-value {
    font-size: 2rem;
    font-weight: 700;
}

.estimate-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* ============ RESULTS SECTION ============ */
.results {
    padding: 40px 0;
    max-width: 700px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.results-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--success);
}

.eligibility-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.summary-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.summary-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.summary-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* Banks Section */
.banks-section {
    margin-bottom: 30px;
}

.banks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.banks-header h3 {
    font-size: 1.2rem;
}

.urgency-badge {
    background: #fff7ed;
    color: #ea580c;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bank-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.bank-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.bank-logo {
    font-weight: 700;
    color: var(--text);
    min-width: 100px;
}

.bank-info {
    flex: 1;
}

.bank-rate {
    font-weight: 600;
    color: var(--text);
}

.bank-amount {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.approval-chance {
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.approval-chance.high {
    background: #dcfce7;
    color: #16a34a;
}

.approval-chance.medium {
    background: #fef9c3;
    color: #ca8a04;
}

/* CIBIL Section */
.cibil-section {
    background: var(--white);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.cibil-section h4 {
    margin-bottom: 10px;
}

.cibil-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.skip-link {
    display: block;
    margin-top: 15px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
}

.skip-link:hover {
    color: var(--primary);
}

/* ============ CONSENT SECTION ============ */
.consent {
    padding: 40px 0;
    max-width: 500px;
    margin: 0 auto;
}

.consent h2 {
    text-align: center;
    margin-bottom: 10px;
}

.consent-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.consent-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.consent-checklist {
    margin: 25px 0;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    cursor: pointer;
}

.consent-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.consent-item a {
    color: var(--primary);
}

.consent-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f1f5f9;
    padding: 15px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ============ THANK YOU SECTION ============ */
.thankyou {
    padding: 60px 0;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-content {
    text-align: center;
}

.success-animation {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.thankyou h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--success);
}

.next-steps {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    margin-bottom: 25px;
}

.step-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.timeline-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-item strong {
    display: block;
    margin-bottom: 5px;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.support-box {
    background: #f1f5f9;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

/* ============ MODAL ============ */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--bg);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.modal-feature {
    color: var(--success);
    font-weight: 500;
}

/* CIBIL Modal Specific */
.cibil-modal {
    max-width: 450px;
}

.cibil-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    background: var(--bg);
    padding: 20px;
    border-radius: var(--radius);
}

.cibil-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cibil-feature .feature-icon {
    font-size: 1.5rem;
}

.cibil-feature strong {
    display: block;
    color: var(--text);
}

.cibil-feature p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.input-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CIBIL Loading */
.cibil-loading {
    text-align: center;
    padding: 30px 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cibil-loading h3 {
    margin-bottom: 10px;
}

.loading-steps {
    margin-top: 30px;
    text-align: left;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.loading-step:last-child {
    border-bottom: none;
}

.loading-step.active {
    color: var(--primary);
}

.loading-step.done {
    color: var(--success);
}

.loading-step .step-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* CIBIL Result */
.cibil-result {
    text-align: center;
}

.score-meter {
    margin: 30px 0;
}

.score-gauge {
    width: 200px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(to right, #ef4444 0%, #f59e0b 33%, #22c55e 66%, #10b981 100%);
    border-radius: 100px 100px 0 0;
    position: relative;
    overflow: hidden;
}

.score-gauge::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 70px;
    background: var(--white);
    border-radius: 70px 70px 0 0;
}

.gauge-fill {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 80px;
    background: var(--text);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-70deg);
    transition: transform 1s ease-out;
    z-index: 2;
}

.gauge-fill::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--text);
    border-radius: 50%;
}

.score-value {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    z-index: 3;
}

.score-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.score-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin: 15px 0;
}

.score-badge.excellent {
    background: #dcfce7;
    color: #16a34a;
}

.score-badge.good {
    background: #dbeafe;
    color: #2563eb;
}

.score-badge.fair {
    background: #fef3c7;
    color: #d97706;
}

.score-badge.poor {
    background: #fce4ec;
    color: #c62828;
}

.score-message {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.score-factors {
    background: var(--bg);
    padding: 20px;
    border-radius: var(--radius);
    text-align: left;
    margin-bottom: 25px;
}

.score-factors h4 {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.factor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.factor.positive {
    color: var(--success);
}

.factor.negative {
    color: var(--error);
}

.factor.neutral {
    color: var(--text-muted);
}

/* ============ CIBIL WIZARD SECTION ============ */
.cibil-wizard {
    min-height: 100vh;
    background: var(--bg);
    padding: 100px 0 60px;
}

.cibil-progress {
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.cibil-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 16.66%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.cibil-step-indicator {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.cibil-step {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.step-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cibil-step h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text);
}

.step-desc {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.cibil-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
    text-align: left;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefit-card span {
    font-size: 1.8rem;
}

.benefit-card strong {
    display: block;
    margin-bottom: 5px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.input-prefix {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.input-prefix span {
    padding: 0 15px;
    background: var(--bg);
    color: var(--text-muted);
    font-weight: 500;
}

.input-prefix .input {
    border: none;
    border-radius: 0;
}

.input-large {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 5px;
    font-weight: 600;
}

.pan-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-item span {
    font-size: 1.2rem;
}

.step-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.step-buttons .btn {
    min-width: 150px;
}

/* OTP Inputs */
.otp-container {
    margin: 30px 0;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-input {
    width: 55px;
    height: 65px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.otp-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.resend-timer {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Verification Questions */
.verification-questions {
    text-align: left;
    margin-bottom: 30px;
}

.question-box {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.question-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.checkbox-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.checkbox-option:hover {
    background: var(--bg);
}

/* Fetching Animation */
.fetching-animation {
    text-align: center;
    padding: 50px 0;
}

.fetch-spinner {
    width: 80px;
    height: 80px;
    border: 5px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

.fetch-steps {
    max-width: 350px;
    margin: 40px auto 0;
    text-align: left;
}

.fetch-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.fetch-step:last-child {
    border-bottom: none;
}

.fetch-step.active {
    color: var(--primary);
}

.fetch-step.done {
    color: var(--success);
}

.fetch-icon {
    font-size: 1.2rem;
}

/* Score Result */
.score-result-section {
    text-align: center;
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.score-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.score-out-of {
    opacity: 0.8;
    font-size: 0.9rem;
}

.score-rating {
    text-align: left;
}

.rating-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.rating-badge.excellent {
    background: #dcfce7;
    color: #16a34a;
}

.rating-badge.good {
    background: #dbeafe;
    color: #2563eb;
}

.rating-badge.average {
    background: #fef3c7;
    color: #d97706;
}

.rating-badge.poor {
    background: #fce4ec;
    color: #c62828;
}

.rating-desc {
    color: var(--text-muted);
    max-width: 250px;
}

.score-meaning {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.score-meaning h4 {
    margin-bottom: 15px;
}

.meaning-scale {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.scale-item {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.scale-item.excellent {
    background: #dcfce7;
    color: #16a34a;
}

.scale-item.good {
    background: #dbeafe;
    color: #2563eb;
}

.scale-item.average {
    background: #fef3c7;
    color: #d97706;
}

.scale-item.poor {
    background: #fce4ec;
    color: #c62828;
}

.credit-report {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    text-align: left;
}

.credit-report h4 {
    margin-bottom: 20px;
    text-align: center;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.report-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.report-item span {
    font-size: 1.5rem;
}

.report-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.report-item p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.score-factors-detailed {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    text-align: left;
}

.score-factors-detailed h4 {
    margin-bottom: 15px;
    text-align: center;
}

.factor-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
}

.factor-item.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #16a34a;
}

.factor-item.neutral {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.factor-item.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.cibil-cta {
    margin-top: 30px;
}

@media (max-width: 600px) {
    .cibil-benefits {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .otp-input {
        width: 45px;
        height: 55px;
        font-size: 1.4rem;
    }

    .checkbox-options {
        grid-template-columns: 1fr;
    }

    .score-display {
        flex-direction: column;
    }

    .score-rating {
        text-align: center;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ TOAST ============ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    opacity: 0;
    transition: var(--transition);
    z-index: 2000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 50px 0 30px;
    margin-top: 60px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    gap: 25px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-visual {
        order: -1;
        margin-top: 20px;
    }

    .eligibility-card {
        width: 320px;
        padding: 40px;
    }

    .trust-badges {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .nav {
        display: none;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .landing {
        padding: 90px 0 50px;
    }

    .hero {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .eligibility-card {
        width: 300px;
        padding: 35px;
    }

    .card-amount {
        font-size: 2.5rem;
    }

    .card-header {
        font-size: 1rem;
    }

    .partners-logos {
        gap: 20px;
    }

    .partner-logo {
        font-size: 0.9rem;
    }

    .option-cards {
        grid-template-columns: 1fr;
    }

    .eligibility-summary {
        grid-template-columns: 1fr;
    }

    .bank-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .banks-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .landing {
        padding: 90px 0 40px;
    }

    .hero {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .eligibility-card {
        width: calc(100vw - 60px);
        max-width: 280px;
        padding: 25px 20px;
        margin: 0 auto;
    }

    .card-amount {
        font-size: 2rem;
    }

    .card-header {
        font-size: 0.85rem;
        gap: 8px;
    }

    .check-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .card-text {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .bank-dot {
        width: 28px;
        height: 28px;
        margin-left: -10px;
    }

    .bank-count {
        font-size: 0.8rem;
    }

    .hero-visual::before {
        width: 250px;
        height: 250px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .wizard,
    .results,
    .consent,
    .thankyou {
        padding: 30px 15px;
    }

    .step h2 {
        font-size: 1.4rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .radio-group {
        flex-direction: column;
    }

    .answer-options {
        flex-direction: column;
    }

    .answer-btn {
        width: 100%;
    }
}

/* Touch-friendly */
@media (hover: none) {
    .btn:hover {
        transform: none;
    }

    .option-card:hover {
        border-color: var(--border);
        box-shadow: none;
    }

    .option-card.selected {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px var(--primary-light);
    }
}

/* ============ NEW FORM BUTTON STYLES - PREMIUM ============ */

/* Preset Buttons (Loan Amount) */
.preset-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.preset-btn {
    flex: 1;
    min-width: 70px;
    padding: 16px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.preset-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: 0.5s;
}

.preset-btn:hover::before {
    left: 100%;
}

.preset-btn:hover {
    border-color: #2563eb;
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.preset-btn.selected {
    border-color: transparent;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

/* Tenure Buttons */
.tenure-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.tenure-btn {
    padding: 18px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tenure-btn:hover {
    border-color: #2563eb;
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.tenure-btn.selected {
    border-color: transparent;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

/* Age Range Buttons */
.age-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.age-btn {
    flex: 1;
    min-width: 65px;
    padding: 14px 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.age-btn:hover {
    border-color: #10b981;
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.age-btn.selected {
    border-color: transparent;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
}

/* Employer Type Buttons */
.employer-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.employer-btn {
    padding: 16px 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.employer-btn:hover {
    border-color: #8b5cf6;
    background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.employer-btn.selected {
    border-color: transparent;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

/* Business Vintage Buttons */
.vintage-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vintage-btn {
    padding: 16px 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vintage-btn:hover {
    border-color: #f59e0b;
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.vintage-btn.selected {
    border-color: transparent;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35);
    transform: translateY(-2px);
}

/* EMI Burden Buttons */
.emi-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.emi-btn {
    padding: 16px 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.emi-btn:hover {
    border-color: #06b6d4;
    background: linear-gradient(145deg, #ecfeff 0%, #cffafe 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
}

.emi-btn.selected {
    border-color: transparent;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35);
    transform: translateY(-2px);
}

/* Conditional Fields Animation */
.conditional-field {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for new buttons */
@media (max-width: 480px) {
    .preset-buttons {
        gap: 8px;
    }

    .preset-btn {
        min-width: 55px;
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .age-buttons {
        gap: 8px;
    }

    .age-btn {
        min-width: 50px;
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}