:root{
  /* Backgrounds */
  --bg-primary:#f4f6f8;
  --bg-secondary:#eef2f6;

  /* Cards */
  --card-bg:#ffffff;

  /* Text */
  --text-primary:#14202b;
  --text-secondary:#475569;

  /* Accent */
  --accent:#2f5d90;

  /* Borders */
  --border:#d7dee7;

  /* Compatibility aliases */
  --bg:var(--bg-primary);
  --bg-soft:var(--bg-secondary);
  --surface:var(--card-bg);
  --surface-alt:#f8fafc;
  --surface-muted:#eef4f8;
  --surface-elevated:var(--card-bg);
  --border-strong:#9fb0c3;
  --border-soft:rgba(20,32,43,0.08);
  --text:var(--text-primary);
  --text-soft:var(--text-secondary);
  --text-muted:#64748b;
  --heading:var(--text-primary);
  --accent-strong:#24486f;
  --accent-soft:#eaf2fb;
  --success:#2f855a;
  --success-bg:#edf7f1;
  --warning:#b8822f;
  --warning-bg:#fbf3e4;
  --danger:#c15b5b;
  --danger-bg:#faeaea;
  --info:#5c8fc9;
  --info-bg:#eaf2fb;
  --white:#ffffff;
  --paper:#ffffff;
  --paper-soft:#f7f9fb;
  --paper-border:#d7dee7;
  --paper-text:#14202b;
  --paper-muted:#64748b;

  /* Typography */
  --font-sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif;
  --fs-xs:12px;
  --fs-sm:14px;
  --fs-md:16px;
  --fs-lg:18px;
  --fs-xl:22px;
  --fs-2xl:30px;
  --fs-3xl:40px;

  --lh-tight:1.15;
  --lh-base:1.6;
  --lh-loose:1.75;

  /* Radius */
  --radius-xs:8px;
  --radius-sm:12px;
  --radius-md:16px;
  --radius-lg:20px;
  --radius-xl:24px;

  /* Spacing */
  --space-1:4px;
  --space-2:8px;
  --space-3:12px;
  --space-4:16px;
  --space-5:20px;
  --space-6:24px;
  --space-7:32px;
  --space-8:40px;
  --space-9:48px;
  --space-10:64px;

  /* Shadows */
  --shadow-sm:0 4px 12px rgba(15,23,42,0.05);
  --shadow-md:0 8px 22px rgba(15,23,42,0.08);
  --shadow-lg:0 16px 36px rgba(15,23,42,0.12);

  /* Layout */
  --container:1180px;
  --content:920px;
}

/* Reset / base */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:var(--font-sans);
  font-size:var(--fs-md);
  line-height:var(--lh-base);
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(58,123,213,0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

img{
  max-width:100%;
  display:block;
}

button,
input,
select,
textarea{
  font:inherit;
}

a{
  color:var(--accent-strong);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.hidden{
  display:none !important;
}

.no-print{}

.center{
  text-align:center;
}

.right{
  text-align:right;
}

.w-full{
  width:100%;
}

.mb-0{ margin-bottom:0 !important; }
.mt-0{ margin-top:0 !important; }

/* Layout shells */
.page-shell{
  width:min(100%, var(--container));
  margin:0 auto;
  padding-inline:24px;
}

.content-shell{
  width:min(100%, var(--content));
  margin:0 auto;
}

.section{
  padding:var(--space-9) 0;
  margin-bottom:28px;
}

.row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:var(--space-4);
}

.grid{
  display:grid;
  gap:var(--space-5);
}

.grid-2{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.grid-3{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.stack-xs > * + *{ margin-top:var(--space-2); }
.stack-sm > * + *{ margin-top:var(--space-3); }
.stack-md > * + *{ margin-top:var(--space-4); }
.stack-lg > * + *{ margin-top:var(--space-6); }
.stack-xl > * + *{ margin-top:var(--space-8); }

/* Typography */
.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:#dfeafb;
  border:1px solid #9fb8da;
  color:#24486f;
  font-weight:700;
  letter-spacing:.02em;
  gap:8px;
  text-transform:uppercase;
}

.h1,
h1{
  margin:0;
  color:var(--heading);
  font-size:clamp(30px,4vw,46px);
  line-height:1.05;
  letter-spacing:-0.02em;
}

.h2,
h2{
  margin:0;
  color:var(--heading);
  font-size:clamp(24px,3vw,34px);
  line-height:1.12;
  letter-spacing:-0.02em;
}

.h3,
h3{
  margin:0;
  color:var(--heading);
  font-size:20px;
  line-height:1.2;
}

.h4,
h4{
  margin:0;
  color:var(--heading);
  font-size:16px;
  line-height:1.25;
}

.lead{
  font-size:var(--fs-lg);
  line-height:1.7;
  color:var(--text-soft);
  max-width:70ch;
}

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

.small{
  font-size:var(--fs-sm);
}

.tiny{
  font-size:var(--fs-xs);
}

.strong{
  font-weight:700;
}

/* Utilities */
.hr{
  height:1px;
  background:var(--border);
  margin:0 24px 24px;
}

/* Cards / surfaces */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow-sm);
}

