:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fafbfc;
  --surface-tint: #fff5f4;
  --text: #111111;
  --muted: #4b5563;
  --muted-2: #667085;
  --border: #d9dde2;
  --border-soft: #e7eaee;
  --brand-red: #c81f1a;
  --brand-yellow: #f2b431;
  --cta-card: #7a2f3a;
  --shadow-sm: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04);
  --shadow-md: 0 0.5rem 1rem rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 1rem 2rem rgba(16, 24, 40, 0.08);
  --container: 82.5rem;
  --container-pad: 5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container,
.narrow {
  width: var(--container);
  max-width: calc(100% - var(--container-pad));
  margin: 0 auto;
}



/* ---------- COOKIES ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #111;
  color: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  display: none;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-actions button {
  margin-left: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.875rem 0 0.625rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: 10.625rem 1fr 9.375rem;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  width: 8rem;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.125rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #233042;
}

.nav-cta {
  justify-self: end;
  background: var(--brand-red);
  color: #fff;
  padding: 0.875rem 1.375rem;
  border-radius: 0.5625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.08);
}

/* ---------- GLOBAL UI ---------- */
.section {
  padding: 6rem 0 0;
  padding-bottom: 2rem;
}

.section-kicker {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-red);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}

.left-align {
  text-align: left;
}

.section-intro {
  max-width: 40rem;
  margin: -0.25rem auto 2.25rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #444;
}

.accent {
  color: var(--brand-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  border-radius: 0.6875rem;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 600;
  gap: 0.5rem;
}

.primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 0.5rem 1.125rem rgba(200, 31, 26, 0.18);
}

.secondary {
  background: var(--brand-yellow);
  color: #111;
}

.ghost,
.outline {
  background: #fff;
  color: #2a2a2a;
  border: 0.0625rem solid #d1d5db;
}

.small-btn {
  min-height: 2.25rem;
  padding: 0 0.875rem;
  border-radius: 0.4375rem;
  font-size: 0.75rem;
}

.feature-icon svg,
.service-badge svg,
.tool-icon-box svg,
.linkedin-mark svg,
.section-icon-circle svg,
.method-icon svg,
.iso-icon svg,
.tools-pill-icon svg,
.contact-info-icon svg,
.impact-card-icon svg,
.impact-stat-icon svg,
.faq-support-icon svg {
  width: 75%;
  height: 75%;
  display: block;
}

.soft-red-icon {
  background: #fdeaea;
  color: var(--brand-red);
  border: 0.0625rem solid #f6d5d2;
}

/* ---------- HOMEPAGE HERO ---------- */
.hero {
  padding: 2.125rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.625rem;
  align-items: start;
}

.hero-left {
  max-width: 47.5rem;
  padding-top: 0.75rem;
}

.hero-left h1 {
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 0.96;
  letter-spacing: -0.2rem;
  font-weight: 700;
}

.hero-left p {
  margin: 1.75rem 0 0;
  max-width: 56.25rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #3f3f3f;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.875rem;
  flex-wrap: wrap;
}

.arrow,
.circle-mark {
  margin-left: 0.625rem;
}

.hero-line {
  width: 100%;
  max-width: 61.25rem;
  height: 0.0625rem;
  background: #d7d7d7;
  margin-top: 1.75rem;
}

.hero-features {
  margin-top: 1.5rem;
  display: flex;
  gap: 2.125rem;
  flex-wrap: wrap;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #1f2937;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999rem;


  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.03);
}

.hero-right {
  position: relative;
  padding-top: 0.5rem;
}

.hero-topbar {
  width: 16.875rem;
  height: 0.4375rem;
  border-radius: 999rem;
  background: #000;
  margin-left: 6.5rem;
  margin-bottom: 0.75rem;
}

.hero-image-wrap {
  position: relative;
  max-width: 53.75rem;
}

.hero-img {
  width: 100%;
  border-radius: 0 0 1.375rem 1.375rem;
  box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.08);
}

.success-badge {
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  background: var(--brand-yellow);
  padding: 0.75rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.75rem;
  color: #111;
  box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.08);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-box {
  position: absolute;
  left: -0.875rem;
  bottom: -1.125rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.875rem 1.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 0.875rem;
  align-items: center;
  min-width: 16rem;
}

.floating-icon {
  color: var(--brand-red);
  font-size: 1.875rem;
  line-height: 1;
}

.floating-box small {
  display: block;
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.floating-box strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
}

/* ---------- HOMEPAGE SERVICES ---------- */
.services-section {
  padding-top: 4.625rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  background: #fff;
  border-radius: 0.625rem;
  border: 0.0625rem solid #d5d7da;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.service-media {
  position: relative;
  height: 14.6875rem;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.78) 100%);
}

.service-badge {
  position: absolute;
  left: 0.875rem;
  bottom: 1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #fff;
  z-index: 2;
}

.red-badge {
  background: var(--brand-red);
}

.yellow-badge {
  background: var(--brand-yellow);
  color: #111;
}

.service-title {
  position: absolute;
  left: 3.125rem;
  bottom: 1.125rem;
  right: 1.125rem;
  margin: 0;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 700;
  z-index: 2;
}

.service-body {
  padding: 1.125rem 1.125rem 1.25rem;
}

.service-body p {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: #333;
}

.capabilities-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1.125rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.capabilities-grid li {
  position: relative;
  padding-left: 0.875rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #444;
}

.capabilities-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #888;
  font-size: 0.6875rem;
}

.custom-cta {
  margin-top: 2.125rem;
  background: #fff;
  border-radius: 0.625rem;
  border: 0.0625rem solid #d5d7da;
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 1.5rem 1.625rem 1.25rem;
}

.custom-cta h3 {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
}

.custom-cta p {
  max-width: 38.75rem;
  margin: 0 auto 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #444;
}

/* ---------- HOMEPAGE METHODOLOGY ---------- */
.methodology-section {
  padding-top: 6rem;
}

.methodology-intro {
  max-width: 47.5rem;
  margin: -0.375rem auto 2.5rem;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}

