/* FormShield Edge-to-Edge Light Dashboard */
:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --div: #E5E7EB;
  --text: #111827;
  --muted: #6B7280;
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-border: #1E40AF;
  --success: #16A34A;
  --success-hover: #15803D;
  --danger: #DC2626;
  --warn-bg: #FEF3C7;
  --warn-border: #FDE68A;
  --warn-text: #92400E;
}

/* FormShield Badge Styles */
.formshield-protected-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
}

.formshield-badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.formshield-badge-main {
  font-weight: 600;
  line-height: 1.3;
}

.formshield-badge-sub {
  font-size: 11px;
  opacity: 0.9;
  line-height: 1.2;
}

/* Badge positioning for different form types */
.wpcf7 .formshield-protected-badge {
  margin: 10px 0;
  text-align: center;
}

.comment-form .formshield-protected-badge {
  margin: 15px 0;
  text-align: center;
}

/* Responsive badge */
@media (max-width: 768px) {
  .formshield-protected-badge {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .formshield-badge-sub {
    font-size: 10px;
  }
}
/* Base styles */
body {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
}
.plugin-dashboard {
  background: var(--bg);
  min-height: 100vh;
}
.dashboard-header {
  background: var(--surface);
  border-bottom: 1px solid var(--div);
  padding: 24px;
  margin-bottom: 0;
}
.dashboard-header h1 {
  font-size: 22px;
    font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--text);
}
.dashboard-header .subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
/* Sections */
section {
  background: var(--surface);
  border-bottom: 1px solid var(--div);
  padding: 20px 24px;
  margin: 0;
}
section:last-child {
  border-bottom: none;
}
section h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--text);
}
/* Protection Summary Grid */
    .protection-summary {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1024px) {
    .protection-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Protection Status */
.protection-status {
    display: flex;
    flex-direction: column;
  gap: 16px;
}
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--div);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar span {
  display: block;
  height: 100%;
  background: var(--success);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.value {
  font-size: 24px;
    font-weight: 700;
  color: var(--success);
}
.value .small {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.meta {
    display: flex;
    gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.meta span {
  background: var(--bg);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--div);
}
/* Blocked Stats */
.blocked-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.blocked-stats > div {
  background: var(--surface);
  border: 1px solid var(--div);
    border-radius: 8px;
  padding: 12px;
    text-align: center;
}
.blocked-stats label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blocked-stats strong {
  display: block;
  font-size: 18px;
    font-weight: 600;
  color: var(--text);
}
/* Actions */
.actions {
    display: flex;
    flex-direction: column;
  gap: 12px;
}
.btn-primary,
.btn-secondary,
.btn-success {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary-border);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--div);
  color: var(--text);
}
.btn-secondary:hover {
  background: #F3F4F6;
  border-color: var(--muted);
}
.btn-success {
  background: var(--success);
  border-color: #10B981;
    color: white;
}
.btn-success:hover {
  background: var(--success-hover);
  border-color: var(--success-hover);
}
.note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
/* Forms Table */
.forms-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--div);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}
.forms-table thead {
  background: #F3F4F6;
}
.forms-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--div);
}
.forms-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--div);
  vertical-align: middle;
}
.forms-table tbody tr:hover {
  background: var(--bg);
}
/* Table Elements */
.enabled {
  color: #2563EB;
  font-weight: 500;
}
.enabled::before {
  content: "● ";
  color: #2563EB;
}
.tag {
    display: inline-block;
  background: var(--bg);
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--div);
  text-transform: lowercase;
}
/* Table Footer */
.table-footer {
    display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0 0;
  margin-top: 16px;
  border-top: 1px solid var(--div);
}
.items {
  font-size: 14px;
  color: var(--muted);
}
/* Analytics Grid */
.analytics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.analytics > div {
  background: var(--surface);
  border: 1px solid var(--div);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}