.card-pad{
  padding:28px;
}

.card-hero{
  background:var(--card-bg);
  border-color:var(--border-strong);
  box-shadow:var(--shadow-md);
}

.card-soft{
  background:var(--card-bg);
}

.card-outline-strong{
  border-color:var(--border-strong);
}

/* Buttons */
.btn{
  appearance:none;
  border:1px solid transparent;
  border-radius:6px;
  min-height:46px;
  padding:12px 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  transition:all 0.15s ease;
  text-decoration:none;
  font-weight:600;
  line-height:1;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 12px rgba(0,0,0,0.12);
  text-decoration:none;
}

.btn:active{
  transform:translateY(0);
}

.btn:disabled{
  opacity:0.55;
  cursor:not-allowed;
  transform:none;
}

.btn-primary{
  background:var(--accent);
  color:#ffffff;
  border-color:var(--accent);
  box-shadow:var(--shadow-sm);
}

.btn-primary:hover{
  background:var(--accent-strong);
  border-color:var(--accent-strong);
}

.btn-secondary{
  background:#ffffff;
  color:var(--text-primary);
  border-color:var(--border);
}

.btn-secondary:hover{
  background:#f7f9fb;
}

.btn-ghost{
  background:#eef4fb;
  color:var(--accent-strong);
  border-color:#d6e3f5;
}

.btn-ghost:hover{
  background:#e3edf9;
}

/* Form controls */
.field{
  display:grid;
  gap:8px;
}

.label{
  font-size:var(--fs-sm);
  font-weight:600;
  color:var(--text-primary);
}

.input,
.select,
.textarea{
  width:100%;
  min-height:46px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#ffffff;
  color:var(--text-primary);
  transition:0.18s ease;
}

.textarea{
  min-height:120px;
  resize:vertical;
}

.input::placeholder,
.textarea::placeholder{
  color:#8b97a3;
}

.input:focus,
.select:focus,
.textarea:focus{
  outline:none;
  border-color:var(--accent-strong);
  box-shadow:0 0 0 4px rgba(58,123,213,0.12);
}

/* Topbar / hero */
.topbar{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(10px);
  background:rgba(244,246,248,0.92);
  border-bottom:1px solid var(--border);
}

.topbar-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-4);
}

.brand-block{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-home{
  color:inherit;
  text-decoration:none;
  transition:opacity 160ms ease;
}

.brand-home:hover{
  opacity:0.92;
  text-decoration:none;
}

.brand-home:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:4px;
  border-radius:var(--radius-sm);
}