.method-card {
  background: #fff;
  border-radius: 0.75rem;
  border: 0.0625rem solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1.375rem 1.375rem 1.25rem;
  min-height: 23.25rem;
}

.method-top {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.625rem;
}

.method-num {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 800;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

.red {
  background: var(--brand-red);
  color: #fff;
}

.yellow {
  background: var(--brand-yellow);
  color: #111;
}

.method-top h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
}

.method-icon {
  width: 2.125rem;
  height: 2.125rem;
  margin: 0 0 1.125rem 0.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.red-icon {
  color: var(--brand-red);
}

.dark-icon {
  color: #111;
}

.method-card p {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  line-height: 1.68;
  color: #333;
}

.method-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.method-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #333;
}

.method-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  color: var(--brand-red);
}

.iso-pill-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.iso-pill {
  background: #fff;
  border: 0.0625rem solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: 999rem;
  padding: 0.875rem 1.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #333;
  text-align: center;
}

.iso-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-yellow);
}

/* ---------- HOMEPAGE TOOLS ---------- */
.tools-section {
  padding-top: 6rem;
}

.tools-intro {
  max-width: 42.5rem;
  margin: -0.625rem auto 2.375rem;
}

.tools-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}

.tool-card-detailed {
  background: #fff;
  border: 0.0625rem solid #d8dde3;
  border-radius: 0.625rem;
  box-shadow: var(--shadow-md);
  padding: 1.125rem 1.125rem 1rem;
  min-height: 12.5rem;
}

.tool-icon-box {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 0.0625rem solid #eceff3;
  box-shadow: 0 0.375rem 0.875rem rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  margin-bottom: 1.375rem;
}

.tool-card-detailed h3 {
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.tool-card-detailed p {
  margin: 0 0 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #333;
}

.tools-pill-wrap {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.tools-pill {
  background: #fff;
  border: 0.0625rem solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: 999rem;
  padding: 0.875rem 1.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #333;
}

.tools-pill-icon {
  width: 1.125rem;
  height: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- HOMEPAGE INSIGHTS ---------- */
.insights-section {
  padding-top: 6.25rem;
}

.insights-intro {
  max-width: 38.75rem;
  margin: -0.5rem auto 2.125rem;
}

.insights-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
}

.recent-label {
  margin-top: 1.25rem;
}

.featured-article-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: #fff;
  border: 0.0625rem solid var(--border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.featured-article-visual {
  min-height: 12.875rem;
  background: linear-gradient(135deg, #efe0d7, #f5e7df);
  position: relative;
  padding: 0.875rem;
}

.featured-chip-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.featured-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 1.25rem;
  padding: 0 0.5rem;
  background: var(--brand-red);
  color: #fff;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 700;
}

.featured-tag {
  font-size: 0.625rem;
  color: var(--brand-red);
}

.featured-visual-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

.featured-circle {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 999rem;
  background: #f4f0ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.featured-mini-card {
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
  max-width: 10rem;
  line-height: 1.25;
}

.featured-article-copy {
  padding: 0.875rem 1.125rem 1rem;
}

.featured-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.625rem;
  color: #666;
  margin-bottom: 0.625rem;
}

.featured-meta span:first-child {
  color: var(--brand-red);
}

.featured-article-copy h3 {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
}

.featured-article-copy p {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #444;
}

.featured-divider {
  height: 0.0625rem;
  background: #e5e7eb;
  margin: 0.625rem 0;
}

.featured-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.featured-read-link {
  font-size: 0.6875rem;
  color: var(--brand-red);
  font-weight: 600;
}

.featured-time {
  font-size: 0.625rem;
  color: #666;
}

.recent-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.recent-article-card {
  background: #fff;
  border: 0.0625rem solid var(--border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.recent-article-visual {
  min-height: 8rem;
  position: relative;
  padding: 0.75rem 0.75rem 0.625rem;
}

.recent-article-visual.warm {
  background: #f3e8c9;
}

.recent-article-visual.neutral {
  background: #f4f4f4;
}

.recent-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.625rem;
}

.recent-top-meta span:first-child {
  font-size: 0.5625rem;
  color: var(--brand-red);
  font-weight: 600;
}

.recent-circle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999rem;
  background: #f8f3ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.recent-mini-card {
  margin: 1.25rem auto 0;
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0.625rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-align: center;
  max-width: 8.75rem;
  line-height: 1.25;
}

.recent-article-body {
  padding: 0.75rem;
}

.recent-body-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  font-size: 0.5625rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.recent-body-meta span:first-child {
  color: var(--brand-red);
}

.recent-article-body h4 {
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: 800;
}

.recent-article-body p {
  margin: 0 0 0.625rem;
  font-size: 0.625rem;
  line-height: 1.5;
  color: #444;
}

.recent-read-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.recent-read-row a {
  font-size: 0.625rem;
  color: var(--brand-red);
  font-weight: 600;
}

.recent-read-row span {
  font-size: 0.625rem;
  color: #888;
}

.insights-button-wrap {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

/* ---------- CONTACT ---------- */
.contact-section {
  padding-top: 6.25rem;
  padding-bottom: 1.125rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy-panel {
  padding-top: 0.5rem;
}

.contact-kicker {
  text-align: left;
  margin-bottom: 0.875rem;
}

.contact-copy-panel h2 {
  text-align: left;
  max-width: 26.25rem;
  margin-bottom: 1.125rem;
}

.contact-intro {
  max-width: 26.875rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 2.375rem;
}

.contact-info-list {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.125rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}

.contact-info-icon {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--brand-red);
  flex: 0 0 auto;
  margin-top: 0.25rem;
}

.contact-label {
  font-size: 0.9375rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  line-height: 1.5;
}

.linkedin-mark {
  display: inline-flex;
  width: 1.375rem;
  height: 1.375rem;
  color: #111;
}

.contact-form-card-wrap {
  position: relative;
}

.contact-corner {
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  transform: rotate(11deg);
  z-index: 2;
}

.contact-corner-top {
  background: var(--brand-yellow);
  top: -1.25rem;
  right: -1.125rem;
}

.contact-corner-bottom {
  background: var(--brand-red);
  bottom: -1.125rem;
  left: -1.25rem;
  transform: rotate(-11deg);
}

.contact-form-card {
  background: #fff;
  border: 0.0625rem solid #d8dde3;
  box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.06);
  border-radius: 0.875rem;
  padding: 2.125rem 2.25rem 2.25rem;
  position: relative;
  z-index: 1;
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.375rem;
}

.contact-form-grid label span {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
}

.contact-form-grid label span em {
  color: var(--brand-red);
  font-style: normal;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  border: 0.0625rem solid #d7dde4;
  background: #fff;
  color: #111;
  border-radius: 0.625rem;
  padding: 0.9375rem 1rem;
  outline: none;
}

.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder {
  color: #9aa3af;
}

.contact-form-grid select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 1.375rem) calc(50% - 0.1875rem), calc(100% - 1rem) calc(50% - 0.1875rem);
  background-size: 0.375rem 0.375rem, 0.375rem 0.375rem;
  background-repeat: no-repeat;
}