.analytics label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.analytics strong {
  display: block;
  font-size: 24px;
    font-weight: 700;
  color: var(--text);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .dashboard-header,
  section {
    padding: 16px;
  }
  
  .protection-summary {
    gap: 16px;
  }
  
  .blocked-stats {
    grid-template-columns: 1fr;
  }
  
  .analytics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .forms-table {
    font-size: 13px;
  }
  
  .forms-table th,
  .forms-table td {
    padding: 8px 12px;
  }
}
/* Keep existing toggle switch styles for functionality */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
}
input:checked + .slider {
  background-color: #2563EB;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
/* Form toggle wrapper */
.formshield-toggle-wrapper {
    display: flex;
    align-items: center;
  gap: 8px;
}
.toggle-status {
    font-size: 12px;
    font-weight: 500;
}
.toggle-status.enabled {
  color: #2563EB;
}
.toggle-status.disabled {
  color: var(--muted);
}
/* Scan results styling */
#scan-results {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--div);
  border-radius: 8px;
}
.scan-status {
  font-weight: 600;
  margin-bottom: 8px;
}
.scan-details {
  font-size: 14px;
  color: var(--muted);
}
.scan-detailed-results {
  margin-top: 12px;
}
.scan-form-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--div);
}
.scan-form-result:last-child {
  border-bottom: none;
}
.scan-form-result .form-name {
  font-weight: 600;
  min-width: 120px;
}
.scan-form-result .form-type {
  color: var(--muted);
  font-size: 12px;
}
.scan-form-result .form-status {
  margin-left: auto;
  padding: 4px 8px;
    border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.scan-form-result .form-status.active {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.scan-form-result .form-status.unused {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
/* ===== COMPACT SETTINGS PAGE STYLES ===== */
/* Settings Container */
.settings { 
    padding: 20px; 
}
/* Header */
.settings header { 
    background: var(--surface); 
    border: 1px solid var(--div); 
    border-radius: 10px; 
    padding: 12px 16px; 
    margin-bottom: 14px; 
}
.settings header h1 { 
    font-size: 20px; 
    margin: 0 0 2px; 
}
.settings header .subtitle { 
    font-size: 12px; 
    color: var(--muted); 
    margin: 0; 
}
/* Sections */
.settings section { 
    padding: 14px 0; 
    border-bottom: 1px solid var(--div);
    width: 100%;
}
.settings section h2 { 
    font-size: 15px; 
    margin: 0 0 16px; /* Increased margin for better spacing */
}
/* Layout grids */
.settings .grid-1 { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 16px; 
    align-items: start;
    width: 100%;
    min-width: 0; /* Prevents grid blowout */
}
.settings .grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
    align-items: start;
    width: 100%;
    min-width: 0; /* Prevents grid blowout */
}
.settings .grid-2 > .row,
.settings .grid-2 > .actions {
    grid-column: span 2;
    width: 100%;
}
.settings .grid-3 { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 16px; 
    align-items: start;
    width: 100%;
    min-width: 0; /* Prevents grid blowout */
}
.settings .grid-3 > .row,
.settings .grid-3 > .actions {
    grid-column: span 3;
    width: 100%;
}
/* Settings Columns */
.settings .settings-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--div);
    border-radius: 8px;
}
.settings .settings-column h2 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: var(--text);
}
/* Form Groups */
.settings .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    min-width: 0; /* Prevents grid blowout */
}
.settings .form-group .field-label {
    margin: 0;
    padding: 0;
}
.settings .form-group input[type="text"],
.settings .form-group select,
.settings .form-group textarea {
    min-width: 0; /* Prevents grid blowout */
    width: 100%;
    margin: 0;
    padding: 8px 12px;
}
.settings .row { 
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap; 
}
.settings .actions { 
    display: flex;
    gap: 8px; 
    flex-wrap: wrap; 
}
.settings .footer-bar { 
    display: flex;
    justify-content: space-between;
    margin-top: 10px; 
    align-items: center;
}
.settings .items { 
    font-size: 12px; 
    color: var(--muted); 
}
/* Fields */
.settings .field-label { 
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px; 
    color: var(--muted); 
    margin: 0 0 4px 0; 
}
.settings input[type="text"], 
.settings select, 
.settings textarea { 
    width: 100%; 
    background: #fff; 
    border: 1px solid var(--div); 
    border-radius: 8px; 
    padding: 8px 12px; 
    font-size: 14px;
    outline: none; 
    box-sizing: border-box; 
    margin: 0; 
}
.settings textarea { 
    min-height: 90px; 
    resize: vertical; 
}
/* Info icon + tooltip */
.settings .info { 
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    width: 16px; 
    height: 16px; 
    border-radius: 50%; 
    background: #EEF2FF; 
    color: #3730A3; 
    font-weight: 700; 
    font-size: 11px; 
    cursor: help; 
    position: relative; 
}
.settings .info[data-tip]:hover::after { 
    content: attr(data-tip); 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    bottom: 125%; 
    background: #111827; 
    color: #fff; 
    border-radius: 6px; 
    padding: 6px 8px; 
    white-space: nowrap; 
    font-size: 12px; 
    box-shadow: 0 6px 18px rgba(0,0,0,.1); 
    z-index: 10; 
}
.settings .info[data-tip]:hover::before { 
    content: ""; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    bottom: 115%; 
    border: 6px solid transparent; 
    border-top-color: #111827; 
}
/* Switches */
.settings .switch { 
    position: relative; 
    display: inline-block; 
    width: 36px; 
    height: 20px; 
}
.settings .switch input { 
    display: none; 
}
.settings .slider { 
    position: absolute; 
    cursor: pointer;
    inset: 0; 
    background: #CBD5E1; 
    border: 1px solid var(--div); 
    transition: .18s; 
    border-radius: 999px; 
}
.settings .slider:before { 
    content: ""; 
    position: absolute; 
    height: 14px; 
    width: 14px; 
    left: 2px; 
    top: 2px; 
    background: #fff;
    border-radius: 999px; 
    transition: .18s; 
    box-shadow: 0 1px 2px rgba(0,0,0,.08); 
}
.settings .switch input:checked + .slider { 
    background: rgba(37,99,235,.9); 
    border-color: #1E40AF; 
}
.settings .switch input:checked + .slider:before { 
    transform: translateX(16px); 
}
.settings .inline-label { 
    font-size: 13px; 
}
/* Buttons */
/* Settings page uses the same button styles as dashboard */
/* reCAPTCHA Comic Box */
.settings .recaptcha-comic {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    color: #374151;
}
.settings .comic-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.settings .comic-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.settings .comic-title {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.settings .comic-content {
    margin-bottom: 12px;
}
.settings .comic-content p {
    margin: 0 0 6px 0;
    font-size: 13px;
    line-height: 1.4;
}
.settings .comic-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.settings .status-badge {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.settings .eta {
    font-size: 11px;
    opacity: 0.9;
    font-style: italic;
}
/* Feature Highlight Box - For Icon CAPTCHA */
.settings .feature-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    color: #0c4a6e;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
}
.settings .feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4, #0891b2);
}
.settings .feature-highlight .comic-header {
    margin-bottom: 16px;
}
.settings .feature-highlight .comic-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}
.settings .feature-highlight .comic-title {
    font-size: 18px;
    font-weight: 700;
    color: #0c4a6e;
    text-shadow: 0 1px 2px rgba(14, 165, 233, 0.2);
}
.settings .feature-highlight .comic-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #075985;
}
.settings .feature-highlight .comic-content p strong {
    color: #0c4a6e;
    font-weight: 600;
}
.settings .feature-highlight .status-badge {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    border: none;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.settings .feature-highlight .eta {
    color: #0369a1;
    font-weight: 600;
}
/* Disabled form elements */
.settings input:disabled,
.settings select:disabled,
.settings textarea:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}
.settings .slider.disabled {
    background: #d1d5db;
    cursor: not-allowed;
    opacity: 0.6;
}
/* Coming soon static box */
.settings .coming { 
    background: #FEF3C7; 
    border: 1px dashed #FDE68A; 
    color: #92400E; 
    border-radius: 10px; 
    padding: 10px; 
    font-size: 13px;
}
/* Responsive */
@media (max-width: 900px) {
    .settings .grid-2,
    .settings .grid-3 { 
        grid-template-columns: 1fr; 
    }
}
/* ===== ABOUT PAGE STYLES ===== */
.about { 
    padding: 24px; 
    background: var(--bg); 
    color: var(--text); 
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif; 
    font-size: 14px;
    line-height: 1.5; 
}
.about h1 { 
    font-size: 22px; 
    margin: 0 0 6px; 
}
.about h2 { 
    font-size: 16px;
    margin: 0 0 10px; 
}
.about p { 
    margin: 0 0 10px; 
}
.about section { 
    padding: 18px 0; 
    border-bottom: 1px solid var(--div); 
}
.about .note { 
    font-size: 12px; 
    color: var(--muted); 
}
/* three-in-row container (wide left) */
.about-row { 
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 20px; 
    margin: 18px 0; 
}
.about-col { 
    background: var(--surface); 
    border: 1px solid var(--div); 
    border-radius: 10px; 
    padding: 14px; 
}
/* features list inside middle column */
.features { 
    display: grid; 
        grid-template-columns: 1fr;
    gap: 8px; 
}
.feature { 
    border: 1px solid var(--div); 
    border-radius: 8px;
    padding: 8px; 
    background: #fff; 
}
.feature .title { 
    font-weight: 600; 
        font-size: 13px;
    margin-bottom: 2px; 
}
.feature .descr { 
    font-size: 12px; 
    color: var(--muted); 
}
/* supported plugins chips inside right column */
.supported { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 6px; 
}
.pill { 
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--div); 
    background: #fff; 
    border-radius: 999px; 
    padding: 5px 9px; 
    font-size: 12px;
}
.check { 
    display: inline-block; 
    width: 8px; 
    height: 8px; 
    border-radius: 999px; 
    background: var(--success); 
}
.clock { 
    display: inline-block; 
    width: 8px; 
    height: 8px; 
    border-radius: 999px; 
    background: #f59e0b; 
    position: relative;
}
.clock::before {
    content: '🕐';
    position: absolute;
    top: -2px;
    left: -2px;
    font-size: 10px;
    line-height: 1;
}
.pill.coming-soon {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}
/* beta inline notice inside left column */
.beta { 
    background: var(--warn-bg); 
    border: 1px solid var(--warn-border); 
    color: var(--warn-text); 
    border-radius: 8px;
    padding: 8px 10px; 
    font-size: 13px; 
    margin-top: 8px; 
}
/* centered contact actions */
.cta { 
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center; 
}
/* Validation styles */
.validation-message {
    font-size: 12px;
    margin-top: 4px;
    padding: 4px 8px;
    border-radius: 4px;
}

.validation-message.valid {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.validation-message.invalid {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Roadmap Styles */
.roadmap {
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--div);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.roadmap-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.roadmap-item.in-progress {
  border-color: var(--success);
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.roadmap-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 16px;
  flex-shrink: 0;
}

.roadmap-item.in-progress .roadmap-number {
  background: var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.roadmap-content {
  flex: 1;
}

.roadmap-content h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.roadmap-content p {
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.5;
}

.status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status.in-progress {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.status.planned {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}

/* responsiveness */
@media (max-width: 980px) {
    .about-row { 
        grid-template-columns: 1fr; 
    }
    
    .about h2 { 
        text-align: left; 
    }
    
    .roadmap-item {
      flex-direction: column;
      text-align: center;
    }
    
    .roadmap-number {
      margin-right: 0;
      margin-bottom: 12px;
    }
}