.brand-mark{
  width:56px;
  height:56px;
  min-width:56px;
  min-height:56px;
  padding:6px;
  border-radius:12px;
  background:linear-gradient(180deg, #edf2f8 0%, #dfe7f2 100%);
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 56px;
}

.brand-mark img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.brand-copy{
  display:grid;
  gap:2px;
}

.brand-title{
  font-size:15px;
  font-weight:700;
  color:var(--heading);
}

.brand-sub{
  font-size:12px;
  color:var(--text-muted);
}

.topbar-actions{
  justify-content:flex-end;
}

.hero{
  padding:var(--space-10) 0 var(--space-9);
}

.hero-panel{
  display:grid;
  grid-template-columns:1.25fr 0.75fr;
  gap:var(--space-6);
  align-items:start;
  padding:var(--space-7);
}

.hero-main{
  min-width:0;
}

.hero-side{
  min-width:0;
}

/* Assessment layout */
.assessment-shell{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:var(--space-6);
  align-items:start;
}

.assessment-sidebar{
  position:sticky;
  top:92px;
}

.assessment-main{
  min-width:0;
}

.assessment-actions{
  align-items:center;
}

/* Progress UI */
.progress-card{
  overflow:hidden;
}

.progress-bar-wrap{
  width:100%;
  height:10px;
  border-radius:999px;
  overflow:hidden;
  background:#e9eef3;
  border:1px solid var(--border);
}

.progress-bar{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #3a7bd5 0%, #7eadf0 100%);
  transition:width 0.3s ease;
}

.progress-meta{
  gap:10px;
}

.progress-steps{
  display:grid;
  gap:10px;
}

.progress-step{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  color:var(--text-secondary);
  background:var(--surface);
  transition:.18s ease;
}

.progress-step.active{
  background:var(--accent-soft);
  border-color:var(--accent);
  color:var(--text-primary);
  box-shadow:inset 0 0 0 1px rgba(47,93,144,0.12);
}

.progress-step.active .step-title{
  color:var(--accent-strong);
}

.progress-step.done{
  background:var(--success-bg);
  border-color:#b7d8c1;
  color:#1f5c3c;
}
.step-dot{
  width:24px;
  height:24px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:11px;
  font-weight:700;
  flex:0 0 auto;
  background:var(--surface-alt);
  color:var(--text-secondary);
  border:1px solid var(--border);
}

.progress-step.active .step-dot{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.progress-step.done .step-dot{
  background:var(--success);
  color:#fff;
  border-color:var(--success);
}

/* Question blocks */
.question-card{
  padding:var(--space-6);
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow-sm);
}

.question-group{
  display:grid;
  gap:18px;
}

.question{
  display:grid;
  gap:10px;
  padding:16px;
  border:1px solid #c7d3df;
  border-left:4px solid var(--accent);
  border-radius:14px;
  background:#ffffff;
}

.question:last-child{
  padding-bottom:16px;
}

.question-title{
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:2px;
}

.question-help{
  color:var(--text-muted);
  font-size:var(--fs-sm);
  padding-bottom:6px;
}

.option-list{
  display:grid;
  gap:10px;
}

.option-tile{
  padding:14px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--surface);
  color:var(--text-primary);
  cursor:pointer;
  transition:.18s ease;
  text-align:left;
}

.option-tile:hover{
  border-color:var(--accent);
  background:#f4f8fd;
}

.option-tile.selected{
  background:var(--accent-soft);
  border-color:var(--accent);
  box-shadow:inset 0 0 0 1px rgba(47,93,144,0.10);
}

/* Report components */
.report-shell{
  display:grid;
  gap:var(--space-6);
}

.report-header{
  display:grid;
  gap:16px;
}

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

.report-panel{
  display:block;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow-sm);
  padding:24px;
}

.main-summary-shell{
  display:grid;
  gap:var(--space-5);
}

.main-summary-header{
  display:grid;
  gap:18px;
}

.main-summary-identity-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.main-summary-card-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:var(--space-4);
}

.main-summary-split{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:var(--space-5);
}

.summary-card-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:var(--space-4);
}

.summary-card{
  padding:20px;
  border-radius:18px;
  border:1px solid var(--border);
  background:#ffffff;
  box-shadow:var(--shadow-sm);
}

.summary-card-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--text-muted);
}

.summary-card-value{
  margin-top:8px;
  font-size:24px;
  font-weight:800;
  line-height:1.2;
  color:var(--heading);
}

.summary-card-note{
  margin-top:10px;
  font-size:13px;
  color:var(--text-soft);
}

