/* ZP Sangli - Main CSS - Poppins Font, Orange Theme */
:root {
    --saffron: #FF9933;
    --orange: #F57C00;
    --orange-dark: #E65100;
    --orange-light: #FFF3E0;
    --green: #138808;
    --green-dark: #0D5302;
    --green-light: #E8F5E9;
    --blue: #1565C0;
    --blue-light: #E3F2FD;
    --white: #FFFFFF;
    --text-dark: #212121;
    --text-light: #616161;
    --text-muted: #9E9E9E;
    --bg-light: #FAFAFA;
    --bg-gray: #F5F5F5;
    --border: #E0E0E0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.18);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif; background: #f8f9fa; min-height: 100vh; color: var(--text-dark); }
button, input, select, textarea, label, span, p, h1, h2, h3, h4, h5, h6, a, div, td, th, li { font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif; }

/* Preserve Font Awesome icons */
.fas, .far, .fab, .fa, [class*="fa-"] { font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important; font-weight: 900; }

/* Header */
.header { background: var(--white); box-shadow: var(--shadow-lg); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header-top { height: 5px; background: linear-gradient(90deg, var(--saffron) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--green) 66.66%); }
.header-content { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.logo-section { display: flex; align-items: center; gap: 1rem; }
.logo-section img { height: 60px; }
.logo-text h1 { font-size: 1.4rem; font-weight: 700; color: var(--orange-dark); }
.logo-text p { font-size: 0.75rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.5px; }
.contact-info { display: flex; gap: 2rem; }
.contact-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-dark); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.3s; }
.contact-item i { color: var(--orange); font-size: 1.1rem; }
.contact-item:hover { color: var(--orange); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); padding: 0.5rem; }

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--orange-light), #fff);
    border-bottom: 3px solid var(--saffron);
}
.mobile-menu-header img {
    height: 45px;
}
.mobile-menu-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange-dark);
}
.mobile-menu-header p {
    font-size: 0.7rem;
    color: var(--text-light);
}
.mobile-menu-nav {
    padding: 1rem 0;
    flex: 1;
}
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.mobile-nav-item:hover, .mobile-nav-item:active {
    background: var(--orange-light);
    border-left-color: var(--orange);
    color: var(--orange-dark);
}
.mobile-nav-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    border-radius: 8px;
    color: var(--orange);
}
.mobile-menu-contact {
    padding: 1.25rem;
    background: var(--bg-gray);
    border-top: 1px solid var(--border);
}
.mobile-menu-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
}
.mobile-contact-item i {
    color: var(--orange);
    width: 20px;
}
.mobile-menu-footer {
    padding: 1rem 1.25rem;
    background: var(--orange-dark);
    color: white;
    text-align: center;
    font-size: 0.75rem;
}

/* Hero Section */
.hero { min-height: 100vh; padding: 110px 2rem 3rem; display: flex; align-items: center; background: linear-gradient(135deg, #fff5e6 0%, #fff 50%, #e8f5e9 100%); }
.hero-container { max-width: 1400px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 560px; gap: 3rem; align-items: center; }
.hero-content { animation: slideIn 0.8s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; background: linear-gradient(135deg, var(--orange-light), #fff); border: 1px solid var(--saffron); border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--orange-dark); margin-bottom: 1.5rem; box-shadow: 0 2px 10px rgba(255,153,51,0.2); }
.hero-badge i { color: var(--saffron); }

.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; color: var(--text-dark); }
.hero-title .highlight { color: var(--orange); }
.hero-title .highlight-green { color: var(--green); }

.hero-description { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.8; max-width: 580px; }

.hero-features { display: flex; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.feature-item { display: flex; align-items: center; gap: 0.85rem; font-size: 1rem; font-weight: 500; color: var(--text-dark); }
.feature-item i { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.feature-item:nth-child(1) i { background: var(--orange-light); color: var(--orange); }
.feature-item:nth-child(2) i { background: var(--green-light); color: var(--green); }
.feature-item:nth-child(3) i { background: var(--blue-light); color: var(--blue); }

.hero-stats { display: flex; gap: 3rem; }
.stat-box { text-align: center; padding: 1rem; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.95rem; color: var(--text-light); font-weight: 500; margin-top: 0.5rem; }

/* Login Card - LARGER */
.login-card-wrapper { animation: slideIn 0.8s ease 0.2s both; }
.login-card { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden; }
.tricolor-strip { height: 8px; background: linear-gradient(90deg, var(--saffron) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--green) 66.66%); }

.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--bg-gray); padding: 1.25rem; gap: 1rem; }
.role-tab { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 1.25rem 1rem; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; background: transparent; transition: all 0.3s; }
.role-tab:hover { background: var(--white); }
.role-tab.active { background: var(--white); box-shadow: var(--shadow); }
.role-tab.active[data-role="user"] { border-color: var(--orange); }
.role-tab.active[data-role="bdo"] { border-color: var(--blue); }
.role-tab.active[data-role="ceo"] { border-color: var(--green); }
.role-icon { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; transition: transform 0.3s; }
.role-tab[data-role="user"] .role-icon { background: var(--orange-light); color: var(--orange); }
.role-tab[data-role="bdo"] .role-icon { background: var(--blue-light); color: var(--blue); }
.role-tab[data-role="ceo"] .role-icon { background: var(--green-light); color: var(--green); }
.role-tab.active .role-icon { transform: scale(1.1); }
.role-label { font-size: 1rem; font-weight: 600; color: var(--text-light); transition: color 0.3s; }
.role-tab.active .role-label { color: var(--text-dark); }

/* Login Form - LARGER */
.login-form-container { padding: 2.25rem 2.75rem 2.75rem; }
.login-header { text-align: center; margin-bottom: 2.25rem; }
.login-header h2 { font-size: 1.75rem; font-weight: 700; color: var(--orange-dark); margin-bottom: 0.4rem; }
.login-header p { font-size: 1rem; color: var(--text-light); }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.6rem; }
.input-wrapper { position: relative; }
.input-wrapper i { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.15rem; }
.form-input { width: 100%; padding: 1.1rem 1.25rem 1.1rem 3.5rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1.05rem; font-family: 'Poppins', sans-serif; background: var(--bg-light); transition: all 0.3s; }
.form-input:focus { outline: none; border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 4px rgba(245,124,0,0.1); }
.form-input::placeholder { color: var(--text-muted); }
.password-toggle { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; }
.password-toggle:hover { color: var(--orange); }

.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; font-size: 0.9rem; }
.remember-me { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-weight: 500; color: var(--text-dark); }
.remember-me input { width: 18px; height: 18px; accent-color: var(--orange); }
.forgot-link { color: var(--orange); text-decoration: none; font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }

.login-btn { width: 100%; padding: 1.2rem; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); border: none; border-radius: var(--radius); font-size: 1.15rem; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.6rem; transition: all 0.3s; }
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(245,124,0,0.35); }
.login-btn:active { transform: translateY(0); }

.divider { display: flex; align-items: center; margin: 1.5rem 0; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span { padding: 0 1.25rem; }

.register-btn { width: 100%; padding: 1.1rem; background: var(--white); color: var(--green); border: 2px solid var(--green); border-radius: var(--radius); font-size: 1.05rem; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.6rem; transition: all 0.3s; }
.register-btn:hover { background: var(--green-light); }

.track-link { text-align: center; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.track-link a { color: var(--blue); text-decoration: none; font-size: 1.05rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }
.track-link a:hover { text-decoration: underline; }

/* Features Section from Second Image */
.features-section { padding: 5rem 2rem; background: var(--white); }
.features-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.25rem; font-weight: 700; color: var(--orange-dark); margin-bottom: 0.75rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.feature-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; transition: all 0.3s; border: 2px solid transparent; }
.feature-card:hover { background: var(--white); border-color: var(--orange-light); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card-icon { width: 75px; height: 75px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; }
.feature-card:nth-child(1) .feature-card-icon { background: var(--orange-light); color: var(--orange); }
.feature-card:nth-child(2) .feature-card-icon { background: var(--green-light); color: var(--green); }
.feature-card:nth-child(3) .feature-card-icon { background: var(--blue-light); color: var(--blue); }
.feature-card:nth-child(4) .feature-card-icon { background: #FCE4EC; color: #E91E63; }
.feature-card-title { font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.75rem; }
.feature-card-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* How It Works Section */
.how-it-works { padding: 5rem 2rem; background: linear-gradient(135deg, #fff5e6 0%, #fff 100%); }
.steps-container { max-width: 1000px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 3px; background: var(--border); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number { width: 80px; height: 80px; border-radius: 50%; background: var(--white); border: 3px solid var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 700; color: var(--orange); margin: 0 auto 1.25rem; box-shadow: var(--shadow); }
.step-card-title { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.step-card-desc { font-size: 0.9rem; color: var(--text-light); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; padding: 1rem; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: var(--radius-xl); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; transform: scale(0.9) translateY(20px); transition: all 0.3s; box-shadow: var(--shadow-xl); }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-header { padding: 1.75rem 2rem 0; display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 1.5rem; font-weight: 700; color: var(--orange-dark); }
.modal-close { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--bg-gray); color: var(--text-light); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.3s; }
.modal-close:hover { background: var(--border); color: var(--text-dark); }
.modal-body { padding: 2rem; }

/* Steps Indicator */
.steps { display: flex; justify-content: center; align-items: center; margin-bottom: 2rem; }
.step { display: flex; align-items: center; }
.step-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-gray); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 600; transition: all 0.3s; }
.step.active .step-dot, .step.completed .step-dot { background: var(--orange); color: var(--white); }
.step-line { width: 60px; height: 3px; background: var(--bg-gray); margin: 0 0.75rem; border-radius: 2px; transition: all 0.3s; }
.step-line.active { background: var(--orange); }

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-select { width: 100%; padding: 1rem 1.25rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: 'Poppins', sans-serif; background: var(--bg-light); cursor: pointer; transition: all 0.3s; }
.form-select:focus { outline: none; border-color: var(--orange); background: var(--white); }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }

/* OTP */
.otp-container { display: flex; justify-content: center; gap: 0.85rem; margin: 2rem 0; }
.otp-input { width: 55px; height: 60px; text-align: center; font-size: 1.6rem; font-weight: 700; border: 2px solid var(--border); border-radius: var(--radius); font-family: 'Poppins', sans-serif; transition: all 0.3s; }
.otp-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(245,124,0,0.1); }
.otp-message { text-align: center; padding: 1.25rem; background: var(--orange-light); border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.95rem; color: var(--orange-dark); }
.otp-message i { margin-right: 0.5rem; }
.resend-text { text-align: center; font-size: 0.9rem; color: var(--text-light); }
.resend-text button { background: none; border: none; color: var(--orange); font-weight: 600; cursor: pointer; font-family: 'Poppins', sans-serif; }
.resend-text button:disabled { color: var(--text-muted); cursor: not-allowed; }

/* Buttons */
.btn-group { display: flex; gap: 1rem; margin-top: 2rem; }
.btn { flex: 1; padding: 1rem 1.5rem; border-radius: var(--radius); font-size: 1rem; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(245,124,0,0.35); }
.btn-secondary { background: var(--bg-light); color: var(--text-dark); border: 2px solid var(--border); }
.btn-secondary:hover { background: var(--white); border-color: var(--text-muted); }

/* Success */
.success-state { text-align: center; padding: 1.5rem 0; }
.success-icon { width: 90px; height: 90px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.75rem; font-size: 2.75rem; color: var(--green); animation: bounceIn 0.5s ease; }
@keyframes bounceIn { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
.success-title { font-size: 1.6rem; font-weight: 700; color: var(--green); margin-bottom: 0.5rem; }
.success-message { color: var(--text-light); margin-bottom: 1.75rem; font-size: 1rem; }
.user-id-display { background: var(--bg-light); border: 2px dashed var(--orange); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.75rem; }
.user-id-display label { font-size: 0.85rem; color: var(--text-light); }
.user-id-display strong { display: block; font-size: 1.35rem; color: var(--orange-dark); margin-top: 0.35rem; }

/* Footer */
.footer { background: #1a1a2e; color: var(--white); padding: 3.5rem 2rem 2rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 1.25rem; }
.footer-brand img { height: 55px; filter: brightness(0) invert(1); }
.footer-brand h3 { font-size: 1.2rem; font-weight: 600; }
.footer-brand p { font-size: 0.85rem; opacity: 0.7; }
.footer-links { display: flex; gap: 3rem; }
.footer-link-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.footer-link-item:hover { color: var(--white); }
.footer-link-item i { color: var(--saffron); font-size: 1.15rem; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; opacity: 0.7; }

/* Toast */
.toast { position: fixed; top: 100px; right: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-xl); padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 1rem; transform: translateX(150%); transition: transform 0.3s; z-index: 3000; max-width: 400px; }
.toast.show { transform: translateX(0); }
.toast.success { border-left: 5px solid var(--green); }
.toast.error { border-left: 5px solid #EF4444; }
.toast-icon { font-size: 1.4rem; }
.toast.success .toast-icon { color: var(--green); }
.toast.error .toast-icon { color: #EF4444; }
.toast-message { flex: 1; font-size: 0.95rem; font-weight: 500; }
.toast-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.25rem; font-size: 1.1rem; }
.spinner { width: 22px; height: 22px; border: 3px solid transparent; border-top-color: currentColor; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 1280px) {
    .hero-container { grid-template-columns: 1fr 520px; gap: 2.5rem; }
}
@media (max-width: 1200px) {
    .hero-container { grid-template-columns: 1fr 500px; gap: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .steps-grid::before { display: none; }
}
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 2.75rem; }
    .login-card-wrapper { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .header-content { padding: 0.75rem 1rem; }
    .logo-section img { height: 50px; }
    .logo-text h1 { font-size: 1.15rem; }
    .contact-info { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 100px 1rem 2rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-description { font-size: 1rem; }
    .hero-features { flex-direction: column; gap: 1.25rem; }
    .hero-stats { gap: 2rem; }
    .stat-number { font-size: 2.25rem; }
    .login-form-container { padding: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .features-grid, .steps-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { flex-direction: column; gap: 1.25rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-header h2 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
    .stat-number { font-size: 2rem; }
    .role-tabs { padding: 0.75rem; gap: 0.5rem; }
    .role-icon { width: 45px; height: 45px; font-size: 1.1rem; }
    .role-label { font-size: 0.8rem; }
    .login-form-container { padding: 1.5rem; }
    .login-header h2 { font-size: 1.35rem; }
    .form-input { padding: 0.9rem 1rem 0.9rem 3rem; }
    .otp-container { gap: 0.6rem; }
    .otp-input { width: 48px; height: 54px; font-size: 1.4rem; }
    .modal { max-width: 95%; }
    .modal-body { padding: 1.5rem; }
}