.contact-form-grid textarea {
  min-height: 8.25rem;
  resize: vertical;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  margin-top: 1.375rem;
  width: 100%;
  min-height: 3.375rem;
  border: 0;
  border-radius: 0.625rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 0.5rem 1.125rem rgba(200, 31, 26, 0.18);
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  margin-top: 4.5rem;
  background: #fff;
}

.footer-top-line {
  height: 0.25rem;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 100%);
}

.site-footer .narrow {
  padding-top: 3rem;
  padding-bottom: 2.625rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.75rem;
  align-items: start;
}

.footer-brand-block {
  max-width: 32.5rem;
}

.footer-logo {
  width: 7.375rem;
  height: auto;
  margin-bottom: 2.125rem;
}

.footer-brand-text {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #4b5563;
  max-width: 31.25rem;
}

.footer-newsletter h3 {
  margin-bottom: 0.875rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #1f2937;
}

.footer-newsletter p {
  margin: 0 0 1.125rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563;
}

.footer-subscribe-form {
  display: flex;
  max-width: 22.5rem;
}

.footer-subscribe-form input {
  flex: 1;
  min-height: 2.875rem;
  border: 0.0625rem solid #cfd6dd;
  border-right: 0;
  border-radius: 0.625rem 0 0 0.625rem;
  background: #fff;
  padding: 0 1rem;
}

.footer-subscribe-form input::placeholder {
  color: #9aa3af;
}

.footer-subscribe-form button {
  width: 3.25rem;
  min-height: 2.875rem;
  border: 0;
  border-radius: 0 0.625rem 0.625rem 0;
  background: var(--brand-red);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.footer-divider {
  height: 0.0625rem;
  background: #d9dde2;
  margin: 2.625rem 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.5rem;
}

.footer-links-col {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #374151;
  margin-bottom: 0.375rem;
}

.footer-links-col a {
  font-size: 1rem;
  line-height: 1.35;
  color: #4b5563;
}

.footer-divider-bottom {
  margin-top: 3.375rem;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-bottom-left,
.footer-bottom-right a {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #667085;
}

.footer-bottom-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* ---------- SERVICES PAGE HERO ---------- */
.services-hero {
  padding: 2.6rem 0 3.4rem;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2.6rem;
  align-items: start;
}

.services-hero-copy {
  max-width: 34rem;
  padding-top: 0.5rem;
}

.services-hero-kicker {
  text-align: left;
  margin-bottom: 0.5rem;
}

.services-hero-copy h1 {
  margin-bottom: 0;
  max-width: 34rem;
  font-size: 3.5rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.services-hero-copy p {
  margin: 1rem 0 0;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.services-hero-features {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.services-hero-features .feature-item {
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4a4a4a;
}

.services-hero-features .feature-icon {
  width: 1.8rem;
  height: 1.8rem;
  min-width: 1.8rem;
  margin-top: 0.05rem;
}

.services-hero-visual {
  position: relative;
  padding-top: 0.4rem;
}

.services-hero-topbar {
  width: 14.5rem;
  height: 0.38rem;
  background: #000;
  border-radius: 999rem;
  margin-left: 5.8rem;
  margin-bottom: 0.9rem;
}

.services-hero-badge {
  position: absolute;
  top: 0.45rem;
  right: 0.35rem;
  background: #fff;
  border: 0.0625rem solid #ececec;
  border-left: 0.2rem solid var(--brand-red);
  box-shadow: var(--shadow-md);
  border-radius: 0.45rem;
  padding: 0.62rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 3;
}

.services-hero-image-card {
  position: relative;
  background: #fff;
  border: 0.0625rem solid var(--border);
  border-radius: 0.8rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.services-hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-mini-btn {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--brand-red);
  color: #fff;
  min-height: 2rem;
  padding: 0 0.9rem;
  border-radius: 0.35rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.16);
}

/* ---------- STRATEGIC FRAMEWORK ---------- */
.strategic-framework-section {
  padding-top: 5.5rem;
}

.section-icon-circle {
  width: 1.9rem;
  height: 1.9rem;
  margin: 0 auto 0.9rem;
  border-radius: 999rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff1f0;
  color: var(--brand-red);
  border: 0.0625rem solid #f4d2cf;
}

.framework-intro {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
}

.framework-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.framework-card {
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.2rem 1.05rem;
}

.framework-card-head {
  margin-bottom: 0.7rem;
}

.framework-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.framework-card-icon {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.framework-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.framework-card-head p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #555;
}

.framework-subtitle,
.framework-bottom-title {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
}

.framework-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.75rem;
}

.framework-list-item {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #555;
}

.framework-list-item::before {
  content: "";
  width: 0.22rem;
  height: 0.22rem;
  background: var(--brand-red);
  border-radius: 999rem;
  position: absolute;
  left: 0;
  top: 0.42rem;
}

.framework-highlight {
  background: var(--surface-tint);
  border: 0.0625rem solid #f1cdc8;
  border-radius: 0.55rem;
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.7rem;
}

.framework-highlight strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #222;
}

.framework-highlight p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #555;
}

.framework-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.75rem;
}

.framework-mini-box {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #555;
}