.summary-sheet{
  background:linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
  color:var(--paper-text);
  border:1px solid var(--paper-border);
  border-radius:24px;
  box-shadow:var(--shadow-md);
  padding:32px;
  position:relative;
  overflow:hidden;
}

.summary-sheet::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:8px;
  background:linear-gradient(90deg, #8095aa 0%, #c3d0dd 100%);
}

.summary-sheet .eyebrow{
  background:rgba(27,36,48,0.06);
  border-color:rgba(27,36,48,0.10);
  color:#33465a;
}

.summary-sheet h2,
.summary-sheet h3,
.summary-sheet h4{
  color:var(--paper-text);
}

.summary-sheet .muted,
.summary-sheet .small{
  color:var(--paper-muted);
}

.summary-sheet-grid{
  display:grid;
  grid-template-columns:1fr 260px;
  gap:24px;
  align-items:start;
}

.summary-sheet-side{
  display:grid;
  gap:16px;
}

.report-field-grid{
  display:grid;
  gap:12px;
}

.report-field{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(27,36,48,0.10);
  background:rgba(255,255,255,0.50);
}

.report-field-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:#607285;
}

.report-field-value{
  margin-top:6px;
  font-weight:700;
  color:#223244;
}

.summary-badge-card{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,0.64);
  border:1px solid rgba(27,36,48,0.10);
  text-align:center;
}

.summary-badge-title{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:#607285;
}

.summary-badge-value{
  margin-top:10px;
  font-size:28px;
  font-weight:800;
  color:#223244;
}

/* Consultant detail blocks */
.consultant-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:var(--space-5);
}

.signal-table{
  display:grid;
  gap:10px;
  background:#ffffff;
  border:1px solid #c7d3df;
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow-sm);
}

.signal-grid,
.signal-column,
.signal-list{
  background:#ffffff;
  border:1px solid #c7d3df;
  border-radius:16px;
  padding:20px;
}

.signal-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #d7dee7;
  background:#f8fafc;
}

.signal-label{
  font-size:14px;
  color:var(--text-soft);
}

.signal-value{
  font-weight:700;
  color:var(--text-primary);
}

/* Lists / callouts / chips */
.list-panel{
  display:grid;
  gap:12px;
}

.list-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#ffffff;
}

.list-item.note{
  background: #F8FAFC;
}

.list-item.constraint{
  background:#fff7f7;
  border-color:#efcccc;
}

.list-item.action{
  background:#f2f8fc;
  border-color:#cfe0ec;
}

.list-item.caution{
  background:#fff8ed;
  border-color:#ead7b6;
}

.list-icon{
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
  flex:0 0 auto;
  background:#edf2f6;
  color:var(--accent-strong);
  border:1px solid var(--border);
}

.list-item.constraint .list-icon{
  background:var(--danger-bg);
  color:#f2bbbb;
}

.list-item.action .list-icon{
  background:var(--info-bg);
  color:#c7d9eb;
}

.list-item.caution .list-icon{
  background:var(--warning-bg);
  color:#f1d1a0;
}

.callout{
  border:1px solid var(--border);
  border-left:5px solid var(--accent);
  background: #ffffff;
  border-radius:14px;
  padding:16px 16px 16px 18px;
}

.callout-info{
  background:var(--info-bg);
  border-color:#35526b;
  border-left-color:var(--info);
}

.callout-success{
  background:var(--success-bg);
  border-color:#285540;
  border-left-color:var(--success);
}

.callout-warning{
  background:var(--warning-bg);
  border-color:#65481e;
  border-left-color:var(--warning);
}

.callout-danger{
  background:var(--danger-bg);
  border-color:#673131;
  border-left-color:var(--danger);
}

.band{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:13px;
  font-weight:700;
}

.band-exploratory{
  color:#f1d1a0;
  background:#302313;
  border-color:#5a4422;
}

.band-emerging{
  color:#2f5f9d;
  background:#edf4fd;
  border-color:#bfd3f0;
}

.band-structured{
  color:#c7e8d8;
  background:#17342a;
  border-color:#2b654d;
}

.band-progression{
  color:#ffffff;
  background:#a7c4df;
  border-color:transparent;
}

