/* ============================================
   Riverline - Credit Report Analysis
   Modern Purple/Magenta Theme
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #9C27B0;
  --primary-light: #CE93D8;
  --primary-dark: #7B1FA2;
  --primary-bg: rgba(156, 39, 176, 0.08);
  --primary-gradient: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);

  --bg-main: #f8f9fc;
  --bg-card: #ffffff;
  --bg-input: #ffffff;

  --text-primary: #1a1a2e;
  --text-secondary: #4a4a68;
  --text-muted: #8888a0;

  --border-color: #e8e8f0;
  --border-focus: #9C27B0;

  --success: #4CAF50;
  --error: #f44336;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.app-container {
  min-height: 100vh;
}

/* Page Management */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
  .info-section {
    display: none;
  }
}

/* Form Section */
.form-section {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-main);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

/* Form Card */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 480px;
}

.form-card h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.4;
}

/* Input Groups */
.input-group {
  position: relative;
  margin-bottom: 8px;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.input-group input {
  width: 100%;
  padding: 18px 18px 18px 50px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: all 0.2s ease;
  background: var(--bg-input);
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-bg);
}

.input-group input::placeholder {
  color: var(--text-muted);
}

.input-hint {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 28px;
  opacity: 0.8;
}

/* Consent Section */
.consent-section {
  margin-bottom: 28px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.consent-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.consent-text a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 18px 32px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 39, 176, 0.35);
}

.btn-primary:disabled {
  background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
  cursor: not-allowed;
}

.btn-secondary {
  padding: 14px 28px;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--primary-bg);
}

.link-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
}

.link-btn:hover {
  text-decoration: underline;
}

.link-btn:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

/* Info Section */
.info-section {
  background: linear-gradient(160deg, #faf5ff 0%, #f3e8ff 50%, #ede4ff 100%);
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-section h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 36px;
  line-height: 1.3;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.info-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* OTP Page */
.otp-info {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 15px;
}

.otp-info span {
  font-weight: 700;
  color: var(--text-primary);
}

.change-link {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 32px;
}

.change-link:hover {
  text-decoration: underline;
}

.otp-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.otp-input {
  width: 54px;
  height: 62px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  background: white;
}

.otp-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-bg);
}

.otp-input.filled {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.timer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

#otp-timer {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.timer-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

#resend-otp {
  display: block;
  margin: 0 auto 24px;
}

/* Upload Page */
.upload-info {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.upload-zone {
  border: 2px dashed var(--primary-light);
  border-radius: var(--radius-xl);
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(156, 39, 176, 0.02);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.upload-zone p {
  color: var(--text-secondary);
  margin: 20px 0 8px;
  font-size: 15px;
}

.upload-or {
  color: var(--text-muted);
  font-size: 14px;
}

.browse-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.browse-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  border: 1px solid var(--primary-light);
}

.file-preview.hidden {
  display: none;
}

#file-name {
  flex: 1;
  font-weight: 600;
  color: var(--text-primary);
}

.remove-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(244, 67, 54, 0.1);
  color: var(--error);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: rgba(244, 67, 54, 0.2);
}

/* Dashboard */
.dashboard-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-main);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: white;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

#user-mobile {
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.dashboard-content {
  flex: 1;
  padding: 48px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Score Card */
.score-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
}

.score-circle {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.score-circle svg {
  width: 100%;
  height: 100%;
}

#score-progress {
  transition: stroke-dashoffset 1s ease-out;
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#credit-score {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.score-max {
  font-size: 16px;
  color: var(--text-muted);
}

.score-info h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.score-band-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 8px;
}

.score-date {
  color: var(--text-muted);
  font-size: 14px;
}

/* Report Grid */
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.report-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.report-card.full-width {
  grid-column: span 2;
}

.report-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.summary-item {
  text-align: center;
  padding: 20px 16px;
  background: var(--bg-main);
  border-radius: var(--radius-md);
}

.summary-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.summary-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.enquiry-info {
  text-align: center;
  padding: 20px;
}

.enquiry-count {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.enquiry-info p {
  color: var(--text-secondary);
  font-size: 14px;
}

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

.factor-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-main);
  border-radius: var(--radius-md);
}

.factor-rank {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

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

.personal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-item {
  padding: 20px;
  background: var(--bg-main);
  border-radius: var(--radius-md);
}

.info-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.actions-section {
  text-align: center;
}

.dashboard-footer {
  padding: 28px 48px;
  background: white;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.dashboard-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.dashboard-footer a:hover {
  color: var(--primary);
}

.copyright {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
}

/* Toast */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.toast {
  padding: 16px 24px;
  background: var(--text-primary);
  color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 12px;
  animation: slideIn 0.3s ease;
  font-weight: 500;
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--error);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  background: var(--bg-main);
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-btn:hover {
  background: var(--primary);
  color: white;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.legal-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-bg);
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--text-primary);
}

/* Grievance Page */
.grievance-content {
  max-width: 900px;
}

.grievance-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .grievance-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  text-align: center;
}

.officer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.officer-avatar {
  width: 72px;
  height: 72px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.officer-details h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.officer-details p {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.contact-method:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.contact-method svg {
  color: var(--primary);
}

.response-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Grievance Form */
.grievance-form-section h2 {
  margin-bottom: 20px;
}

.grievance-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: all 0.2s ease;
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-bg);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Steps Section */
.steps-section {
  margin-top: 16px;
}

.steps-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .steps-list {
    grid-template-columns: 1fr;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.step-content h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CICRA Compliance Notice */
.cicra-notice {
  display: flex;
  gap: 16px;
  background: rgba(156, 39, 176, 0.08);
  border: 1px solid rgba(156, 39, 176, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 40px;
}

.cicra-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cicra-icon svg {
  stroke: white;
}

.cicra-content strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 8px;
}

.cicra-content p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Revoke Consent Button */
.revoke-btn {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #f44336;
  border-radius: var(--radius-md);
  color: #f44336;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.revoke-btn:hover {
  background: #f44336;
  color: white;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header svg {
  margin-bottom: 16px;
}

.modal-header h3 {
  font-size: 22px;
  color: var(--text-primary);
  margin: 0;
}

.modal-body {
  margin-bottom: 24px;
}

.modal-body > p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.modal-body li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}

.modal-body li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: bold;
  font-size: 18px;
}

.modal-warning {
  background: #fff3e0;
  border: 1px solid #ffb74d;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: #e65100;
}

.confirm-input-group {
  margin-top: 20px;
}

.confirm-input-group label {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.confirm-input-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
}

.confirm-input-group input:focus {
  outline: none;
  border-color: #f44336;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-actions button {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-danger {
  background: #f44336;
  color: white;
  border: none;
}

.btn-danger:hover:not(:disabled) {
  background: #d32f2f;
}

.btn-danger:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .report-grid {
    grid-template-columns: 1fr;
  }
  .report-card.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .form-section {
    padding: 32px 20px;
  }
  .form-card {
    padding: 32px 24px;
  }
  .otp-container {
    gap: 8px;
  }
  .otp-input {
    width: 44px;
    height: 52px;
    font-size: 20px;
  }
  .dashboard-content {
    padding: 24px 16px;
  }
  .dashboard-header {
    padding: 16px 20px;
  }
  .score-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .score-circle {
    width: 150px;
    height: 150px;
  }
  #credit-score {
    font-size: 36px;
  }
  .legal-header {
    padding: 16px 20px;
  }
  .legal-content {
    padding: 24px 16px;
  }
  .legal-content h1 {
    font-size: 26px;
  }
  .legal-content section {
    padding: 20px;
  }
}
