:root {
  --navy: #0D1B3E;
  --navy-m: #0A3E7A;
  --accent: #0b9eda;
  --accent-l: #E8F1FC;
  --accent-d: #0D5EAB;
  --green: #0A7C4A;
  --green-l: #ECFDF5;
  --amber: #D97706;
  --amber-l: #FEF3C7;
  --red: #DC2626;
  --red-l: #FEF2F2;
  --text: #0D0D0D;
  --text-2: #1A1A2E;
  --text-3: #4A5568;
  --border: #E2E8F0;
  --bg-off: #F8FAFD;
  --white: #FFFFFF;
}



html {
  scroll-behavior: smooth;
}



a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



/* HERO */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(27, 127, 225, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 127, 225, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}


@media (max-width: 1023px) {
.hero-inner {
  grid-template-columns: 1fr;
}
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(27, 127, 225, 0.35);
    color: #0d9eda;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75)
  }
}

.hero h2 {
  font-size: clamp(38px, 4.5vw, 30px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero h2 span {
  color: var(--accent);
}

.hero-lead {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(27, 127, 225, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 127, 225, 0.4);
  text-decoration: none;
  color: white;
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-l);
  text-decoration: none;
}


/* hero-proof */
.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-pill {
  background: #174276;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-num {
  font-size: 22px;
  font-weight: 800;
  color: #00d4ff;

}

.proof-label {
  font-size: 12px;
    color: #fff;
  line-height: 1.3;
}

/* HERO VISUAL */
.hero-score-preview {
  background: var(--navy);
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.hero-score-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(27, 127, 225, 0.15), transparent 70%);
}

.hsp-inner {
  position: relative;
  z-index: 1;
}

.hsp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 16px;
}

.hsp-score-ring {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hsp-ring-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.hsp-ring-wrap svg {
  transform: rotate(-90deg);
}

.hsp-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hsp-ring-big {
  
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hsp-ring-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.hsp-right-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 4px;
}

.hsp-rating {
  
  font-size: 18px;
  font-weight: 700;
  color: #FCD34D;
}

.hsp-dims {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hsp-dim {
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  gap: 8px;
  align-items: center;
}

.hsp-dim-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.80);
}

.hsp-dim-bar-bg {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.hsp-dim-bar {
  height: 5px;
  border-radius: 3px;
}

.hsp-dim-score {
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.dim-red .hsp-dim-bar {
  background: #EF4444;
}

.dim-amber .hsp-dim-bar {
  background: #F59E0B;
}

.dim-green .hsp-dim-bar {
  background: #22C55E;
}

.dim-red .hsp-dim-score {
  color: #FCA5A5;
}

.dim-amber .hsp-dim-score {
  color: #FCD34D;
}

.dim-green .hsp-dim-score {
  color: #86EFAC;
}

.hsp-cta {
  margin-top: 16px;
  background: var(--accent);
  color: white;
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}

.hsp-cta:hover {
  background: var(--accent-d);
  text-decoration: none;
  color: white;
}

/* SECTIONS */
.section {
  padding: 88px 20px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-off);
}

.section-dark {
  background: var(--navy);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: block;
}

.eyebrow-center {
  justify-content: center;
}

.section-title {
    font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);

  margin-bottom: 16px;
}

.section-dark .section-title {
  color: white;
}

.section-lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 900px;
  line-height: 1.7;
  font-weight: 400;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  margin-bottom: 56px;
}

.section-header-center {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 56px;
}

.section-lead-mt {
  margin-top: 14px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ─── CALCULATOR ─── */
.calc-wrap {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(13, 27, 62, 0.08);
}

.calc-header {
  background: #161f2d;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.calc-header-left h2 {
  font-size: 22px;
  font-weight: 800;
  color: white;

  margin-bottom: 6px;
}

.calc-header-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
}

.calc-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.calc-progress-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 500;
}

.calc-progress-bar-bg {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.60);
  border-radius: 2px;
}