.band-neutral{
  color:var(--text-secondary);
  background:#eef2f5;
  border-color:#d6dde3;
}

.severity-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.severity-high{
  background:#3b1e1e;
  color:#efc1c1;
  border:1px solid #6c3434;
}

.severity-medium{
  background:#372914;
  color:#f1d3a5;
  border:1px solid #6c5222;
}

.severity-low{
  background:#17342a;
  color:#c8e9d9;
  border:1px solid #2f624c;
}

/* Modal */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(31,41,51,0.24);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:100;
}

.modal-overlay.open{
  display:flex;
}

.modal{
  width:min(100%, 760px);
  max-height:min(92vh, 880px);
  overflow:auto;
  background:#ffffff;
  border:1px solid var(--border-strong);
  border-radius:24px;
  box-shadow:var(--shadow-lg);
}

.modal-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:24px 24px 18px;
}

.modal-body{
  padding:0 24px 24px;
}

/* Responsive */
@media (max-width: 1100px){
  .hero-panel,
  .assessment-shell,
  .summary-sheet-grid{
    grid-template-columns:1fr;
  }

  .main-summary-card-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .assessment-sidebar{
    position:static;
  }

  .summary-card-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 760px){
  .page-shell{
  padding-inline:16px;
}
  .section{
    padding:var(--space-8) 0;
    margin-bottom:24px;
  }

  .hero{
    padding:var(--space-9) 0 var(--space-8);
  }

  .hero-panel{
    padding:20px;
  }

  .card-pad,
  .question-card{
    padding:24px;
  }

  .summary-card-grid,
  .main-summary-identity-grid,
  .main-summary-card-grid,
  .main-summary-split,
  .consultant-grid,
  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .modal-top,
  .modal-body{
    padding-left:18px;
    padding-right:18px;
  }

  .hr{
    margin-left:18px;
    margin-right:18px;
  }

  .topbar-inner{
    min-height:64px;
  }

  .report-actions{
    gap:10px;
  }
}

/* Print */
@media print{
  body{
    background:#ffffff !important;
    color:#111827 !important;
  }

  @page{
    margin:14mm;
  }

  .topbar,
  .report-actions,
  .modal-overlay,
  .no-print{
    display:none !important;
  }

  .section{
    padding:0;
    margin:0;
  }

  .report-shell,
  .main-summary-shell,
  .main-summary-header{
    gap:16px !important;
  }

  .main-summary-identity-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:10px !important;
  }

  .main-summary-card-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:12px !important;
  }

  .main-summary-split{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .report-panel,
  .card,
  .summary-sheet,
  .summary-card,
  .report-field,
  .callout,
  .list-item,
  .signal-row{
    break-inside:avoid;
    page-break-inside:avoid;
  }

  #mainSummaryView{
    break-before:auto;
    page-break-before:auto;
  }

  .card,
  .summary-sheet{
    background: #ffffff !important;
    color:#111827 !important;
    border:1px solid #cfd8e3 !important;
    box-shadow:none !important;
  }

  .summary-sheet::before{
    background:#9fb3c8 !important;
  }

  .summary-sheet .eyebrow,
  .eyebrow{
    background:#f3f6f9 !important;
    color:#33465a !important;
    border:1px solid #d6dee6 !important;
  }

  h1,h2,h3,h4,.summary-card-value,.report-field-value,.signal-value{
    color:#111827 !important;
  }

  .muted,
  .small,
  .summary-sheet .muted,
  .summary-sheet .small{
    color:#526274 !important;
  }

  .summary-card,
  .list-item,
  .signal-row,
  .report-field,
  .callout{
    background:#ffffff !important;
    color:#111827 !important;
    border:1px solid #d6dee6 !important;
  }

  .list-icon,
  .step-dot{
    background:#f3f6f9 !important;
    color:#33465a !important;
    border:1px solid #d6dee6 !important;
  }

  a{
    color:inherit !important;
    text-decoration:none !important;
  }

  #mainSummaryView .card,
  #mainSummaryView .summary-card{
    margin-bottom:0 !important;
  }

  .hidden{
    display:none !important;
  }
}
