/* ============================================================
   JurisIT — jurisit.com.au
   Shared stylesheet — Phase 1
   NOTE: TTF fonts used until WOFF2 conversion is run before launch.
         Convert EBGaramond-Regular.ttf + EBGaramond-Bold.ttf to WOFF2
         and update the src lines below.
   RULE: No CSS custom properties. All hex values hardcoded.
   ============================================================ */

/* --- Fonts --- */

@font-face {
  font-family: 'EB Garamond';
  src: url('/fonts/eb-garamond-v26-latin-regular.woff2') format('woff2'),
       url('/fonts/EBGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('/fonts/eb-garamond-v26-latin-700.woff2') format('woff2'),
       url('/fonts/EBGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Reset --- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
  background: #FFFFFF;
}

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

a {
  color: #D83B01;
  text-decoration: none;
}

a:hover {
  color: #002050;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

/* --- Typography --- */

h1 {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #002050;
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2;
  color: #002050;
}

h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  color: #002050;
}

h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  color: #002050;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* --- Layout --- */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: #F2F4F8;
}

.section-navy {
  background: #002050;
  color: #FFFFFF;
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: #FFFFFF;
}

.section-navy p {
  color: #FFFFFF;
}

.section-navy a {
  color: #D83B01;
}

.section-navy a:hover {
  color: #FFFFFF;
}

/* --- Section eyebrow label --- */

.section-eyebrow {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D83B01;
  margin-bottom: 0.75rem;
}

/* --- Buttons --- */

.btn-primary {
  display: inline-block;
  background: #D83B01;
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary:hover {
  background: #002050;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #002050;
  border: 2px solid #002050;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-secondary:hover {
  background: #002050;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-secondary-white {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-secondary-white:hover {
  background: #FFFFFF;
  color: #002050;
  text-decoration: none;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  padding: 0.375rem 0.875rem;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  border-color: #FFFFFF;
}

/* --- Site Header / Navigation --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #002050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-logo-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-logo-text:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  display: block;
  padding: 0.375rem 0.625rem;
  color: #FFFFFF;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #D83B01;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: #D83B01;
}

.site-nav .nav-coming-soon {
  display: block;
  padding: 0.375rem 0.625rem;
  color: #8A9BB8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9375rem;
  cursor: default;
  white-space: nowrap;
}

.nav-header-extras {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

/* Region switcher — header */
.region-switcher {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.region-active {
  font-weight: bold;
  color: #FFFFFF;
}

.region-separator {
  color: #8A9BB8;
  margin: 0 0.3125rem;
}

.region-switcher a {
  color: #8A9BB8;
  text-decoration: none;
  font-weight: normal;
}

.region-switcher a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #FFFFFF;
  line-height: 1;
}

.hamburger-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
}

.hamburger-icon::before { top: -7px; }
.hamburger-icon::after  { top: 7px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #002050;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-region {
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-solo {
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 1.5rem;
  color: #FFFFFF;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #D83B01;
  text-decoration: none;
}

.mobile-nav .nav-coming-soon {
  display: block;
  padding: 0.875rem 1.5rem;
  color: #8A9BB8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: default;
}

/* --- Hero --- */

.hero {
  background: #002050;
  color: #FFFFFF;
  padding: 5rem 0 4rem;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero h1 .hero-accent {
  display: block;
  color: #D83B01;
}

.hero-sub {
  font-size: 1.125rem;
  color: #FFFFFF;
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
}

.hero-credentials {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #8A9BB8;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

/* --- Callout box --- */

.callout {
  border-left: 4px solid #002050;
  background: #F2F4F8;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p {
  margin: 0;
  color: #444444;
}

.callout strong {
  color: #002050;
}

.section-navy .callout {
  border-left-color: #D83B01;
  background: rgba(255, 255, 255, 0.08);
}

.section-navy .callout p {
  color: #FFFFFF;
}

.callout-centered {
  text-align: center;
  border-left: none;
  border-top: 4px solid #D83B01;
}

/* --- Three Pillars --- */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  display: flex;
  flex-direction: column;
}

.pillar-card-header {
  padding: 1.25rem 1.5rem;
}

.pillar-card-header h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}

.pillar-card-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  margin: 0;
  font-style: italic;
}

.pillar-technology  { background: #002050; }
.pillar-compliance  { background: #185FA5; }
.pillar-automation  { background: #D83B01; }
.pillar-ai-overlay  { background: #534AB7; }

.pillar-card-body {
  padding: 1.5rem;
  flex: 1;
}

.pillar-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.pillar-card-body ul li {
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
  font-size: 0.9375rem;
  color: #444444;
  line-height: 1.5;
}

.pillar-card-body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #8A9BB8;
  font-weight: bold;
}

.pillar-card-footer {
  padding: 1rem 1.5rem;
  background: #F2F4F8;
  border-top: 1px solid #D9DCE3;
  font-size: 0.875rem;
  color: #444444;
  font-style: italic;
  line-height: 1.5;
}

.pillar-card-footer strong {
  font-style: normal;
  color: #002050;
  display: block;
  margin-bottom: 0.25rem;
}

/* --- Solution cards --- */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.solution-card:hover {
  box-shadow: 0 4px 20px rgba(0, 32, 80, 0.12);
}

.solution-card.coming-soon {
  opacity: 0.55;
  pointer-events: none;
}

.solution-card-tag {
  height: 5px;
}

.tag-conveyancing     { background: #002050; }
.tag-private-client   { background: #185FA5; }
.tag-all-firms        { background: #444444; }
.tag-general-practice { background: #D83B01; }

.solution-card-body {
  padding: 1.5rem;
  flex: 1;
}

.solution-card-body h3 {
  font-size: 1.0625rem;
  color: #002050;
  margin-bottom: 0.5rem;
}

.solution-card-body p {
  font-size: 0.9375rem;
  color: #444444;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.solution-card-badges {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.badge {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.6875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  color: #FFFFFF;
  line-height: 1.4;
}

.badge-technology  { background: #002050; }
.badge-compliance  { background: #185FA5; }
.badge-automation  { background: #D83B01; }
.badge-ai          { background: #534AB7; }

.solution-card-cta {
  padding: 1rem 1.5rem;
  border-top: 1px solid #D9DCE3;
}

.solution-card-cta a {
  color: #D83B01;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9375rem;
}

.solution-card-cta a:hover {
  text-decoration: underline;
  color: #002050;
}

.solution-card-coming-soon-label {
  color: #8A9BB8;
  font-size: 0.9375rem;
  font-style: italic;
}

/* --- JARI Domain tables --- */

.domain-section {
  margin-bottom: 2.5rem;
}

.domain-section h3 {
  margin-bottom: 1rem;
}

.domain-table-wrapper {
  overflow-x: auto;
}

.domain-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.domain-table th,
.domain-table td {
  padding: 0.875rem 1rem;
  border: 1px solid #D9DCE3;
  font-size: 0.9375rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.domain-table th {
  background: #002050;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 0.875rem;
}

.domain-table .col-label {
  background: #F2F4F8;
  font-weight: bold;
  color: #002050;
  width: 16%;
}

.domain-table .col-why {
  background: #F2F4F8;
}

.domain-table .col-why strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8A9BB8;
  margin-bottom: 0.375rem;
  font-weight: bold;
}

/* --- Readiness band table --- */

.band-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.band-table th,
.band-table td {
  padding: 0.875rem 1rem;
  border: 1px solid #D9DCE3;
  font-size: 0.9375rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.band-table th {
  background: #002050;
  color: #FFFFFF;
  font-weight: bold;
}

.band-table tbody tr:nth-child(odd)  td { background: #FFFFFF; }
.band-table tbody tr:nth-child(even) td { background: #F2F4F8; }

.band-table .band-score {
  font-size: 1.5rem;
  font-weight: bold;
  color: #002050;
  text-align: center;
  width: 6%;
}

.band-table .band-name {
  font-weight: bold;
  color: #002050;
  width: 15%;
}

/* --- FAQ accordion --- */

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid #D9DCE3;
}

.faq-item:first-child {
  border-top: 1px solid #D9DCE3;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #002050;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  line-height: 1.4;
}

.faq-question:hover {
  color: #D83B01;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #8A9BB8;
  line-height: 1;
  transition: transform 0.2s ease;
  margin-top: 0.1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: #444444;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.faq-answer.is-open {
  display: block;
}

/* --- JARI widget placeholder --- */

.jari-widget-placeholder {
  background: #F2F4F8;
  border: 2px solid #D9DCE3;
  padding: 2.5rem 2rem;
  text-align: center;
}

.jari-widget-placeholder p {
  font-family: Arial, Helvetica, sans-serif;
  color: #444444;
  margin-bottom: 0.5rem;
}

.jari-widget-placeholder p.sub {
  color: #8A9BB8;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* --- Credentials badge grid (/about) --- */

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.credential-item {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  padding: 1.25rem 1.5rem;
}

.credential-item strong {
  display: block;
  color: #002050;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.credential-item p {
  font-size: 0.875rem;
  color: #444444;
  margin: 0;
  line-height: 1.5;
}

/* --- Partner badge images --- */

.partner-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.partner-badge img {
  height: 60px;
  width: auto;
}

/* --- Contact form --- */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #002050;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.form-required {
  color: #D83B01;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #D9DCE3;
  background: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #444444;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid #002050;
  outline-offset: 0;
  border-color: #002050;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23444444' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-error-msg {
  color: #D83B01;
  font-size: 0.875rem;
  margin-top: 0.875rem;
  display: none;
}

.form-error-msg.is-visible {
  display: block;
}

.form-submit-wrap {
  margin-top: 0.5rem;
}

/* Disable state */
.btn-primary:disabled,
.btn-primary[disabled] {
  background: #8A9BB8;
  cursor: not-allowed;
}

/* --- Contact blocks --- */

.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-block {
  background: #F2F4F8;
  padding: 1.5rem;
  border-left: 3px solid #002050;
}

.contact-block h3 {
  color: #002050;
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
}

.contact-block p {
  font-size: 0.9375rem;
  color: #444444;
  margin-bottom: 0.375rem;
}

.contact-block a {
  color: #002050;
}

.contact-block a:hover {
  color: #D83B01;
}

/* --- Footer CTA section --- */

.footer-cta-section {
  background: #F2F4F8;
  padding: 4rem 0;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-cta-card {
  background: #FFFFFF;
  padding: 2rem;
  border: 1px solid #D9DCE3;
}

.footer-cta-card h3 {
  color: #002050;
  margin-bottom: 0.375rem;
}

.footer-cta-card .footer-cta-tagline {
  font-size: 0.875rem;
  color: #8A9BB8;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.footer-cta-card p {
  color: #444444;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

/* --- Site Footer --- */

.site-footer {
  background: #002050;
  color: #FFFFFF;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #8A9BB8;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-tagline {
  color: #8A9BB8;
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 0.625rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-logo {
  margin-bottom: 0.75rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-logo-text:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  font-size: 0.8125rem;
  color: #8A9BB8;
  line-height: 1.5;
}

.footer-region {
  font-size: 0.875rem;
}

.footer-region .region-active {
  font-weight: bold;
  color: #FFFFFF;
}

.footer-region .region-separator {
  color: #8A9BB8;
  margin: 0 0.375rem;
}

.footer-region a {
  color: #8A9BB8;
  text-decoration: none;
}

.footer-region a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* --- Breadcrumb --- */

.breadcrumb {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #8A9BB8;
  padding: 0.75rem 0;
}

.breadcrumb a {
  color: #8A9BB8;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #002050;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 0.375rem;
  color: #D9DCE3;
}

.breadcrumb-current {
  color: #444444;
}

/* --- Utility --- */

.text-orange  { color: #D83B01; }
.text-navy    { color: #002050; }
.text-muted   { color: #8A9BB8; }
.text-white   { color: #FFFFFF; }
.text-slate   { color: #444444; }

.text-caption {
  font-size: 0.875rem;
  color: #8A9BB8;
  line-height: 1.5;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

hr {
  border: none;
  border-top: 1px solid #D9DCE3;
  margin: 2rem 0;
}

/* --- Responsive: tablet (768px) --- */

@media (max-width: 768px) {

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.375rem; }

  /* Navigation */
  .nav-wrapper { display: none; }
  .hamburger { display: block; }

  /* Hero */
  .hero { padding: 3rem 0 2.5rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { width: 100%; text-align: center; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; }

  /* Domain score tables — stack to single column on mobile */
  .domain-table-wrapper { overflow-x: visible; }
  .domain-table { min-width: 0; }
  .domain-table thead { display: none; }
  .domain-table,
  .domain-table tbody,
  .domain-table tr,
  .domain-table td { display: block; width: 100%; }
  .domain-table td.col-label { display: none; }
  .domain-table tbody tr:first-child td:nth-child(2)::before,
  .domain-table tbody tr:first-child td:nth-child(3)::before {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8A9BB8;
    font-weight: bold;
    margin-bottom: 0.375rem;
  }
  .domain-table tbody tr:first-child td:nth-child(2)::before { content: "Score 1"; }
  .domain-table tbody tr:first-child td:nth-child(3)::before { content: "Score 5"; }

  /* Solutions */
  .solutions-grid { grid-template-columns: 1fr 1fr; }

  /* Footer CTA */
  .footer-cta-grid { grid-template-columns: 1fr; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-blocks { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Credentials grid */
  .credentials-grid { grid-template-columns: 1fr; }

  /* Section */
  .section { padding: 2.5rem 0; }

}

/* --- Responsive: mobile (480px) --- */

@media (max-width: 480px) {

  h1 { font-size: 1.75rem; }

  .solutions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero { padding: 2.5rem 0 2rem; }

}