.calc-progress-bar {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1B7FE1, #00D4FF);
  transition: width 0.4s ease;
}

.calc-dim-tabs {
  display: flex;
  gap: 10px;
  padding: 0 40px;
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.calc-dim-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: default;
  min-width: 80px;
}

.calc-dim-tab svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

.calc-dim-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.calc-dim-tab.done {
  color: var(--green);
}

.calc-dim-tab.done svg {
  stroke: var(--green);
}

.calc-body {
  padding: 40px;
}


@media (max-width: 1023px) {
.calc-body {
  padding: 20px;
}
}


.calc-question-area {
  min-height: 280px;
}

.calc-q-block {
  display: none;
}

.calc-q-block.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-q-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.calc-q-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;

  line-height: 1.35;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 15px;
  color: var(--text-2);
  font-weight: 500;
}

.calc-option:hover {
  border-color: var(--accent);
  background: var(--accent-l);
}

.calc-option.selected {
  border-color: var(--accent);
  background: var(--accent-l);
  color: var(--navy);
  font-weight: 600;
}

.calc-option.selected .calc-opt-radio {
  background: var(--accent);
  border-color: var(--accent);
}

.calc-option.selected .calc-opt-radio::after {
  display: block;
}

.calc-opt-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #bfc9db;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}

.calc-opt-radio::after {
  content: '';
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.calc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}


@media (max-width: 1023px) {
.calc-nav {
  flex-wrap: wrap !important;
  flex-direction: column;
  gap: 20px;

}
}


.calc-nav-left {
  font-size: 13px;
  color: var(--text-3);
}

.calc-nav-right {
  display: flex;
  gap: 10px;
}

.btn-calc-back {
  border: 1px solid var(--border);
  color: var(--text-3);
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-calc-back:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-calc-next {
  background: var(--accent);
  color: white;
  padding: 10px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(27, 127, 225, 0.3);
}

.btn-calc-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 127, 225, 0.4);
}

.btn-calc-next:disabled {
  opacity: 0.45;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

/* Sidebar score meter */
.calc-sidebar {
  background: var(--bg-off);
  border-left: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-score-meter {
  text-align: center;
}

.calc-score-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.calc-score-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
}

.calc-score-circle svg {
  transform: rotate(-90deg);
}

.calc-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calc-score-big {
  
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  transition: all 0.4s;
}

.calc-score-outof {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}

.calc-rating-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.rating-great {
  background: var(--green-l);
  color: var(--green);
}

.rating-good {
  background: #DBEAFE;
  color: #1D4ED8;
}

.rating-fair {
  background: var(--amber-l);
  color: var(--amber);
}

.rating-poor {
  background: var(--red-l);
  color: var(--red);
}

.calc-dim-scores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-dim-score-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-dim-score-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.calc-dim-score-name {
  color: var(--text-2);
  font-weight: 500;
}

.calc-dim-score-val {
  font-weight: 700;
}

.calc-dim-bar-bg {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
}

.calc-dim-fill {
  height: 5px;
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* RESULTS PANEL */
.calc-results {
  display: none;
}

.calc-results.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.results-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.results-score-ring {
  text-align: center;
}

.results-ring-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}

.results-details h3 {
  
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.results-details p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.results-dims {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.results-dim-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.results-dim-card.critical {
  border-color: #FECACA;
  background: var(--red-l);
}

.results-dim-card.warning {
  border-color: #FDE68A;
  background: var(--amber-l);
}

.results-dim-card.good {
  border-color: #A7F3D0;
  background: var(--green-l);
}

.rdim-name {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.rdim-score {
  font-size: 22px;
  font-weight: 800;
}

.rdim-label {
  font-size: 11px;
  font-weight: 600;
}

.results-dim-card.critical .rdim-name {
  color: var(--red);
}

.results-dim-card.critical .rdim-score {
  color: var(--red);
}

.results-dim-card.critical .rdim-label {
  color: #DC2626;
}

.results-dim-card.warning .rdim-name {
  color: var(--amber);
}

.results-dim-card.warning .rdim-score {
  color: var(--amber);
}

.results-dim-card.warning .rdim-label {
  color: #D97706;
}

.results-dim-card.good .rdim-name {
  color: var(--green);
}

.results-dim-card.good .rdim-score {
  color: var(--green);
}

.results-dim-card.good .rdim-label {
  color: #065F46;
}

/* Email gate form */
.email-gate {
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  border-radius: 14px;
  padding: 32px;
  color: white;
}

.email-gate h4 {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.email-gate p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.6;
}

.email-gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gate-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gate-field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.gate-field input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  padding: 11px 14px;
  color: white;
  font-size: 14px;
  
  transition: border-color 0.2s;
}

.gate-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.gate-field input:focus {
  outline: none;
  border-color: rgba(27, 127, 225, 0.6);
  background: rgba(27, 127, 225, 0.1);
}

.btn-gate {
  background: var(--accent);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
}

.btn-gate:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
}

.gate-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* Thank you state */
.calc-thankyou {
  display: none;
  text-align: center;
  padding: 40px;
}

.calc-thankyou.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-l);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
}

