:root {
  --ink: #111a1f;
  --deep: #172420;
  --forest: #2d5144;
  --moss: #718a67;
  --brass: #b08a42;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --line: rgba(17, 26, 31, 0.14);
  --shadow: 0 20px 50px rgba(17, 26, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 22, 20, 0.82), rgba(13, 22, 20, 0.08));
}

.site-header.solid {
  background: rgba(17, 26, 31, 0.96);
  box-shadow: 0 10px 30px rgba(17, 26, 31, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.12);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 126px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.nav .header-phone {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.1);
  opacity: 1;
}

.nav .header-phone:hover {
  background: rgba(255, 253, 248, 0.18);
}

.news-ticker {
  position: relative;
  z-index: 10;
  margin-top: 78px;
  color: #0f1c25;
  background: #caa24f;
  border-top: 2px solid #0f1c25;
  border-bottom: 2px solid #0f1c25;
  box-shadow: 0 8px 18px rgba(17, 26, 31, 0.18);
  overflow: hidden;
}

.news-ticker[hidden] {
  display: none;
}

.news-ticker-inner {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
}

.news-ticker-label {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 42px);
  color: var(--white);
  background: #0f1c25;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-ticker-status {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 clamp(14px, 2.4vw, 26px);
  border-right: 1px solid rgba(15, 28, 37, 0.22);
  color: #0f1c25;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-ticker-viewport {
  min-width: 0;
  overflow: hidden;
}

.news-ticker-track {
  --news-duration: 42s;
  display: flex;
  width: max-content;
  animation: news-ticker-scroll var(--news-duration) linear infinite;
  will-change: transform;
}

.news-ticker:hover .news-ticker-track,
.news-ticker:focus-within .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  padding-right: clamp(22px, 4vw, 54px);
  min-width: max-content;
}

.news-ticker-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: #0f1c25;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.news-ticker-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-right: 10px;
  padding: 0 9px;
  border: 1px solid rgba(15, 28, 37, 0.42);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.28);
  color: #0f1c25;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-ticker-item::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: #0f1c25;
  box-shadow: 0 0 0 4px rgba(15, 28, 37, 0.12);
}

.news-ticker-item:hover,
.news-ticker-item:focus-visible {
  color: #fffdf8;
  outline: none;
}

.news-ticker-item:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.news-ticker-cta {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 32px);
  color: var(--white);
  background: #0f1c25;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-ticker-cta:hover,
.news-ticker-cta:focus-visible {
  color: #0f1c25;
  background: var(--white);
  outline: none;
}

@keyframes news-ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 16px 20px 0;
  color: #0a66c2;
  font-weight: 800;
  text-decoration: none;
}

.linkedin-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.linkedin-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: #0a66c2;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.news-ticker + .hero .hero-content {
  padding-top: 64px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/chateau-frontenac.jpeg");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 22, 20, 0.95) 0%, rgba(13, 22, 20, 0.72) 40%, rgba(13, 22, 20, 0.1) 75%),
    linear-gradient(180deg, rgba(13, 22, 20, 0.26), rgba(13, 22, 20, 0.54));
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  padding-top: 96px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-line {
  max-width: 640px;
  margin: 24px 0 24px;
  color: #f0eadc;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 700;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
  margin: 24px 0 20px;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 6px;
  background: rgba(17, 26, 31, 0.42);
  color: #f0eadc;
  font-weight: 800;
}

.hero-promise {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.data-band {
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--forest);
}

.data-band-inner {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 3vw, 36px);
}

