/* ============================================
   ПСИХОКОД БИЗНЕСА — Design System
   Dark Green + Yellow | Minimalist Tech
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Variables --- */
:root {
  /* Primary: Blue (Royal/Cobalt) */
  --primary-900: #1e3a8a;
  --primary-800: #1e40af;
  --primary-700: #1d4ed8;
  --primary-600: #2563eb;
  --primary-500: #3b82f6;
  /* Base Blue */
  --primary-400: #60a5fa;
  --primary-300: #93c5fd;
  --primary-200: #bfdbfe;
  --primary-100: #dbeafe;
  --primary-50: #eff6ff;

  /* Accent: Orange */
  --accent-500: #f97316;
  /* Base Orange */
  --accent-400: #fb923c;
  --accent-300: #fdba74;
  --accent-200: #fed7aa;
  --accent-100: #ffedd5;
  --accent-glow: rgba(249, 115, 22, 0.25);

  /* Neutrals (Light Theme) */
  --bg-dark: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: #ffffff;
  --bg-input: #f3f4f6;
  --border: #e5e7eb;
  --border-focus: var(--primary-500);
  --text-primary: #111827;
  /* Dark Grey */
  --text-secondary: #4b5563;
  /* Medium Grey */
  --text-muted: #9ca3af;
  /* Light Grey */

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(229, 231, 235, 0.8);
  --glass-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --glow-green: 0 0 20px rgba(37, 99, 235, 0.15);
  /* Blue glow */
  --glow-yellow: 0 0 20px rgba(249, 115, 22, 0.15);
  /* Orange glow */

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
}

/* --- Background Pattern --- */
body::before {
  content: none;
}

/* Grid overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* --- App Container --- */
#app {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  margin: 0 auto;
  padding: 40px 20px 80px;
  flex: 1 0 auto;
  width: 100%;
}

/* --- Footer --- */
.site-footer {
  flex-shrink: 0;
  background: var(--primary-900);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 160px;
  width: auto;
  transition: transform var(--transition-normal);
}

.footer-logo {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-lg);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--primary-200);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-400);
}

.footer-right {
  text-align: right;
  color: var(--primary-200);
  font-size: 13px;
  line-height: 1.6;
}

.footer-requisites h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-made-link {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-made-link:hover {
  color: var(--accent-400);
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }
}

/* --- Step Sections --- */
.step {
  display: none;
  animation: fadeIn var(--transition-slow) ease;
}

.step.active {
  display: block;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--glass-shadow);
  transition: border-color var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--primary-300);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12);
}

/* --- Logo & Header --- */
.logo-section {
  text-align: center;
  margin-bottom: 40px;
}

.logo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--glow-green);
}

.logo-title {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-800), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 14px;
  color: var(--primary-600);
  margin-top: 4px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Step Header --- */
.step-header {
  margin-bottom: 32px;
}

.step-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

/* --- Progress Bar --- */
.progress-container {
  margin-bottom: 32px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 8px;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  transform: translateY(-50%);
  z-index: 0;
}

.progress-track {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
  transform: translateY(-50%);
  transition: width var(--transition-slow);
  z-index: 1;
  box-shadow: var(--glow-yellow);
}

.progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  z-index: 2;
  position: relative;
  transition: all var(--transition-normal);
}

.progress-dot.active {
  border-color: var(--accent-500);
  color: var(--accent-500);
  box-shadow: var(--glow-yellow);
}

.progress-dot.completed {
  background: var(--primary-500);
  border-color: var(--primary-400);
  color: white;
}

.progress-label {
  display: flex;
  justify-content: space-between;
}

.progress-label span {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  width: 32px;
  white-space: nowrap;
}

.progress-label span.active {
  color: var(--accent-500);
}

/* --- Consent Page --- */
.consent-text {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.consent-text h3 {
  color: var(--text-primary);
  font-size: 16px;
  margin: 20px 0 10px;
}

.consent-text h3:first-child {
  margin-top: 0;
}

.consent-text::-webkit-scrollbar {
  width: 6px;
}

.consent-text::-webkit-scrollbar-track {
  background: transparent;
}

.consent-text::-webkit-scrollbar-thumb {
  background: var(--primary-600);
  border-radius: 3px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-bottom: 24px;
}

.checkbox-wrapper:hover {
  border-color: var(--primary-400);
  background: var(--primary-50);
}

.custom-checkbox {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
}

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

.checkbox-wrapper input[type="checkbox"]:checked+.custom-checkbox {
  background: var(--accent-500);
  border-color: var(--accent-500);
}

.checkbox-wrapper input[type="checkbox"]:checked+.custom-checkbox::after {
  content: '✓';
  color: var(--bg-dark);
  font-size: 14px;
  font-weight: 700;
}

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

/* --- Form Elements --- */
.section-card {
  margin-bottom: 24px;
  animation: slideUp var(--transition-slow) ease;
  animation-fill-mode: both;
}

.section-card:nth-child(1) {
  animation-delay: 0.05s;
}

.section-card:nth-child(2) {
  animation-delay: 0.1s;
}

.section-card:nth-child(3) {
  animation-delay: 0.15s;
}

.section-card:nth-child(4) {
  animation-delay: 0.2s;
}

.section-card:nth-child(5) {
  animation-delay: 0.25s;
}

.subsection-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-500);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.subsection-title .icon {
  font-size: 20px;
}

.question-group {
  margin-bottom: 20px;
}