.calc-thankyou h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.calc-thankyou p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 32px;
  text-align: left;
}

.thankyou-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-2);
}

.ts-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* STATS BAR */
.stats-bar {
  background: #161f2d;
  padding: 56px 20px;
}

.stats-row {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-big {  
  font-size: 48px;
  font-weight: 800;
  color: #0d9eda;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}


@media (max-width: 767px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0 !important;
    padding: 0 0 20px 0 !important;
  }
}

@media (max-width: 1023px) {
.stat-big {  
  font-size: 29px;
}
}

.stat-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}


.stat-source {
  font-size: 13px;
 color: #fff;
  margin-top: 15px;
}

/* DIMENSIONS GRID */
.dims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.dim-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.dim-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27, 127, 225, 0.1);
}

.dim-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f8fd;
  color: #0094d1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dim-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.dim-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.dim-desc {
  font-size: 13px;
  line-height: 1.6;
}

.dim-checks {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
}

.dim-check {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--text-2);
  margin-bottom: 5px;
}

.dim-check-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* WHAT'S INCLUDED */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
.included-grid {
  grid-template-columns: 1fr;
}
}


.inc-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  background: white;
  transition: all 0.2s;
}

.inc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.08);
  transform: translateY(-2px);
}

.inc-num {  
  font-size: 40px;
  font-weight: 800;
  color: #dde3eb;
  line-height: 1;
  margin-bottom: 10px;
}

.inc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.inc-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}

.inc-deliverable {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-l);
  padding: 4px 10px;
  border-radius: 4px;
}

/* COST SECTION */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
.cost-grid {
  grid-template-columns: 1fr;
}
}


.cost-card {
  border-radius: 16px;
  padding: 28px;
}

.cost-card.security {
  background: #fff7f7;
  border: 1px solid #FECACA;
}

.cost-card.spend {
  background: #fdfcf8;
  border: 1px solid #FDE68A;
}

.cost-card.ai {
  background: #f4f9ff;
  border: 1px solid #C5D9F0;
}

.cost-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cost-card.security .cost-card-icon {
  background: #FEE2E2;
  color: var(--red);
}

.cost-card.spend .cost-card-icon {
background: #f5edd0;
  color: var(--amber);
}

.cost-card.ai .cost-card-icon {
  background: #ddeff9;
  color: var(--accent);
}

.cost-card-icon svg {
  width: 22px;
  height: 22px;
}

.cost-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cost-card.security h3 {
  color: #991B1B;
}

.cost-card.spend h3 {
  color: #92400E;
}

.cost-card.ai h3 {
  color: var(--navy);
}

.cost-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.cost-card.security p {
  color: #7F1D1D;
}

.cost-card.spend p {
  color: #78350F;
}