.data-band strong {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.data-band span {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.why-subscribe {
  background: var(--white);
}

.why-subscribe .section-heading > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(17, 26, 31, 0.7);
  font-size: 1.05rem;
}

.light-check-list li {
  border-color: var(--line);
  background: var(--paper);
  color: var(--deep);
}

.hero-copy {
  max-width: 670px;
  margin: 0 0 16px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.03rem;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 18px;
  padding: 0 24px;
  border: 1px solid rgba(255, 253, 248, 0.36);
  background: var(--brass);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.primary-action:hover {
  background: #c39a50;
}

.trial-form {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(115px, 1fr)) minmax(170px, 0.95fr) auto;
  gap: 12px;
  align-items: end;
  width: min(1180px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: rgba(17, 26, 31, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-trial {
  margin-top: 28px;
}

.page-trial {
  margin-top: 32px;
}

.trial-form strong {
  align-self: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.trial-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trial-form input,
.trial-form select {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.trial-form input:focus,
.trial-form select:focus {
  outline: 3px solid rgba(176, 138, 66, 0.36);
  border-color: var(--brass);
}

.trial-button {
  margin-top: 0;
  min-height: 46px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.trial-submit {
  display: grid;
  gap: 7px;
  align-self: end;
}

.trial-submit p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.subscription-form .form-status {
  color: var(--deep);
}

.form-status[data-state="success"] {
  color: #c9e7d1;
}

.subscription-form .form-status[data-state="success"] {
  color: #24613c;
}

.form-status[data-state="error"] {
  color: #ffd4c8;
}

.subscription-form .form-status[data-state="error"] {
  color: #9d2f1f;
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.66;
}

.page-hero {
  padding: 160px clamp(20px, 5vw, 72px) 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 26, 31, 0.94), rgba(17, 26, 31, 0.76)),
    url("assets/chateau-frontenac.jpeg") center 42% / cover;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(17, 26, 31, 0.95), rgba(45, 81, 68, 0.84)),
    url("assets/chateau-frontenac.jpeg") center 42% / cover;
}

.payment-hero {
  background:
    linear-gradient(90deg, rgba(17, 26, 31, 0.96), rgba(45, 81, 68, 0.78)),
    url("assets/chateau-frontenac.jpeg") center 42% / cover;
}

.payment-section {
  background: var(--paper);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.payment-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.payment-steps li > span {
  color: var(--brass);
  font-weight: 800;
}

.payment-steps strong {
  color: var(--deep);
  font-size: 1.08rem;
}

.payment-steps p {
  margin: 6px 0 0;
  color: rgba(17, 26, 31, 0.7);
}

.payment-action {
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--forest);
}

.payment-action-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.payment-action h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.payment-action p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
}

.payment-button-wrap {
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.payment-button-wrap small {
  color: rgba(255, 253, 248, 0.68);
}

.payment-security {
  color: var(--white);
  background: var(--deep);
}

.payment-copy {
  color: rgba(255, 253, 248, 0.82);
}

.contact-choice-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-choice-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.contact-choice-bar a:hover {
  background: rgba(255, 253, 248, 0.18);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.publication-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-number {
  display: block;
  margin-bottom: 52px;
  color: var(--moss);
  font-weight: 800;
}

h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 1.18rem;
}

.publication-card p {
  margin: 0;
  color: rgba(17, 26, 31, 0.72);
}

.publication-card-new,
.new-publication {
  border-color: rgba(176, 138, 66, 0.48);
  background:
    linear-gradient(135deg, rgba(176, 138, 66, 0.12), transparent 48%),
    var(--white);
}

.novelty-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brass);
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.market-proof {
  color: var(--white);
  background: var(--deep);
}

.fiscal-spotlight {
  background: var(--white);
}

.fiscal-spotlight .section-heading > p:not(.eyebrow) {
  color: rgba(17, 26, 31, 0.72);
}

.spotlight-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(176, 138, 66, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(176, 138, 66, 0.14), transparent 56%),
    #fbfaf6;
  box-shadow: var(--shadow);
}

.spotlight-panel h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.spotlight-panel p {
  margin: 0;
  color: rgba(17, 26, 31, 0.72);
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.proof-intro {
  color: rgba(255, 253, 248, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.proof-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
}

.proof-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.proof-grid p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.choose-gdl {
  background: var(--paper);
}

.risk-dimensions,
.activity-dashboard {
  background: var(--white);
}

.risk-map {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.risk-node-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.risk-node {
  position: relative;
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.risk-node-top,
.risk-node-bottom {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.risk-node span,
.dashboard-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-node strong {
  display: block;
  color: var(--deep);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.risk-node p {
  margin: 12px 0 0;
  color: rgba(17, 26, 31, 0.72);
}

.action-strip {
  padding: 0 clamp(18px, 4vw, 48px);
  background: var(--white);
}

.action-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 4vw, 34px);
  border: 1px solid rgba(36, 86, 88, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 86, 88, 0.08), transparent 56%),
    var(--paper);
  box-shadow: var(--shadow);
}

.action-strip p {
  max-width: 620px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
}

.action-strip-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.action-strip-dark {
  color: var(--white);
  background: var(--white);
}

.action-strip-dark .action-strip-inner {
  border-color: rgba(255, 253, 248, 0.12);
  background:
    linear-gradient(135deg, rgba(176, 138, 66, 0.16), transparent 60%),
    var(--deep);
}

.action-strip-dark p {
  color: var(--white);
}

.action-strip-dark .text-link {
  color: var(--brass);
}

.risk-timeline {
  color: var(--white);
  background: var(--deep);
}

.risk-timeline .section-heading p,
.timeline-note {
  color: rgba(255, 253, 248, 0.74);
}

.timeline-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline-flow li {
  position: relative;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
}

.timeline-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 12px;
  height: 1px;
  background: rgba(255, 253, 248, 0.34);
}

.timeline-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
}

.timeline-flow strong {
  display: block;
  font-size: 1rem;
  line-height: 1.32;
}

.timeline-note {
  max-width: 780px;
  margin: 24px auto 0;
  text-align: center;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dashboard-grid strong {
  display: block;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.dashboard-grid p {
  margin: 14px 0 0;
  color: rgba(17, 26, 31, 0.76);
}

.dashboard-grid small {
  display: block;
  margin-top: 18px;
  color: rgba(17, 26, 31, 0.58);
  font-size: 0.86rem;
  line-height: 1.45;
}

.company-profile {
  background: var(--paper);
}

.profile-example {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(36, 86, 88, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-example > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.profile-example p {
  margin: 18px 0 0;
  color: rgba(17, 26, 31, 0.66);
  font-size: 0.92rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reason-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.reason-grid strong {
  display: block;
  color: var(--deep);
  font-size: 1.02rem;
}

.reason-grid p {
  margin: 12px 0 0;
  color: rgba(17, 26, 31, 0.72);
}

.trust-section {
  background: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.trust-content > p {
  margin: 0;
  color: rgba(17, 26, 31, 0.72);
  font-size: 1.08rem;
}

.founder-photo {
  margin: 28px 0 0;
}

.founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 32%;
  box-shadow: var(--shadow);
}

.founder-photo figcaption {
  margin-top: 10px;
  color: rgba(17, 26, 31, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}

.trust-metrics span {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-left: 3px solid var(--brass);
  background: var(--paper);
  color: rgba(17, 26, 31, 0.68);
  font-weight: 700;
}

.trust-metrics strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.home-research {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--deep));
}

.home-research .section-heading > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.76);
}

.home-research .platform-link,
.home-research .primary-action {
  display: flex;
  width: fit-content;
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: rgba(176, 138, 66, 0.45);
  background:
    linear-gradient(135deg, rgba(176, 138, 66, 0.12), transparent 46%),
    var(--white);
}

.pricing-card .card-number {
  margin-bottom: 46px;
}

.pricing-card p,
.section-copy {
  margin: 0;
  color: rgba(17, 26, 31, 0.72);
}

.legal-note {
  margin: 18px 0 0;
  color: rgba(17, 26, 31, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-legal {
  margin-top: 0;
}

.estimator-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(45, 81, 68, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.estimator-panel h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.estimator-panel p {
  margin: 0;
  color: rgba(17, 26, 31, 0.72);
}

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

.estimator-controls > label:not(.checkbox-line) {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 800;
}

.estimator-controls input[type="number"],
.estimator-controls select {
  min-height: 48px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
}

.estimate-result {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(45, 81, 68, 0.08);
}

.estimate-result span,
.subscription-summary span {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.estimate-result strong,
.subscription-summary strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.estimator-link {
  margin-top: 0;
}

.price-block {
  display: grid;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price-block span {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-block strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.price-block small {
  max-width: 420px;
  color: rgba(17, 26, 31, 0.66);
  font-size: 0.95rem;
}

.suggested-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
  padding: 0;
  list-style: none;
}

.suggested-prices li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(45, 81, 68, 0.06);
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.fair-price strong {
  color: var(--forest);
}

.discovery-price strong {
  color: var(--forest);
}

.founder-price strong {
  color: var(--forest);
}

.insolvency-insight {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(20px, 4vw, 42px);
  margin-top: 28px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(45, 81, 68, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.insolvency-insight h3 {
  max-width: 820px;
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.insolvency-insight p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(17, 26, 31, 0.72);
}

.insolvency-proof-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-left: 4px solid var(--brass);
  border-radius: 8px;
  background: #fbfaf6;
}

.insolvency-proof-card span {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insolvency-proof-card strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.program-banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.program-banner {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(45, 81, 68, 0.18);
  border-radius: 8px;
  background: rgba(45, 81, 68, 0.06);
}

.program-banner span {
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-banner strong {
  color: var(--deep);
  font-size: 1rem;
  line-height: 1.35;
}

.form-program-banners {
  margin-top: 0;
  margin-bottom: 18px;
}

.trust-program {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(45, 81, 68, 0.18);
  border-radius: 8px;
  background: #fbfaf6;
}

.trust-program h3 {
  max-width: 820px;
  margin: 0 0 14px;
  color: var(--deep);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.trust-program p:not(.eyebrow) {
  max-width: 920px;
  margin: 10px 0 0;
  color: rgba(17, 26, 31, 0.76);
}

.form-trust-program {
  margin-top: 0;
  margin-bottom: 22px;
}

.form-section {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.subscription-summary {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.subscription-summary p {
  margin: 0;
  color: rgba(17, 26, 31, 0.68);
  font-weight: 700;
}

.subscription-intro {
  margin: 16px 0 0;
  color: rgba(17, 26, 31, 0.72);
}

.subscription-contact-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(45, 81, 68, 0.18);
  border-radius: 8px;
  background: #fbfaf6;
}

.subscription-contact-card strong {
  color: var(--deep);
  font-size: 1rem;
}

.subscription-contact-card p {
  margin: 0;
  color: rgba(17, 26, 31, 0.72);
}

.subscription-contact-card a {
  color: var(--forest);
  font-weight: 800;
}

.subscription-form {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.full-field {
  grid-column: 1 / -1;
}

.subscription-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 800;
}

.subscription-form input,
.subscription-form textarea,
.subscription-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
}

.subscription-form input,
.subscription-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.subscription-form textarea {
  resize: vertical;
  min-height: 140px;
  padding: 12px;
}

.subscription-form input:focus,
.subscription-form textarea:focus,
.subscription-form select:focus {
  outline: 3px solid rgba(176, 138, 66, 0.26);
  border-color: var(--brass);
}

.subscription-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.subscription-form legend {
  padding: 0 8px;
  color: var(--deep);
  font-weight: 800;
}

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

.publication-recipients {
  background: #fbfaf6;
}

.recipient-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.radio-line {
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.radio-line input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--forest);
}

.field-help {
  margin: 4px 0 0;
  color: rgba(17, 26, 31, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
}

.checkbox-line {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 700;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.about-section {
  color: var(--white);
  background: var(--deep);
}

.about-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.04rem;
}

.about-copy p {
  margin: 0;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.principles span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
  color: var(--white);
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 245, 239, 1)),
    repeating-linear-gradient(90deg, rgba(45, 81, 68, 0.06) 0 1px, transparent 1px 120px);
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
}

address {
  margin-top: 22px;
  color: rgba(17, 26, 31, 0.72);
  font-style: normal;
  font-weight: 700;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.contact-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-list dt {
  margin-bottom: 8px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list dd {
  margin: 0;
  color: var(--deep);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.confirmation-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 26, 31, 0.94), rgba(45, 81, 68, 0.82)),
    url("assets/chateau-frontenac.jpeg") center 42% / cover;
}

.confirmation-panel {
  width: min(680px, 100%);
}

.confirmation-brand {
  margin-bottom: 72px;
}

.confirmation-panel h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.confirmation-panel > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.15rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner strong {
  font-size: 1.2rem;
}

.footer-logo {
  display: block;
  width: 120px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.insight-band {
  color: var(--white);
  background: var(--deep);
}

.research-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 81, 68, 0.98), rgba(17, 26, 31, 0.98));
}

.research-section .section-copy {
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.04rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  text-decoration: none;
}

.platform-link:hover {
  background: rgba(255, 253, 248, 0.14);
}

.platform-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.platform-link span {
  display: grid;
}

.platform-link strong {
  font-size: 1.05rem;
}

.platform-link small {
  color: rgba(255, 253, 248, 0.66);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 52px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 20px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--brass);
  border-left: 3px solid var(--brass);
  transform: rotate(-45deg);
}

.branded-service-list li {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
}

.branded-service-list li::before {
  display: none;
}

.service-logo {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 4px;
  object-fit: contain;
}

.service-logo-gdl {
  width: 64px;
  height: 28px;
  border-radius: 0;
  mix-blend-mode: screen;
}

.clients {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 245, 239, 1)),
    repeating-linear-gradient(90deg, rgba(45, 81, 68, 0.06) 0 1px, transparent 1px 120px);
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-proof {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(17, 26, 31, 0.68);
  font-size: 1.04rem;
  font-weight: 700;
}

.client-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 700;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  padding: 18px 50px 18px 20px;
  color: var(--deep);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(17, 26, 31, 0.7);
}

.cta-section {
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 72px);
  background: var(--forest);
  color: var(--white);
}

.cta-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 640px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.cta-inner p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-weight: 700;
}

.primary-action.dark {
  flex: 0 0 auto;
  margin-top: 0;
  background: var(--ink);
  color: var(--white);
}

.primary-action.dark:hover {
  background: #263237;
}

.privacy-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  color: #f7faf8;
  background: #132a24;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(6, 20, 16, 0.3);
}

.privacy-banner[hidden],
.privacy-modal[hidden],
.privacy-settings[hidden] {
  display: none;
}

.privacy-banner-copy {
  max-width: 760px;
}

.privacy-banner h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.15rem;
}

.privacy-banner p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.privacy-banner a,
.privacy-fineprint a {
  color: #6ed9b2;
  font-weight: 700;
}

.privacy-actions,
.privacy-dialog-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.privacy-actions {
  justify-content: flex-end;
  min-width: 360px;
}

.privacy-button {
  min-height: 42px;
  padding: 0 15px;
  color: #17322a;
  background: #fff;
  border: 1px solid #c9d7d2;
  border-radius: 5px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.privacy-button:hover,
.privacy-button:focus-visible {
  border-color: #65c9a5;
  outline: 2px solid transparent;
}

.privacy-button.primary {
  color: #10271f;
  background: #7fe0bc;
  border-color: #7fe0bc;
}

.privacy-button.link {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.privacy-modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 15, 0.68);
}

.privacy-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  color: #19332b;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(5, 17, 13, 0.4);
}

.privacy-dialog h2 {
  margin: 4px 42px 22px 0;
}

.privacy-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 38px;
  height: 38px;
  color: #17322a;
  background: #edf4f1;
  border: 0;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.privacy-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid #dce7e2;
}

.privacy-option p {
  margin: 5px 0 0;
  color: #51675f;
  font-size: 0.9rem;
  line-height: 1.5;
}

.privacy-option input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  accent-color: #167555;
}