.question-group:last-child {
  margin-bottom: 0;
}

.question-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.question-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary-600);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-100);
  margin-right: 8px;
  flex-shrink: 0;
}

.question-hint {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-style: italic;
}

textarea {
  width: 100%;
  min-height: 100px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  transition: all var(--transition-normal);
  outline: none;
}

textarea:focus {
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea::placeholder {
  color: var(--text-muted);
}

textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 6px;
  display: none;
}

textarea.error+.error-message {
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-300));
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
  background: var(--primary-50);
}

.btn-danger {
  background: transparent;
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.5);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.btn-group .btn {
  flex: 1;
}

.btn-group .btn {
  flex: 1;
}

.result-card {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Payment Page --- */
.payment-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.payment-amount {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 24px 0 8px;
}

.payment-description {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}

.payment-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}

.payment-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
}

.payment-feature .icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* --- Analysis Loading --- */
.analysis-loading {
  text-align: center;
  padding: 60px 20px;
}

.loader {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  position: relative;
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary-400);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loader-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  border-top-color: var(--accent-500);
  animation-duration: 0.8s;
  animation-direction: reverse;
}

.loader-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
  border-top-color: var(--primary-200);
  animation-duration: 1.5s;
}

.loader-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.loader-subtext {
  font-size: 14px;
  color: var(--text-muted);
  animation: pulse 2s ease-in-out infinite;
}

.loader-warning {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--accent-300);
  background: rgba(240, 200, 64, 0.1);
  border: 1px solid rgba(240, 200, 64, 0.2);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: inline-block;
  max-width: 460px;
  animation: pulse-warning 3s infinite ease-in-out;
}

@keyframes pulse-warning {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(240, 200, 64, 0);
  }

  50% {
    box-shadow: 0 0 10px rgba(240, 200, 64, 0.1);
  }
}

/* --- Results Page --- */
.result-content {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-height: 500px;
  overflow-y: auto;
  white-space: normal;
}

.result-content h1,
.result-content h2,
.result-content h3 {
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.result-content h1 {
  font-size: 22px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  color: var(--accent-400);
}

.result-content h2 {
  font-size: 18px;
  margin-top: 32px;
  color: var(--primary-700);
}

.result-content h3 {
  font-size: 16px;
  font-weight: 600;
}

.result-content p {
  margin-bottom: 12px;
}

.result-content ul,
.result-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.result-content li {
  margin-bottom: 6px;
}

.result-content strong {
  color: var(--text-primary);
  /* bright white for contrast */
  font-weight: 600;
}

.result-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
  opacity: 0.3;
}

.result-content::-webkit-scrollbar {
  width: 6px;
}

.result-content::-webkit-scrollbar-track {
  background: transparent;
}

.result-content::-webkit-scrollbar-thumb {
  background: var(--primary-600);
  border-radius: 3px;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-group {
  display: flex;
  gap: 12px;
}

.download-group .btn {
  flex: 1;
}

/* --- Status Badge --- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.success {
  background: rgba(45, 122, 82, 0.15);
  color: var(--primary-300);
  border: 1px solid rgba(45, 122, 82, 0.3);
}

.disclaimer-text {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
  font-style: italic;
}

.legal-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
  opacity: 0.7;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  #app {
    padding: 24px 16px;
  }

  .glass-card {
    padding: 24px 20px;
  }

  .logo-title {
    font-size: 22px;
  }

  .step-header h2 {
    font-size: 20px;
  }

  .payment-amount {
    font-size: 36px;
  }

  .btn-group {
    flex-direction: column;
  }

  .download-group {
    flex-direction: column;
  }

  .progress-label span {
    font-size: 9px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .footer-center {
    order: -1;
    margin-bottom: 8px;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

.icon-svg {
  width: 1.2em;
  height: 1.2em;
  vertical-align: text-bottom;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
}

/* --- Intro Page --- */
.intro-card {
  max-width: 800px !important;
  margin: 0 auto;
}

.intro-content {
  padding: 40px !important;
}

.intro-title {
  font-size: 32px;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.intro-block {
  margin-bottom: 32px;
}

.intro-block h3 {
  color: var(--accent-400);
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.intro-list {
  list-style: none;
  padding: 0;
}

.intro-list li {
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.intro-list li::before {
  content: "•";
  color: var(--accent-500);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 18px;
}

.highlight-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin: 32px 0;
  padding: 16px;
  border-left: 4px solid var(--accent-500);
  background: rgba(255, 255, 255, 0.03);
}

.info-block {
  background: rgba(45, 122, 82, 0.1);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 122, 82, 0.3);
}

.warning-block {
  background: rgba(240, 200, 64, 0.05);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--accent-500);
}

.secure-block {
  text-align: center;
  opacity: 0.8;
  font-size: 0.9em;
  margin-top: 40px;
}

.intro-action {
  margin-top: 40px;
  text-align: center;
}

.final-cta {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.pulse-btn {
  font-size: 18px;
  padding: 16px 32px;
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 200, 64, 0.7);
  }

  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(240, 200, 64, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 200, 64, 0);
  }
}

/* --- Brief Intro Box --- */
.brief-intro-box {
  background: var(--primary-100);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  border-left: 4px solid var(--accent-500);
}

.brief-intro-box h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--primary-800);
  font-size: 18px;
}

.brief-intro-box ul {
  padding-left: 20px;
  margin: 0;
}

.brief-intro-box li {
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.5;
}