.cost-card.ai p {
  color: var(--text-2);
}

.cost-stat {  
  font-size: 28px;
  font-weight: 800;
  display: block;
}

.cost-card.security .cost-stat {
  color: var(--red);
}

.cost-card.spend .cost-stat {
  color: var(--amber);
}

.cost-card.ai .cost-stat {
  color: var(--accent);
}

.cost-stat-label {
  font-size: 12px;
  font-weight: 500;
}

.cost-card.security .cost-stat-label {
  color: #EF4444;
}

.cost-card.spend .cost-stat-label {
  color: #D97706;
}

.cost-card.ai .cost-stat-label {
  color: var(--accent);
}

/* INLINE CTA BANNER */
.hc-banner {
  background: #161f2d;
  padding: 60px 20px;
}

.hc-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}


@media (max-width: 1023px) {
.hc-banner-inner {
  grid-template-columns: 1fr;
}
}


.hc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(27, 127, 225, 0.2);
  border: 1px solid rgba(27, 127, 225, 0.4);
  color: #7EC8F7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hc-banner h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.hc-banner p {
  font-size: 17px;
  color: #fff;
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 20px;
}


.hc-banner .note {
  font-size: 12px;
}


.hc-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 767px) {
.hc-deliverables {
  grid-template-columns: 1fr;
  gap: 10px;

}
}

.hc-del {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.hc-del svg {
  width: 14px;
  height: 14px;
  stroke: #7EC8F7;
  flex-shrink: 0;
}

.hc-cta-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  flex-shrink: 0;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.btn-white-cta {
  background: #1b7fe1;
  color: #fff;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: block;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-white-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #fff;
}

.hc-cta-note {
  font-size: 12px !important;
  color: #fff;
  text-align: center;
}

/* WHY ARESS */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}


@media (max-width: 1023px) {
.why-grid {
    grid-template-columns: 1fr;
}
}


.why-pts {
  display: flex;
  flex-direction: column;
}

.why-pt {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.why-pt:first-child {
  border-top: 1px solid var(--border);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-l);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-icon svg {
  width: 20px;
  height: 20px;
}

.why-pt h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-pt p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.proof-box {
  background: #161f2d;
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 767px) {
.proof-box {
  grid-template-columns: 1fr;
}

.proof-cell:nth-child(odd) {
  border-right: 0 !important;
}
}


.proof-cell {
  padding: 24px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-cell:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-cell:nth-last-child(-n+2) {
  border-bottom: none;
}

.proof-big {  
  font-size: 40px;
  font-weight: 800;
  color: #0d9eda;
  display: block;
  margin-bottom: 6px;
}

.proof-desc {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}

/* EXPLORE */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
.explore-grid {
  grid-template-columns: 1fr;
}
}


.explore-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.explore-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.1);
  transform: translateY(-3px);
  text-decoration: none;
}

.explore-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
}

.explore-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.explore-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  
}

.explore-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

.explore-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.explore-card.hub {
  border-left: 3px solid var(--accent);
  background: var(--accent-l);
}

.hub-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hub-back::before {
  content: '←';
}

.explore-all-btn {
  background: #1b7fe1;
  color: white;
  padding: 12px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  align-self: flex-end;
  text-decoration: none;
  transition: background 0.2s;
}

.explore-all-btn:hover {
  background: #0b84b6;
  text-decoration: none;
  color: white;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-right: 24px;
  position: relative;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 300;
}

.faq-a {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
.blog-grid {
  grid-template-columns: 1fr;
}

}


.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.1);
}