.privacy-required {
  flex: 0 0 auto;
  color: #167555;
  font-size: 0.8rem;
  font-weight: 800;
}

.privacy-dialog-actions {
  margin-top: 22px;
}

.privacy-dialog-actions .privacy-button:not(.primary) {
  color: #17322a;
  background: #f5f8f7;
}

.privacy-fineprint {
  margin: 20px 0 0;
  color: #65776f;
  font-size: 0.82rem;
}

.privacy-fineprint a {
  color: #16684e;
}

.privacy-settings {
  position: fixed;
  z-index: 900;
  left: 16px;
  bottom: 14px;
  min-height: 38px;
  padding: 0 13px;
  color: #fff;
  background: #17372e;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(8, 26, 20, 0.22);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.gdl-assistant {
  position: fixed;
  z-index: 950;
  right: 16px;
  bottom: 14px;
  font-family: inherit;
}

.assistant-toggle {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px 0 10px;
  color: #fff;
  background: #126b50;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(7, 34, 25, 0.26);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.assistant-toggle:hover,
.assistant-toggle:focus-visible {
  background: #0e5b43;
}

.assistant-toggle-mark {
  width: 29px;
  height: 29px;
  display: inline-grid;
  place-items: center;
  color: #126b50;
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.assistant-toggle[hidden],
.assistant-panel[hidden] {
  display: none;
}

.assistant-panel {
  width: min(390px, calc(100vw - 32px));
  max-height: min(650px, calc(100vh - 90px));
  overflow: auto;
  color: #18342b;
  background: #fff;
  border: 1px solid #cddbd6;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 28, 21, 0.3);
}

.assistant-header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: #fff;
  background: #17372e;
}

.assistant-kicker {
  display: block;
  margin-bottom: 4px;
  color: #86ddbb;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.assistant-header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.assistant-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

.assistant-body {
  padding: 20px;
}

.assistant-body > p:first-child {
  margin-top: 0;
}

.assistant-body p {
  color: #536a62;
  font-size: 0.9rem;
  line-height: 1.55;
}

.assistant-body h3 {
  margin: 8px 0 14px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.assistant-choices {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.assistant-choices.compact {
  margin-top: 18px;
}

.assistant-choice {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #17372e;
  background: #f5f8f7;
  border: 1px solid #d4e0dc;
  border-radius: 6px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.assistant-choice:hover,
.assistant-choice:focus-visible {
  background: #eaf3ef;
  border-color: #78b79f;
  outline: 2px solid transparent;
}

.assistant-choice.primary {
  color: #fff;
  background: #126b50;
  border-color: #126b50;
}

.assistant-choice.primary:hover,
.assistant-choice.primary:focus-visible {
  background: #0e5b43;
}

.assistant-back {
  padding: 0;
  color: #126b50;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.assistant-result-label {
  margin: 18px 0 0;
  color: #126b50 !important;
  font-size: 0.72rem !important;
  font-weight: 850;
  text-transform: uppercase;
}

.assistant-notice {
  margin: 0;
  padding: 12px 20px 16px;
  color: #6a7c75;
  background: #f7faf8;
  border-top: 1px solid #e0e9e5;
  font-size: 0.72rem;
  line-height: 1.45;
}

body.privacy-open {
  overflow: hidden;
}

.privacy-hero {
  min-height: 390px;
}

.privacy-policy-inner {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.privacy-policy-inner h2 {
  margin: 34px 0 10px;
  font-size: 1.45rem;
}

.privacy-policy-inner h2:first-child {
  margin-top: 0;
}

.privacy-policy-inner p {
  color: #4f665e;
  line-height: 1.75;
}

.privacy-policy-inner a {
  color: #11694d;
  font-weight: 700;
}

@media (max-width: 980px) {
  .news-ticker {
    margin-top: 104px;
  }

  .news-ticker-inner {
    grid-template-columns: 1fr;
  }

  .news-ticker-label {
    justify-content: center;
    min-height: 34px;
  }

  .news-ticker-status {
    justify-content: center;
    min-height: 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 28, 37, 0.18);
  }

  .news-ticker-cta {
    min-height: 42px;
  }

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

  .trial-form strong,
  .trial-submit {
    grid-column: 1 / -1;
  }

  .publication-grid,
  .proof-grid,
  .risk-node-row,
  .timeline-flow,
  .dashboard-grid,
  .reason-grid,
  .pricing-grid,
  .estimator-panel,
  .payment-layout,
  .contact-layout,
  .contact-details,
  .trust-layout,
  .faq-layout,
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .action-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .action-strip-links {
    justify-content: flex-start;
    width: 100%;
  }

  .timeline-flow li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .privacy-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 19px;
  }

  .privacy-actions {
    justify-content: stretch;
    min-width: 0;
  }

  .privacy-actions .privacy-button {
    flex: 1 1 140px;
  }

  .privacy-dialog {
    padding: 24px 20px;
  }

  .privacy-option {
    align-items: flex-start;
  }

  .privacy-dialog-actions .privacy-button {
    width: 100%;
  }

  .privacy-settings {
    right: auto;
    left: 10px;
    bottom: 10px;
  }

  .gdl-assistant {
    right: 10px;
    bottom: 10px;
  }

  .assistant-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
  }

  .news-ticker {
    margin-top: 142px;
  }

  .news-ticker-item {
    font-size: 0.84rem;
  }

  .news-ticker-badge {
    min-height: 22px;
    font-size: 0.66rem;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 108px;
    height: 34px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-top: 144px;
  }

  .news-ticker + .hero {
    padding-top: 0;
  }

  .hero-media {
    background-position: 50% 34%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 22, 20, 0.95), rgba(13, 22, 20, 0.68)),
      linear-gradient(180deg, rgba(13, 22, 20, 0.22), rgba(13, 22, 20, 0.58));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 0;
  }

  .page-hero {
    padding-top: 180px;
  }

  .program-banners {
    grid-template-columns: 1fr;
  }

  .insolvency-insight {
    grid-template-columns: 1fr;
  }

  .publication-grid,
  .proof-grid,
  .risk-node-row,
  .timeline-flow,
  .dashboard-grid,
  .reason-grid,
  .pricing-grid,
  .estimator-panel,
  .estimator-controls,
  .payment-layout,
  .contact-layout,
  .contact-details,
  .contact-list,
  .trust-layout,
  .trust-metrics,
  .faq-layout,
    .form-grid,
    .recipient-grid,
    .radio-grid,
  .service-list,
  .split {
    grid-template-columns: 1fr;
  }

  .publication-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .primary-action {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .trial-form {
    grid-template-columns: 1fr;
  }

  .trial-button {
    white-space: normal;
  }

  .trial-submit {
    width: 100%;
  }

  .form-button {
    justify-self: stretch;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-action-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .data-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