.framework-mini-box::before {
  content: "";
  width: 0.22rem;
  height: 0.22rem;
  background: #e8b8b1;
  border-radius: 999rem;
  position: absolute;
  left: 0;
  top: 0.42rem;
}

.framework-ecosystem-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--surface-tint);
  border: 0.0625rem solid #f0d7d3;
  border-radius: 0.75rem;
  padding: 1.15rem 1.2rem;
}

.framework-ecosystem-circle {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999rem;
  border: 0.08rem dashed #efb9b1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 800;
  background: #fff;
  margin-left: 0.4rem;
}

.framework-ecosystem-copy h4 {
  margin-bottom: 0.28rem;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 800;
}

.framework-ecosystem-copy p {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #555;
}

.framework-inline-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-red);
}

/* ---------- ECOSYSTEM IMPACT ---------- */
.ecosystem-impact-section {
  background: var(--surface-soft);
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}

.ecosystem-impact-intro {
  max-width: 44rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
}

.ecosystem-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.impact-card,
.combined-impact-card,
.faq-item,
.faq-support-card {
  box-shadow: var(--shadow-sm), var(--shadow-md);
  border-color: #dfe3e8;
}

.impact-card {
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.75rem;
  padding: 1.35rem;
}

.impact-card-head {
  padding-bottom: 0.85rem;
  border-bottom: 0.0625rem solid #eceff2;
  margin-bottom: 1rem;
}

.impact-card-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.impact-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.impact-card-title-wrap h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.impact-subline {
  margin-top: 0.1rem;
  font-size: 0.78rem;
  line-height: 1.3;
  color: #777;
}

.impact-card-copy {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

.impact-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.impact-stat-box,
.impact-bottom-note,
.combined-impact-box,
.industry-tile,
.combined-impact-pill {
  background: #f8f8f9;
  box-shadow: 0 0.0625rem 0.125rem rgba(16, 24, 40, 0.03), 0 0.25rem 0.5rem rgba(16, 24, 40, 0.04);
}

.impact-stat-box {
  border: 0.0625rem solid #e1e5ea;
  border-radius: 0.5rem;
  padding: 0.8rem 0.85rem;
}

.impact-stat-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.impact-stat-icon {
  width: 2rem;
  height: 2rem;
  background: #fdeaea;
  color: var(--brand-red);
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.impact-stat-label {
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 700;
  color: #222;
}

.impact-stat-value {
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 0.14rem;
}

.impact-stat-desc {
  font-size: 0.76rem;
  line-height: 1.35;
  color: #666;
}

.impact-bottom-note {
  border: 0.0625rem solid #e1e5ea;
  border-radius: 0.5rem;
  padding: 0.8rem 0.85rem;
}

.impact-bottom-note strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.78rem;
  line-height: 1.25;
  color: #222;
}

.impact-bottom-note p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #555;
}

.combined-impact-card {
  margin-top: 1.5rem;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.75rem;
  background: #fff;
  padding: 1.25rem;
}

.combined-impact-card h3 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
}

.combined-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.combined-impact-box {
  border: 0.0625rem solid #e1e5ea;
  border-radius: 0.5rem;
  padding: 1rem 0.9rem;
  text-align: center;
}

.combined-impact-value {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 0.35rem;
}

.combined-impact-title {
  font-size: 0.85rem;
  line-height: 1.25;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.25rem;
}

.combined-impact-box p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
  color: #555;
}

.combined-impact-pill {
  margin: 1rem auto 0;
  width: fit-content;
  max-width: 100%;
  border: 0.0625rem solid #e6e8ec;
  border-radius: 999rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #666;
  text-align: center;
}

.industries-block {
  margin-top: 1.75rem;
}

.industries-block h4 {
  margin: 0 0 0.9rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.industry-tile {
  border: 0.0625rem solid #e1e5ea;
  border-radius: 0.5rem;
  padding: 0.95rem 0.8rem;
  text-align: center;
  font-size: 0.78rem;
  color: #333;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding-top: 5.5rem;
  padding-bottom: 0.5rem;
}

.faq-intro {
  max-width: 46rem;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-item.is-open {
  border-color: #efb7b0;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.2rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  color: #111;
}

.faq-question span:first-child {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
}

.faq-icon {
  width: 1.6rem;
  height: 1.6rem;
  min-width: 1.6rem;
  border-radius: 999rem;
  border: 0.1rem solid #3b3b3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: #3b3b3b;
}

.faq-item.is-open .faq-icon {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.2rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0 0 0.9rem;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #444;

}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-support-card {
  margin: 2rem auto 0;
  max-width: 56rem;
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.9rem;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  align-items: center;
}

.faq-support-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-support-copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 800;
}

.faq-support-copy p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  max-width: 40rem;
}

.faq-support-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.faq-support-badges span {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #444;
}

.faq-support-badges span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999rem;
  background: var(--brand-red);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

/* ---------- CTA ---------- */
.cta-section {
  margin-top: 4.5rem;
  padding: 4rem 0;
  background: #b3262e;
  color: #fff;
}

.cta-container {
  max-width: 1200px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  opacity: 0.9;
}

.cta-star {
  color: #ffcc33;
}

.cta-content h2 {
  color: #fff;
  text-align: left;
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.cta-text {
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.btn-yellow {
  background: var(--brand-yellow);
  color: #111;
  font-weight: 700;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.16);
}

.btn-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.92rem;
  opacity: 0.94;
}

.cta-card {
  background: var(--cta-card);
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.7rem 1.75rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
}

.cta-card h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
}

.cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.45;
}

.cta-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffd166;
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.cta-section .btn.primary {
  background: #fff;
  color: var(--brand-red);
  border: none;
}

.cta-section .btn.secondary,
.cta-section .btn.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
  margin-top: 0.6rem;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  background: #fff;
}

/* ---------- Hero ---------- */

.contact-hero-page {
  padding: 2.6rem 0 3rem;
}

.contact-hero-page .narrow {
  text-align: center;
}

.contact-hero-page h1 {
  max-width: 40rem;
  margin: 0 auto 1rem;
  font-size: 3.6rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #111;
}