.blog-hdr {
  padding: 32px 28px 28px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.blog-hdr-circle {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.blog-hdr-1 {
  background: linear-gradient(135deg, #0A7C4A, #22A86B);
}

.blog-hdr-2 {
  background: linear-gradient(135deg, #0D1B3E, #1B7FE1);
}

.blog-hdr-3 {
  background: linear-gradient(135deg, #5C1F87, #9C55DA);
}

.blog-icon {
  margin-bottom: 12px;
  display: block;
}

.blog-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.8);
}

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  display: block;
}

.blog-title {
  
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.35;
}

.blog-body {
  padding: 22px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.blog-all-btn {
  align-self: flex-end;
  white-space: nowrap;
  flex-shrink: 0;
}

/* CTA */
.cta-section {
  background: #161f2d;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-section h2 span {
  color: #7EC8F7;
}

.cta-section p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 23px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: white;
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--navy);
}

.btn-cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-cta-ghost:hover {
  border-color: white;
  color: white;
  text-decoration: none;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}


/* SHARED ICON SVG HELPER */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero score preview bars (sample data) */
.hsp-bar-38 {
  width: 38%;
}

.hsp-bar-55 {
  width: 55%;
}

.hsp-bar-60 {
  width: 60%;
}

.hsp-bar-78 {
  width: 78%;
}

.hsp-bar-42 {
  width: 42%;
}

/* Calculator layout */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
}

@media (max-width: 767px) {
.calc-grid {
  grid-template-columns: 1fr;
}
}

.section-lead-center {
  margin: 14px auto 0;
}

/* Results score ring */
.results-ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 8px;
}

.results-ring-svg {
  transform: rotate(-90deg);
}

.results-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.results-score-num {
  
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.results-score-outof {
  font-size: 12px;
  color: var(--text-3);
}

/* Email gate form grid */
.gate-name-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Calc back button hidden state */
.hidden {
  display: none;
}

/* Live ring SVG transition */
.live-ring-svg circle:last-child {
  transition: stroke-dashoffset 0.5s ease;
}

/* Live rating hidden state */
.rating-hidden {
  visibility: hidden;
}

/* Sidebar dim score label spacing */
.calc-dim-scores-label {
  margin-bottom: 12px;
}

/* Sidebar dim score initial state */
.calc-dim-score-val-init {
  color: var(--text-3);
}

.calc-dim-fill-init {
  width: 0%;
  background: var(--border);
}

/* Sidebar insight box */
.sidebar-insight-box {
  background: var(--accent-l);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #C5D9F0;
}

.sidebar-insight-title {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
}

.sidebar-insight-text {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.55;
}

/* Section header row spacing */
.section-header-row-mb48 {
  margin-bottom: 48px;
}

.section-header-row-mb32 {
  margin-bottom: 32px;
}

/* Progress bar initial */
.progress-bar-init {
  width: 10%;
}

.live-ring-anim {
  transition: stroke-dashoffset 0.5s ease;
}

/* RENEWAL + OUTCOMES */
.renewal-outcomes-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}


@media (max-width: 1023px) {
.renewal-outcomes-grid {
   grid-template-columns: 1fr;
 }
}


.renewal-callout {
  background: #161f2d;
  border-radius: 20px;
  padding: 36px;
  color: white;
}

.renewal-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27, 127, 225, 0.30);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.renewal-icon svg {
  width: 22px;
  height: 22px;
}

.renewal-callout h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  line-height: 1.35;
}

.renewal-callout p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.renewal-btn {
  display: inline-block;
}

.outcomes-col {
  display: flex;
  flex-direction: column;
}

.outcomes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.outcome-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(27, 127, 225, 0.08);
}

.outcome-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-icon svg {
  width: 16px;
  height: 16px;
}

.outcome-icon-green {
  background: var(--green-l);
  color: var(--green);
}

.outcome-icon-red {
  background: var(--red-l);
  color: var(--red);
}

.outcome-icon-amber {
  background: var(--amber-l);
  color: var(--amber);
}

.outcome-icon-blue {
  background: var(--accent-l);
  color: var(--accent);
}

.outcome-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}

.outcome-detail {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.55;
}

/* COMPARISON TABLE */
.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
}

.compare-table thead {
  background: #161f2d;
}