.contact-hero-page p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.contact-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.contact-hero-card {
  width: 100%;
  height: 100%;
  max-width: 19rem;
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.75rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04), 0 0.5rem 1rem rgba(16, 24, 40, 0.06);
  text-align: center;
}

.contact-hero-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.8rem;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-card-icon.dark {
  color: #111;
}

.contact-hero-card-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.contact-hero-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.contact-hero-card p {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  color: #666;
}

.contact-hero-card a,
.contact-hero-address {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--brand-red);
}

/* ---------- Main section ---------- */

.contact-main-section {
  padding: 3.4rem 0 1rem;
}

.contact-main-grid {
  display: block;
}

.contact-page-kicker {
  text-align: left;
  margin-bottom: 0.65rem;
}

.contact-form-panel h2 {
  max-width: 28rem;
  margin-bottom: 0.85rem;
}

.contact-page-intro {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.contact-page-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
}

.contact-page-form-grid label,
.contact-select-wrap {
  display: block;
}

.contact-page-form-grid .full {
  grid-column: 1 / -1;
}

.contact-page-form-grid span,
.contact-select-wrap span,
.contact-option-title {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
}

.contact-page-form-grid em {
  color: var(--brand-red);
  font-style: normal;
}

.contact-page-form-grid input,
.contact-page-form-grid textarea,
.contact-select-wrap select {
  width: 100%;
  border: 0.0625rem solid #d8dde3;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.8rem 0.9rem;
  color: #111;
  outline: none;
}

.contact-page-form-grid textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-page-form-grid input::placeholder,
.contact-page-form-grid textarea::placeholder,
.contact-select-wrap select {
  color: #9aa3af;
}

.contact-page-options {
  margin-top: 1.15rem;
  display: grid;
  gap: 1rem;
}

.contact-radio-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-radio-row label,
.contact-checkbox-grid label {
  font-size: 0.82rem;
  color: #444;
}

.contact-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}

.contact-page-actions {
  margin-top: 1.25rem;
}

.contact-required-note {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  color: #777;
}

/* ---------- Side cards ---------- */

.contact-side-panel {
  display: grid;
  gap: 1rem;
}

.contact-side-card {
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.75rem;
  padding: 1.4rem 1.4rem;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04), 0 0.5rem 1rem rgba(16, 24, 40, 0.06);
}

.contact-side-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.contact-side-card-title h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
}

.contact-side-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-side-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.contact-side-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
}

.contact-side-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  border-radius: 0.6rem;
  background: var(--brand-yellow);
  color: #111;
  font-weight: 700;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

.contact-side-card small {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #666;
}

.contact-office-lines {
  display: grid;
  gap: 0.35rem;
}

.contact-office-lines strong {
  font-size: 0.9rem;
  color: #111;
}

.contact-office-lines span,
.contact-office-lines a {
  font-size: 0.82rem;
  color: #444;
}

.contact-office-lines a {
  color: var(--brand-red);
}

/* ---------- FAQ cards ---------- */

.contact-faq-section {
  padding-top: 5.8rem;
}

.gold-accent {
  color: #f2b431;
}

.contact-faq-intro {
  max-width: 36rem;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-faq-card {
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.75rem;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04), 0 0.5rem 1rem rgba(16, 24, 40, 0.06);
}

.contact-faq-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: #111;
}

.contact-faq-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444;
}

.contact-faq-pill {
  width: fit-content;
  max-width: 100%;
  margin: 1.5rem auto 0;
  padding: 0.8rem 1rem;
  border-radius: 999rem;
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04), 0 0.5rem 1rem rgba(16, 24, 40, 0.06);
  font-size: 0.9rem;
  color: #444;
}

.contact-faq-pill a {
  color: var(--brand-red);
  font-weight: 600;
}

.contact-faq-pill-icon {
  margin-right: 0.45rem;
  color: var(--brand-red);
}

/* ---------- Newsletter block ---------- */

.contact-newsletter-section {
  padding: 4.5rem 0 0;
  background-image: radial-gradient(rgba(200, 31, 26, 0.18) 0.0625rem, transparent 0.0625rem);
  background-size: 1rem 1rem;
  background-position: 0 0;
}

.contact-newsletter-wrap {
  display: flex;
  justify-content: center;
}

.contact-newsletter-card {
  width: 100%;
  max-width: 48rem;
  background: #fff;
  border: 0.0625rem solid #e2e6eb;
  border-radius: 1rem;
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04), 0 0.875rem 2rem rgba(16, 24, 40, 0.08);
}

.contact-newsletter-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-newsletter-card h2 {
  margin-bottom: 0.8rem;
}

.contact-newsletter-card p {
  max-width: 34rem;
  margin: 0 auto 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.contact-newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.contact-newsletter-form input {
  width: 100%;
  max-width: 18rem;
  min-height: 2.9rem;
  border: 0.0625rem solid #d8dde3;
  border-radius: 0.55rem;
  padding: 0 0.9rem;
}

.contact-newsletter-form button {
  min-height: 2.9rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.55rem;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.contact-newsletter-card small {
  display: block;
  font-size: 0.76rem;
  color: #777;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #444;
}

.form-status.is-success {
  color: #166534;
}

.form-status.is-error {
  color: #b91c1c;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-page-form-grid input,
.contact-page-form-grid textarea,
.contact-page-form-grid select,
.contact-select-wrap select {
  width: 100%;
  border: 0.0625rem solid #d8dde3;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.8rem 0.9rem;
  color: #111;
  outline: none;
}

.contact-page-form-grid select,
.contact-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 1.375rem) calc(50% - 0.1875rem),
    calc(100% - 1rem) calc(50% - 0.1875rem);
  background-size: 0.375rem 0.375rem, 0.375rem 0.375rem;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.contact-page-form-grid input::placeholder,
.contact-page-form-grid textarea::placeholder,
.contact-page-form-grid select,
.contact-select-wrap select {
  color: #9aa3af;
}

.web-email-form .form-status {
  width: 100%;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #444;
}

.web-email-form .form-status.is-success {
  color: #166534;
}

.web-email-form .form-status.is-error {
  color: #b91c1c;
}

/* =========================================================
   TOOLKIT PAGE
   ========================================================= */

/* HERO */
.toolkit-hero {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.toolkit-hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.toolkit-hero p {
  max-width: 36rem;
  margin: 0.8rem auto 0;
  color: #555;
}

/* FILTER */
.toolkit-filter {
  padding: 1rem 0 2rem;
  border-bottom: 1px solid #eee;
}

.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.filter-pill.active {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

/* GRID */
.toolkit-section {
  padding: 2rem 0 4rem;
}

.toolkit-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.toolkit-sub {
  color: #666;
  margin-bottom: 1.5rem;
}

/* ---------- TOOLKIT CARD SYSTEM ---------- */

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.toolkit-card {
  background: #fff;
  border: 0.0625rem solid #d9dde2;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04), 0 0.5rem 1rem rgba(16, 24, 40, 0.05);
  padding: 1.15rem 1rem 0.95rem;
  display: flex;
  flex-direction: column;
  min-height: 25rem;
}

.toolkit-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.toolkit-card-header-copy {
  min-width: 0;
}

.toolkit-card-header h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.tool-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
  flex-wrap: wrap;
}

.tool-category {
  font-size: 0.72rem;
  line-height: 1.2;
  color: #6b7280;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
  padding: 0 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 700;
}

.badge.advanced {
  background: #ede9fe;
  color: #7c3aed;
}

.badge.intermediate {
  background: #dbeafe;
  color: #2563eb;
}

.badge.beginner {
  background: #dcfce7;
  color: #16a34a;
}

.toolkit-card-divider {
  height: 0.0625rem;
  background: #eceff3;
  margin: 1rem -1rem 1rem;
}

.toolkit-card-desc {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #374151;
}

.toolkit-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  color: #374151;
}

.toolkit-use-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: grid;
  gap: 0.3rem;
}

.toolkit-use-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #4b5563;
}

.toolkit-use-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999rem;
  border: 0.09rem solid var(--brand-red);
  background: transparent;
}

.toolkit-deliverable {
  margin: 0 0 1rem;
  background: #f6f7f9;
  border-radius: 0.35rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #4b5563;
}

.toolkit-btn {
  margin-top: auto;
  width: 100%;
  min-height: 2.35rem;
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: none;
}

/* icon styles */

.tool-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tool-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.tool-icon.amber {
  background: #fbefe3;
  color: #c85f1a;
}

.tool-icon.blue {
  background: #e8f0ff;
  color: #2563eb;
}

.tool-icon.green {
  background: #e8f7ea;
  color: #16a34a;
}

.tool-icon.yellow {
  background: #fbf3dc;
  color: #b78103;
}

.is-hidden {
  display: none !important;
}

/* =========================================================
   RESOURCES / ARTICLES PAGE
   ========================================================= */

.resources-page {
  background: #fff;
}

.resources-hero {
  padding: 2.7rem 0 2rem;
}

.resources-hero h1 {
  margin: 0 0 0.9rem;
  font-size: 3.25rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #111;
  text-align: center;
}

.resources-hero-intro {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  text-align: center;
}

.resources-search {
  position: relative;
  max-width: 25rem;
  margin: 0 auto;
}

.resources-search input {
  width: 100%;
  min-height: 3rem;
  padding: 0 3.5rem 0 1rem;
  border: 0.0625rem solid #d8dde3;
  border-radius: 999rem;
  background: #fff;
  color: #111;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04), 0 0.5rem 1rem rgba(16, 24, 40, 0.05);
}

.resources-search input::placeholder {
  color: #98a2b3;
}

.resources-search button {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 999rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.resources-toolbar {
  border-top: 0.0625rem solid #eceff3;
  border-bottom: 0.0625rem solid #eceff3;
  padding: 0.85rem 0;
}

.resources-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.resources-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.resources-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.resources-sort {
  min-height: 2.25rem;
  padding: 0 0.8rem;
  border: 0.0625rem solid #d8dde3;
  border-radius: 0.45rem;
  background: #fff;
  color: #444;
}

.resources-view-toggle {
  display: flex;
  gap: 0.3rem;
}

.view-toggle-btn {
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid #d8dde3;
  border-radius: 0.4rem;
  background: #fff;
  color: #666;
}

.view-toggle-btn.active {
  color: var(--brand-red);
}

.resources-listing {
  padding: 2rem 0 4rem;
}

/* =========================================================
   RESOURCES ARTICLE CARDS — PRODUCTION MATCH
   ========================================================= */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.article-card {
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.03), 0 0.375rem 0.875rem rgba(16, 24, 40, 0.04);
}

.article-card-visual {
  position: relative;
  min-height: 10.2rem;
  padding: 0.9rem;
  overflow: hidden;
}

.article-bubble {
  position: absolute;
  border-radius: 999rem;
  opacity: 0.9;
}

.bubble-lg {
  width: 4.7rem;
  height: 4.7rem;
  left: -0.2rem;
  bottom: 0.15rem;
}

.bubble-sm {
  width: 3.2rem;
  height: 3.2rem;
  right: 0.1rem;
  top: -0.1rem;
}

.article-card-label {
  position: relative;
  z-index: 2;
  max-width: 13rem;
  margin: 2.25rem auto 0;
  background: #fff;
  border-radius: 0.35rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
  padding: 0.7rem 0.85rem;
  text-align: center;
  font-size: 0.66rem;
  line-height: 1.35;
  font-weight: 700;
  color: #2f5f41;
}

.article-card-body {
  padding: 1rem 0.95rem 0.9rem;
}

.article-category {
  font-size: 0.6rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 0.7rem;
}

.article-card-body h3 {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 800;
  color: #111;
}

.article-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  font-size: 0.66rem;
  line-height: 1.2;
  color: #666;
}

.article-card-body p {
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  line-height: 1.6;
  color: #4b5563;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 0.0625rem solid #e9edf1;
}

.article-read-link {
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--brand-red);
}

.article-actions {
  display: flex;
  gap: 0.6rem;
  color: #6b7280;
  font-size: 0.8rem;
}

/* visual colors */

.article-card-visual.green {
  background: #e6f1e8;
}