.compare-th-feature {
  width: 40%;
  min-width: 200px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-th-free,
.compare-th-paid {
  width: 30%;
    min-width: 200px;
}

.compare-th-label {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.compare-th-free .compare-th-label {
  color: #7EC8F7;
}

.compare-th-paid .compare-th-label {
  color: #86EFAC;
}

.compare-th-sub {
  font-size: 12px;
  color: #fff;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
  background: var(--bg-off);
}

.compare-feature {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}

.compare-free,
.compare-paid {
  font-size: 13px;
  position: relative;
}

.compare-free {
  color: var(--text-3);
}


.compare-free-text {
  padding: 0 0 0 17px;
  position: relative;
}

.compare-paid-text {
  padding: 0 0 0 17px;
  position: relative;
}

.compare-paid {
  color: var(--text-2);
  font-weight: 500;
}

.ct-tick {
  color: var(--green);
  font-weight: 700;
  margin-right: 4px;
  position: absolute;
  left: 0;
  top: -2px;
}

.ct-partial {
  color: var(--amber);
  font-weight: 700;
  margin-right: 4px;
    position: absolute;
  left: 0;
  top: -2px;
}

.ct-no {
  color: var(--text-3);
  font-weight: 700;
  margin-right: 4px;
}

.compare-cta-row td {
  padding: 20px;
  background: white;
}

.btn-outline-dark {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s;
}

.btn-outline-dark:hover {
  background: var(--bg-off);
  text-decoration: none;
  color: var(--navy);
}

/* TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
.trust-grid {
  grid-template-columns:1fr;
}
}


.trust-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.trust-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.08);
  transform: translateY(-2px);
}

.trust-icon {
width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f6f9fd;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}


    /* SAMPLE REPORT BUTTON */
    .btn-sample {
      border: 1.5px solid var(--border);
      background: white;
      color: var(--text-2);
      padding: 14px 24px;
      border-radius: 8px;
      font-weight: 500;
      font-size: 15px;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-sample:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-l);
    }

    .btn-sample-link {
      background: var(--accent);
      color: white;
      padding: 14px 28px;
      margin: 20px 0;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      display: inline-block;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(27, 127, 225, 0.3);
      border: none;
    }

    .btn-sample-link:hover {
      opacity: 0.75;
    }

    /* MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(13, 27, 62, 0.6);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-overlay.open {
      display: flex;
      animation: fadeOverlay 0.2s ease;
    }

    @keyframes fadeOverlay {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .modal-box {
      background: white;
      border-radius: 20px;
      width: 100%;
      max-width: 760px;
      max-height: 88vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 80px rgba(13, 27, 62, 0.25);
      animation: slideUp 0.25s ease;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding: 28px 32px 0 32px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .modal-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 6px;
    }

    .modal-title {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .modal-subtitle {
      font-size: 13px;
      color: var(--text-3);
    }

    .modal-close {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-3);
      flex-shrink: 0;
      transition: background 0.15s, border-color 0.15s;
    }

    .modal-close:hover {
      background: var(--bg-off);
      border-color: var(--accent);
      color: var(--accent);
    }

    .modal-body {
      padding: 24px 32px 32px;
      overflow-y: auto;
      flex: 1;
    }

    /* Sample report styles */
    .sr-score-row {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
      background: var(--bg-off);
      border-radius: 14px;
      padding: 20px;
      margin-bottom: 24px;
      border: 1px solid var(--border);
    }


    .sr-score-ring-wrap {
      position: relative;
      width: 88px;
      height: 88px;
      flex-shrink: 0;
    }

    .sr-ring-inner {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .sr-ring-num {
      font-family: 'Sora', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }

    .sr-ring-label {
      font-size: 10px;
      color: var(--text-3);
    }

    .sr-score-meta {
      flex: 1;
    }

    .sr-rating-badge {
      display: inline-block;
      background: var(--amber-l);
      color: var(--amber);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 8px;
    }

    .sr-score-summary {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.6;
    }

    .sr-section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 12px;
      margin-top: 4px;
    }

    .sr-dims {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .sr-dim {
      border-radius: 12px;
      padding: 16px 18px;
    }

    .sr-dim-critical {
      background: var(--red-l);
      border: 1px solid #FECACA;
    }

    .sr-dim-warning {
      background: var(--amber-l);
      border: 1px solid #FDE68A;
    }

    .sr-dim-good {
      background: var(--green-l);
      border: 1px solid #A7F3D0;
    }

    .sr-dim-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }

    .sr-dim-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      flex: 1;
    }

    .sr-dim-score {
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 800;
    }

    .sr-dim-critical .sr-dim-score {
      color: var(--red);
    }

    .sr-dim-warning .sr-dim-score {
      color: var(--amber);
    }

    .sr-dim-good .sr-dim-score {
      color: var(--green);
    }

    .sr-dim-badge {
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
    }

    .sr-badge-critical {
      background: #FEE2E2;
      color: #991B1B;
    }

    .sr-badge-warning {
      background: #FEF3C7;
      color: #92400E;
    }

    .sr-badge-good {
      background: #D1FAE5;
      color: #065F46;
    }

    .sr-dim-bar-bg {
      height: 4px;
      background: rgba(0, 0, 0, 0.08);
      border-radius: 2px;
      margin-bottom: 12px;
    }

    .sr-dim-bar {
      height: 4px;
      border-radius: 2px;
    }

    .sr-findings {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 0;
    }

    .sr-finding {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      font-size: 13px;
      line-height: 1.5;
    }

    .sr-finding svg {
      flex-shrink: 0;
      margin-top: 1px;
    }

    .sr-finding-critical {
      color: #7F1D1D;
    }

    .sr-finding-critical svg {
      stroke: var(--red);
    }

    .sr-finding-warning {
      color: #78350F;
    }

    .sr-finding-warning svg {
      stroke: var(--amber);
    }

    .sr-finding-good {
      color: #065F46;
    }

    .sr-finding-good svg {
      stroke: var(--green);
    }

    .sr-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
    }

    .sr-action {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
      background: white;
    }

    .sr-action-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      color: white;
      font-family: 'Sora', sans-serif;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sr-action-1 .sr-action-num {
      background: var(--red);
    }

    .sr-action-2 .sr-action-num {
      background: var(--red);
    }

    .sr-action-3 .sr-action-num {
      background: var(--amber);
    }

    .sr-action-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .sr-action-meta {
      font-size: 12px;
      color: var(--text-3);
    }

    .sr-footer {
      background: var(--bg-off);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .sr-footer p {
      font-size: 13px;
      color: var(--text-3);
      line-height: 1.55;
    }


    /* renewal-section */
    .renewal-section .section-lead {
      max-width: 100%;
    }

    /* ── BLOG SECTION ── */
    .blog-all-btn {
      align-self: flex-end;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .blog-hdr-1 {
      background: linear-gradient(135deg, #0D1B3E, #1B7FE1);
    }

    .blog-hdr-2 {
    background: linear-gradient(135deg, #0a7c4a 0%, #45c65a 100%);
    }

    .blog-hdr-3 {
      background: linear-gradient(135deg, #5c1f87 0%, #9c55da 100%);
    }


    /* insights-section */

    .insights-section .btn-ai {
      margin-bottom: 50px;
    }

    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }


    @media (max-width: 767px) {
      .insights-grid {
      grid-template-columns: 1fr;
      }
    }

.btn-ai {
    background: linear-gradient(135deg, #1b7fe1 0%, #0099cc 100%);
    color: white;
    padding: 14px 30px;
    margin-bottom: 50px;
    border-radius: 8px;
    font-family: poppins_semiboldregular;
    font-size: 15px;
    display: inline-block;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(27, 127, 225, 0.35);
}


.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 127, 225, 0.45);
    text-decoration: none;
    color: white;
}

.error-message {
    color: #DC2626;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.input-error {
    border-color: #DC2626 !important;
}