.article-card-visual.green .bubble-lg,
.article-card-visual.green .bubble-sm {
  background: #b8d9c0;
}

.article-card-visual.pink {
  background: #f4dfdf;
}

.article-card-visual.pink .bubble-lg,
.article-card-visual.pink .bubble-sm {
  background: #e7b2b2;
}

.article-card-visual.gray {
  background: #ececef;
}

.article-card-visual.gray .bubble-lg,
.article-card-visual.gray .bubble-sm {
  background: #cfd3d8;
}

.article-card-visual.lavender {
  background: #eee7f7;
}

.article-card-visual.lavender .bubble-lg,
.article-card-visual.lavender .bubble-sm {
  background: #d1c0ef;
}

.article-card-visual.rose {
  background: #f6e5ee;
}

.article-card-visual.rose .bubble-lg,
.article-card-visual.rose .bubble-sm {
  background: #e6b9cf;
}

.article-card-visual.yellow {
  background: #f4e9c0;
}

.article-card-visual.yellow .bubble-lg,
.article-card-visual.yellow .bubble-sm {
  background: #e8ce87;
}

.article-card-visual.sky {
  background: #ddebfa;
}

.article-card-visual.sky .bubble-lg,
.article-card-visual.sky .bubble-sm {
  background: #afd1ee;
}

.article-card-visual.mint {
  background: #e5f2e8;
}

.article-card-visual.mint .bubble-lg,
.article-card-visual.mint .bubble-sm {
  background: #b7dbc1;
}

.article-card-visual.soft-red {
  background: #f5dede;
}

.article-card-visual.soft-red .bubble-lg,
.article-card-visual.soft-red .bubble-sm {
  background: #eab4b4;
}

.article-card-visual.green .article-card-label {
  color: #15803d;
}

.article-card-visual.pink .article-card-label,
.article-card-visual.soft-red .article-card-label {
  color: #b91c1c;
}

.article-card-visual.gray .article-card-label {
  color: #374151;
}

.article-card-visual.lavender .article-card-label {
  color: #6d28d9;
}

.article-card-visual.rose .article-card-label {
  color: #be185d;
}

.article-card-visual.yellow .article-card-label {
  color: #b45309;
}

.article-card-visual.sky .article-card-label {
  color: #1d4ed8;
}

.article-card-visual.mint .article-card-label {
  color: #15803d;
}

.resources-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.6rem;
}

.page-arrow,
.page-num {
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border: 0.0625rem solid #d8dde3;
  border-radius: 0.4rem;
  background: #fff;
  color: #555;
}

.page-num.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

.page-dots {
  padding: 0 0.25rem;
  color: #888;
}


/* ---------- RESOURCES PAGINATION ---------- */

.resources-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pagination-page,
.pagination-arrow {
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.75rem;
  border: 0.0625rem solid #d7dde4;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 0.125rem 0.25rem rgba(16, 24, 40, 0.04);
}

.pagination-page:hover,
.pagination-arrow:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: #fff7f7;
  transform: translateY(-0.0625rem);
}

.pagination-page.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  box-shadow: 0 0.375rem 0.875rem rgba(185, 28, 28, 0.18);
}

.pagination-page.active:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  transform: none;
}

.pagination-arrow:disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
  background: #f8fafc;
  color: #98a2b3;
  border-color: #e5e7eb;
  box-shadow: none;
}

.pagination-ellipsis {
  min-width: 2rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #667085;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================================================
   ARTICLE DETAIL PAGE
   ========================================================= */

:root {
  --article-text-width: 52rem;
  --article-toc-width: 11rem;
  --article-gap: 2.5rem;
  --article-full-width: calc(var(--article-toc-width) + var(--article-gap) + var(--article-text-width));
}

/* ---------- ACCESSIBILITY ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #111;
  color: #fff;
  border-radius: 0.5rem;
  z-index: 2000;
}

/* ---------- PAGE ---------- */

.article-page {
  background: #fff;
  padding-top: 0.5rem;
}

.article-shell {
  width: 100%;
  max-width: var(--article-full-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- HEAD ---------- */

.article-head {
  width: 100%;
  margin: 0 0 1rem;
}

.article-head-meta-top {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  line-height: 1.2;
  color: #6b7280;
}

.article-head h1 {
  margin: 0 0 0.5rem;
  font-size: 2.75rem;
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #111;
}

.article-head-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #6b7280;
}

.article-feature-banner {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 0.3125rem;
  background: linear-gradient(90deg,
      #c62828 0%,
      #5a2a4f 50%,
      #0f2d4d 100%);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
}

/* ---------- CONTENT LAYOUT ---------- */

.article-content-wrap {
  display: grid;
  grid-template-columns: var(--article-toc-width) minmax(0, 1fr);
  column-gap: var(--article-gap);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 5.5rem;
  align-self: start;
}

.article-body {
  width: 100%;
  max-width: var(--article-text-width);
  min-width: 0;
}

/* ---------- TOC ---------- */

.article-toc-title {
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.article-toc-links {
  display: grid;
  gap: 0.35rem;
}

.article-toc-links a {
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-toc-links a:hover {
  color: var(--brand-red);
}

/* ---------- BODY ---------- */

.article-body section {
  margin-bottom: 1.55rem;
}

.article-body h2 {
  margin: 0 0 0.6rem;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
  color: #111;
}

.article-body h3 {
  margin: 1rem 0 0.42rem;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 800;
  color: #111;
}

.article-body p {
  margin: 0 0 0.9rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #374151;
}

.article-body ul,
.article-body ol {
  margin: 0.1rem 0 0.9rem 1rem;
  padding: 0;
}

.article-body li {
  margin: 0 0 0.22rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #374151;
}

.article-body blockquote {
  margin: 0.9rem 0 0.95rem;
  padding: 0.05rem 0 0.05rem 0.75rem;
  border-left: 0.125rem solid var(--brand-red);
  font-size: 0.82rem;
  line-height: 1.65;
  font-style: italic;
  color: #5b5f66;
}

/* ---------- ADDITIONAL READ ---------- */

.article-additional-read {
  margin-top: 1.7rem;
}

.article-additional-read h2 {
  margin-bottom: 0.65rem;
}

.article-additional-links {
  display: grid;
  gap: 0.25rem;
}

.article-additional-links a {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--brand-red);
  text-decoration: none;
}

.article-additional-links a:hover {
  text-decoration: underline;
}

/* ---------- RELATED ---------- */

.article-related-section {
  padding-top: 0.35rem;
}

.article-related-title {
  margin: 0 0 0.9rem;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.article-related-card {
  min-height: 8.1rem;
  background: #fff;
  border: 0.0625rem solid #dfe3e8;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  padding: 1rem 1rem 0.95rem;
}

.article-related-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 800;
  color: #111;
}

.article-related-card p {
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #667085;
}

.article-related-card a {
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--brand-red);
  text-decoration: none;
}

.article-related-card a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
  .article-shell {
    padding: 0 1.5rem;
  }

  .article-content-wrap {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .article-toc {
    position: static;
    top: auto;
  }

  .article-body {
    max-width: 100%;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .article-page {
    padding-top: 0.75rem;
  }

  .article-shell {
    padding: 0 1rem;
  }

  .article-head {
    margin-bottom: 0.9rem;
  }

  .article-head h1 {
    font-size: 2.2rem;
  }

  .article-feature-banner {
    padding: 0.8rem 0.85rem;
    font-size: 0.82rem;
  }

  .article-head-meta-row {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }
}

@media (max-width: 700px) {
  .resources-hero h1 {
    font-size: 2.2rem;
  }

  .resources-toolbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .resources-toolbar-actions {
    justify-content: space-between;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1000px) {
  .toolkit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .toolkit-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 1100px) {

  .contact-main-grid,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-side-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .contact-hero-page h1 {
    font-size: 2.7rem;
  }

  .contact-hero-cards {
    grid-template-columns: 1fr;
  }

  .contact-side-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero-page {
    padding-top: 2rem;
  }

  .contact-hero-page h1 {
    font-size: 2.1rem;
  }

  .contact-page-form-grid,
  .contact-checkbox-grid,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-radio-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-newsletter-card {
    padding: 1.5rem 1rem;
  }
}

.contact-hero-card.highlight {
  border: 0.0625rem solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.08);
}

.contact-hero-card-icon.gold {
  color: #f2b431;
}

.contact-hero-cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-red);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {

  .hero-grid,
  .services-grid,
  .methodology-grid,
  .tools-grid-detailed,
  .recent-articles-grid,
  .contact-layout,
  .footer-top,
  .footer-links-grid,
  .services-hero-grid,
  .framework-two-col,
  .framework-ecosystem-strip,
  .ecosystem-impact-grid,
  .combined-impact-grid,
  .industries-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .featured-article-card {
    grid-template-columns: 1fr;
  }

  .capabilities-grid,
  .framework-list-grid,
  .framework-mini-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid .full {
    grid-column: auto;
  }

  .services-hero-copy {
    max-width: none;
  }

  .services-hero-features {
    grid-template-columns: 1fr;
  }

  .services-hero-topbar,
  .hero-topbar {
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-cta {
    justify-self: start;
  }

  .faq-question span:first-child {
    font-size: 0.96rem;
  }

  .faq-answer p,
  .faq-support-copy p,
  .impact-card-copy,
  .cta-text {
    font-size: 0.95rem;
  }

  .faq-support-card,
  .cta-grid {
    text-align: center;
  }

  .faq-support-card {
    grid-template-columns: 1fr;
  }

  .faq-support-copy p {
    max-width: none;
  }

  .faq-support-badges,
  .cta-actions,
  .cta-features {
    justify-content: center;
  }

  .cta-content h2 {
    font-size: 2.2rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --container-pad: 1.75rem;
  }

  .logo,
  .footer-logo {
    width: 6.875rem;
  }

  .hero-left h1 {
    font-size: 3.25rem;
    line-height: 0.96;
    letter-spacing: -0.1rem;
  }

  .services-hero-copy h1,
  .cta-content h2 {
    font-size: 2rem;
  }

  .hero-left p,
  .services-hero-copy p,
  .section-intro,
  .faq-intro {
    font-size: 0.92rem;
  }

  .hero-buttons,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-features,
  .cta-features,
  .footer-bottom-right {
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-start;
  }

  .floating-box {
    position: static;
    margin-top: 0.875rem;
    width: fit-content;
    min-width: 0;
  }

  .success-badge {
    right: 0;
    top: 0;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .service-title {
    font-size: 1.375rem;
    left: 3rem;
  }

  .framework-card,
  .impact-card,
  .combined-impact-card,
  .faq-support-card,
  .cta-card,
  .contact-form-card {
    padding: 1rem;
  }

  .faq-section,
  .strategic-framework-section,
  .ecosystem-impact-section {
    padding-top: 4.25rem;
  }

  .faq-question,
  .faq-answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-corner {
    width: 2rem;
    height: 2rem;
  }

  .footer-subscribe-form {
    max-width: 100%;
  }

  .footer-brand-text,
  .footer-newsletter p,
  .footer-links-col a,
  .footer-bottom-left,
  .footer-bottom-right a {
    font-size: 0.875rem;
  }
}

/* ---------- SERVICES CTA MOBILE FIX ---------- */
@media (max-width: 640px) {
  .cta-section {
    margin-top: 3rem;
    padding: 3rem 0;
  }

  .cta-container {
    max-width: 100%;
  }

  .cta-grid {
    gap: 1.25rem;
  }

  .cta-content,
  .cta-card {
    width: 100%;
  }

  .cta-kicker {
    justify-content: center;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 0.875rem;
  }

  .cta-text {
    max-width: none;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .cta-actions {
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
  }

  .cta-actions .btn,
  .cta-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 3.25rem;
  }

  .btn-ghost-light {
    white-space: normal;
    line-height: 1.35;
  }

  .cta-features {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .cta-features span {
    width: 100%;
  }

  .cta-card {
    padding: 1.25rem;
    border-radius: 0.875rem;
  }

  .cta-card h3 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.875rem;
  }

  .cta-card li {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0.625rem;
  }
}