:root {
  --ink: #141821;
  --muted: #646b78;
  --navy: #20285f;
  --navy-2: #121836;
  --green: #647f70;
  --green-2: #3f6656;
  --red: #a33d38;
  --red-2: #762b2a;
  --gold: #c89b3c;
  --cream: #f6f1e7;
  --paper: #ffffff;
  --soft: #f1f3ed;
  --mist: #faf8f1;
  --line: rgba(20, 24, 33, 0.11);
  --shadow: 0 24px 70px rgba(18, 24, 54, 0.13);
  --shadow-soft: 0 12px 34px rgba(18, 24, 54, 0.08);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #f8f7f2;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section.compact {
  padding: 76px 0;
}

.soft-section {
  background: var(--soft);
}

.section-title {
  max-width: 820px;
  margin: 0 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
.display-title {
  margin-bottom: 22px;
  font-size: 4.15rem;
  line-height: 1.03;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 740;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.18;
  font-weight: 720;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 780;
}

.lead {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.62;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(32, 40, 95, 0.1);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.menu-open .site-header {
  z-index: 700;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 820;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 154px;
  height: auto;
}

.brand-mark {
  position: relative;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--green);
}

.brand-mark::after {
  inset: 6px;
  border-color: var(--gold);
}

.brand sup {
  margin-left: -5px;
  font-size: 0.38em;
  transform: translateY(-0.8em);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
}

.mobile-nav-head,
.mobile-nav-cta,
.mobile-nav-meta,
.menu-scrim {
  display: none;
}

.nav-link,
.nav-summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 720;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-summary:hover,
.nav-summary:focus-visible,
.nav-link.is-active {
  background: rgba(32, 40, 95, 0.07);
  outline: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-summary {
  list-style: none;
  cursor: pointer;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.chevron {
  width: 9px;
  height: 9px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 620;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--soft);
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 40, 95, 0.18);
  border-radius: 50%;
  background: white;
  color: var(--navy);
}

.icon-button:focus-visible {
  outline: 3px solid rgba(32, 40, 95, 0.22);
  outline-offset: 3px;
}

.search-icon {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.language-switch {
  display: inline-flex;
  gap: 8px;
  color: var(--navy);
  font-weight: 780;
}

.language-switch a[aria-current="true"] {
  color: var(--green-2);
}

.menu-toggle {
  display: none;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

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

.hamburger::after {
  top: 7px;
}

body.menu-open .hamburger {
  background: transparent;
}

body.menu-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(32, 40, 95, 0.18);
  outline: 0;
}

.button.secondary {
  background: transparent;
  border-color: rgba(36, 43, 99, 0.24);
  color: var(--navy);
}

.button.light {
  background: white;
  color: var(--navy);
}

.button.green {
  background: var(--green-2);
}

.button.red {
  background: var(--red);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: white;
}

.button[disabled],
.disabled-link {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid currentColor;
  color: var(--navy);
  font-weight: 780;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(14, 19, 45, 0.95) 0%, rgba(18, 24, 54, 0.9) 42%, rgba(18, 24, 54, 0.58) 68%, rgba(18, 24, 54, 0.2) 100%),
    url("../images/agrelis-hero-consulting.jpg") center / cover no-repeat;
  color: white;
}

.hero-slider {
  position: relative;
  min-height: 690px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide.theme-navy {
  --accent: var(--navy);
  --accent-rgb: 32, 40, 95;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.97) 0%, rgba(251, 250, 246, 0.97) 57%, rgba(236, 239, 231, 0.98) 57%, rgba(226, 235, 226, 0.96) 100%);
}

.hero-slide.theme-green {
  --accent: var(--green-2);
  --accent-rgb: 63, 102, 86;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 249, 244, 0.98) 57%, rgba(231, 239, 231, 0.98) 57%, rgba(216, 229, 220, 0.98) 100%);
}

.hero-slide.theme-red {
  --accent: var(--red);
  --accent-rgb: 163, 61, 56;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.97) 0%, rgba(251, 250, 246, 0.98) 57%, rgba(244, 232, 229, 0.98) 57%, rgba(238, 221, 217, 0.98) 100%);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  border-left: 1px solid rgba(var(--accent-rgb), 0.12);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.24) 0, rgba(255, 255, 255, 0.24) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  min-height: 640px;
  margin-inline: auto;
  padding: 82px 0 58px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-shell {
  position: relative;
  width: min(510px, 100%);
  aspect-ratio: 0.94;
  padding: 12px;
  border: 1px solid rgba(20, 24, 33, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 28px 70px rgba(18, 24, 54, 0.18);
}

.visual-shell::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  z-index: 2;
  height: 5px;
  border-radius: 5px 5px 0 0;
  background: var(--accent);
}

.visual-shell img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.visual-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(300px, calc(100% - 56px));
  padding: 16px 18px;
  border: 1px solid rgba(20, 24, 33, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(18, 24, 54, 0.16);
  backdrop-filter: blur(12px);
}

.visual-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-caption strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
}

.diamond-frame {
  width: min(420px, 86vw);
  aspect-ratio: 1;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.18));
}

.diamond-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  color: white;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(232, 210, 151, 0.96);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  max-width: 760px;
  margin-bottom: 20px;
  color: white;
  font-size: 3.55rem;
  line-height: 1.04;
  font-weight: 760;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.66;
  font-weight: 520;
}

.hero .button.light {
  background: white;
  color: var(--navy);
}

.hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(12px);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-metrics div {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics dt {
  margin-bottom: 4px;
  color: white;
  font-size: 1.08rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.42;
}

.hero-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 44px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 40, 95, 0.25);
}

.hero-dot.is-active {
  background: var(--navy);
}

.intro-band {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--mist);
}

.intro-band::before {
  content: none;
}

.intro-band::after {
  content: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.76fr);
  gap: 72px;
  align-items: center;
}

.intro-copy {
  max-width: 720px;
}

.intro-copy p {
  color: #3f4652;
  font-size: 1.08rem;
  line-height: 1.7;
}

.intro-media {
  margin: 0;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(18, 24, 54, 0.13);
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.statement {
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.statement-copy {
  font-size: 1.65rem;
  line-height: 1.36;
}

.statement-copy strong {
  color: var(--navy);
}

.photo-strip {
  min-height: 330px;
  border-radius: 8px;
  background: url("../images/sunflower-strip.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.proof-strip {
  position: relative;
  z-index: 8;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: white;
  box-shadow: none;
  overflow: hidden;
}

.proof-strip-grid div {
  min-height: 150px;
  padding: 30px 34px;
  border-left: 1px solid var(--line);
}

.proof-strip-grid div:first-child {
  border-left: 0;
}

.proof-strip-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--green-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.proof-strip-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.24;
}

.proof-strip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.solution-grid {
  counter-reset: solution;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  counter-increment: solution;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card::before {
  content: "0" counter(solution);
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(32, 40, 95, 0.24);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(18, 24, 54, 0.08);
}

.solution-card.green {
  border-top-color: var(--green-2);
}

.solution-card.red {
  border-top-color: var(--red);
}

.tile-icon {
  display: none;
  grid-template-columns: repeat(2, 16px);
  grid-template-rows: repeat(2, 16px);
  gap: 4px;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  transform: rotate(45deg);
}

.tile-icon span {
  background: var(--navy);
}

.green .tile-icon span {
  background: var(--green-2);
}

.red .tile-icon span {
  background: var(--red);
}

.solution-card h3 {
  max-width: 250px;
  color: var(--navy);
}

.solution-card ul,
.service-card ul,
.feature-list {
  margin: 0 0 22px;
  padding-left: 18px;
}

.solution-card li + li,
.service-card li + li,
.feature-list li + li {
  margin-top: 9px;
}

.solution-card .text-link {
  margin-top: auto;
  color: var(--navy);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.feature-section:nth-child(even) {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.feature-section:nth-child(even) .feature-media {
  order: 2;
}

.feature-media {
  min-height: 390px;
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-media.color-field {
  display: grid;
  place-items: center;
  padding: 44px;
}

.feature-media.color-field.brand {
  background: var(--navy);
}

.feature-media.color-field.trade {
  background: var(--green);
}

.feature-media.color-field.technical {
  background: var(--red);
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.method-band {
  background: var(--navy-2);
  color: white;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.method-band .section-title {
  margin-bottom: 0;
}

.method-band h2,
.method-band h3 {
  color: white;
}

.method-band .eyebrow {
  color: var(--gold);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.method-steps article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.method-steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  padding: 78px 0;
  background: var(--navy-2);
  color: white;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-layout h2 {
  max-width: 760px;
  margin: 0;
  color: white;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--mist);
}

.page-hero.dark {
  background: var(--navy-2);
  color: white;
}

.page-hero.green {
  background: var(--green-2);
  color: white;
}

.page-hero.red {
  background: var(--red);
  color: white;
}

.page-hero h1,
.page-hero h2,
.page-hero .lead {
  color: inherit;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: 64px;
  align-items: center;
}

.page-hero-visual {
  min-height: 430px;
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.values-band {
  background: var(--navy-2);
  color: white;
}

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

.value-item {
  padding: 34px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.value-item:first-child {
  border-left: 0;
}

.value-shape {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  background: white;
  transform: rotate(45deg);
}

.value-shape.circle {
  border-radius: 50%;
  transform: none;
}

.value-item h3,
.value-item p {
  color: white;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

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

.team-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.team-card p {
  color: var(--muted);
}

.service-hero {
  padding: 96px 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.quote-panel {
  color: white;
}

.quote-panel blockquote {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.18;
  font-style: italic;
  font-weight: 520;
}

.quote-panel cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.quote-art {
  min-height: 330px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.quote-art.pattern {
  display: grid;
  place-items: center;
  padding: 40px;
}

.big-diamond-mark {
  display: grid;
  grid-template-columns: repeat(2, 62px);
  grid-template-rows: repeat(2, 62px);
  gap: 12px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.big-diamond-mark span {
  background: rgba(255, 255, 255, 0.95);
}

.assessment {
  padding: 0;
  background: var(--mist);
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 0;
  align-items: stretch;
}

.assessment-copy {
  padding: 86px;
}

.assessment-media {
  min-height: 430px;
  background: var(--soft);
}

.assessment-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.service-listing {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.service-card-title {
  border-left: 4px solid var(--navy);
  padding-left: 20px;
}

.service-card-title.green {
  border-left-color: var(--green-2);
}

.service-card-title.red {
  border-left-color: var(--red);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf6;
  color: var(--ink);
  font-weight: 650;
}

.video-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  background: var(--navy-2);
  color: white;
}

.video-row h2,
.video-row p {
  color: white;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background-color: #151923;
  background-position: center;
  background-size: cover;
  color: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.youtube-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 54, 0.08), rgba(18, 24, 54, 0.48));
}

.youtube-poster span {
  position: relative;
  z-index: 1;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.play-mark::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--navy);
}

.youtube-direct {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.youtube-frame.is-playing .youtube-poster,
.youtube-frame.is-playing .youtube-direct {
  display: none;
}

.media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 760;
}

.tab-button.is-active {
  border-bottom-color: var(--green-2);
  color: var(--navy);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

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

.empty-card {
  min-height: 240px;
  padding: 26px;
  border: 1px dashed rgba(32, 40, 95, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.empty-card h3 {
  font-size: 1.2rem;
}

.reference-section,
.consultant-section {
  padding: 92px 0;
  background: #fffefa;
}

.consultant-section {
  background: var(--soft);
}

.reference-grid,
.consultant-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reference-card,
.consultant-card,
.media-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.reference-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 26px;
}

.reference-logo {
  display: inline-grid;
  width: 86px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(32, 40, 95, 0.14);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 820;
  text-align: center;
}

.reference-logo img {
  max-width: 74px;
  max-height: 42px;
  object-fit: contain;
}

.reference-card blockquote {
  margin: 0 0 18px;
  color: #232837;
  font-size: 1.05rem;
  line-height: 1.58;
}

.reference-card h3,
.media-card h3 {
  margin-bottom: 5px;
  font-size: 1.22rem;
}

.reference-card p,
.consultant-card p,
.media-card p {
  color: var(--muted);
}

.reference-card a,
.media-card a {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 2px solid currentColor;
  color: var(--navy);
  font-weight: 780;
}

.consultant-card {
  overflow: hidden;
}

.consultant-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center top;
  background: var(--soft);
}

.consultant-card > div {
  padding: 22px;
}

.consultant-title {
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 760;
}

.consultant-bio {
  display: none;
  margin: 16px 0 0;
  line-height: 1.58;
}

.consultant-bio.is-visible {
  display: block;
}

.media-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 26px;
}

.media-card time {
  display: block;
  margin: -6px 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 48px;
}

.contact-panel {
  padding: 32px;
  border-radius: 8px;
  background: var(--navy-2);
  color: white;
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel h3,
.contact-panel p,
.contact-panel a {
  color: white;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.modal .form-grid {
  padding: 0;
  border: 0;
  box-shadow: none;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 780;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(20, 24, 33, 0.16);
  border-radius: 6px;
  background: #fffefa;
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(36, 43, 99, 0.12);
}

.check-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  color: var(--green-2);
  font-weight: 720;
}

.form-status.is-error {
  color: var(--red-2);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.legal-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 650;
}

.legal-nav a[aria-current="page"],
.legal-nav a:hover {
  background: white;
  color: var(--navy);
}

.legal-content {
  max-width: 860px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.9rem;
}

.legal-content h3 {
  margin-top: 26px;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: #3d4350;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 0.92rem;
}

.legal-content th,
.legal-content td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--soft);
  color: var(--navy);
}

.legal-translation-note {
  margin-bottom: 28px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: #fff7df;
  color: #3f3521;
  font-size: 0.96rem;
  line-height: 1.55;
}

.site-footer {
  background: #121836;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  align-items: end;
  gap: 34px;
  padding: 36px 0 22px;
}

.footer-brand {
  max-width: 440px;
  color: white;
}

.footer-brand .brand {
  color: white;
}

.footer-brand .brand-logo {
  width: 154px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-main a,
.footer-main p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact span {
  width: 22px;
  color: white;
  text-align: center;
}

.footer-menu {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.footer-menu a {
  color: white;
  font-size: 0.95rem;
  font-weight: 650;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer-legal {
  display: grid;
  gap: 8px;
}

.footer-legal > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 18, 31, 0.58);
}

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

.modal-panel {
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 8px;
  background: white;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 0;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.85rem;
}

.modal-close {
  flex: 0 0 auto;
}

.modal-body {
  padding: 20px 24px 26px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 12px;
  z-index: 450;
  display: none;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  width: min(920px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 46px rgba(18, 24, 54, 0.18);
  transform: translateX(-50%) translateY(10px);
}

.cookie-copy strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.2;
}

.cookie-banner p {
  margin: 2px 0 0;
  color: #343a47;
  font-size: 0.8rem;
  line-height: 1.38;
}

.cookie-banner .check-field {
  align-items: center;
  font-size: 0.8rem;
  white-space: nowrap;
}

.cookie-banner.is-visible {
  display: grid;
  transform: translateX(-50%) translateY(0);
}

body.menu-open .cookie-banner {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: stretch;
  margin-top: 0;
}

.cookie-actions .button {
  flex: 0 0 auto;
  min-height: 34px;
  padding-inline: 12px;
  font-size: 0.82rem;
}

.search-panel {
  position: fixed;
  inset: 86px 0 auto;
  z-index: 95;
  display: none;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: white;
}

.search-panel.is-open {
  display: block;
}

.search-box {
  display: flex;
  gap: 12px;
}

.search-box input {
  flex: 1;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.search-results a {
  padding: 10px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 680;
}

@media (max-width: 980px) {
  h1,
  .display-title {
    font-size: 3.45rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2.55rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .intro-copy p,
  .statement-copy {
    font-size: 1.18rem;
  }

  .quote-panel blockquote {
    font-size: 2.05rem;
  }

  .assessment-copy {
    padding: 46px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 152px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 240;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100vw;
    height: 100dvh;
    gap: 0;
    padding: max(22px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
    overflow: auto;
    background: #fff;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 260ms ease, opacity 180ms ease, visibility 0s linear 260ms;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0);
    transition: clip-path 260ms ease, opacity 180ms ease;
  }

  .menu-scrim {
    position: fixed;
    inset: 0;
    z-index: 230;
    display: block;
    border: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  body.menu-open .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-head .brand-logo {
    width: 142px;
  }

  .mobile-nav-close {
    flex: 0 0 auto;
    border-color: rgba(32, 40, 95, 0.16);
    background: #fff;
    color: var(--navy);
    font-size: 1.8rem;
    line-height: 1;
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 20px 0 12px;
    border-radius: 8px;
    background: var(--navy);
    color: white;
    font-weight: 800;
  }

  .nav-link,
  .nav-summary {
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--navy);
    font-size: 1.06rem;
    font-weight: 760;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    display: grid;
    gap: 6px;
    padding: 10px 0 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 12px 14px;
    border-radius: 8px;
    background: #f7f7f3;
    color: #2e3445;
    font-size: 0.98rem;
    font-weight: 700;
  }

  .nav-dropdown[open] .chevron {
    transform: translateY(2px) rotate(225deg);
  }

  .header-actions .language-switch {
    display: none;
  }

  .mobile-nav-meta {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--muted);
    font-size: 0.94rem;
  }

  .mobile-nav-meta > a {
    color: var(--navy);
    font-weight: 700;
  }

  .mobile-language {
    display: flex;
    gap: 12px;
    padding-top: 8px;
    color: var(--navy);
    font-weight: 850;
  }

  @media (max-width: 420px) {
    .main-nav {
      padding-inline: 20px;
    }

    .mobile-nav-head .brand-logo {
      width: 136px;
    }

    .mobile-nav-cta,
    .nav-link,
    .nav-summary {
      font-size: 0.98rem;
    }

    .nav-menu a {
      font-size: 0.94rem;
    }
  }

  .hero-layout,
  .intro-grid,
  .method-layout,
  .page-hero-grid,
  .quote-layout,
  .statement-grid,
  .assessment-grid,
  .service-card,
  .video-row,
  .contact-grid,
  .legal-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: auto;
  }

  .hero-slide {
    position: relative;
    display: none;
  }

  .hero-slide.is-active {
    display: grid;
  }

  .hero-layout {
    gap: 42px;
    min-height: 610px;
    padding: 58px 0 60px;
  }

  .hero {
    min-height: 610px;
    background-position: 58% center;
  }

  .visual-shell {
    width: min(420px, 100%);
  }

  .proof-strip-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-strip-grid div {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip-grid div:first-child {
    border-top: 0;
  }

  .solution-grid,
  .values-grid,
  .team-grid,
  .empty-grid,
  .reference-grid,
  .consultant-grid,
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .feature-section,
  .feature-section:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 58px 0;
  }

  .feature-section:nth-child(even) .feature-media {
    order: 0;
  }

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

  .legal-nav {
    position: static;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow,
  .header-inner {
    width: calc(100vw - 44px);
    max-width: var(--max);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(14, 19, 45, 0.92) 0%, rgba(18, 24, 54, 0.84) 48%, rgba(18, 24, 54, 0.44) 100%),
      url("../images/agrelis-hero-consulting.jpg") 60% center / cover no-repeat;
  }

  .hero-layout {
    min-height: 620px;
    padding: 54px 0 46px;
    align-items: center;
  }

  .brand-logo {
    width: 132px;
    max-width: 42vw;
  }

  .header-inner {
    gap: 12px;
  }

  .header-actions [data-search-toggle] {
    display: none;
  }

  .diamond-frame {
    width: min(300px, 76vw);
  }

  .hero-title {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .hero-kicker {
    font-size: 0.7rem;
    color: rgba(232, 210, 151, 0.96);
  }

  .hero-metrics {
    display: none;
  }

  .hero-slide::after {
    display: none;
  }

  .hero-metrics div {
    padding: 14px;
  }

  .visual-shell {
    width: min(340px, 100%);
    padding: 14px;
  }

  .visual-shell::before {
    left: 14px;
    right: 14px;
    top: 14px;
    height: 5px;
  }

  .visual-caption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .proof-strip {
    padding-bottom: 0;
  }

  .solution-grid,
  .values-grid,
  .team-grid,
  .empty-grid,
  .reference-grid,
  .consultant-grid,
  .media-grid,
  .footer-main,
  .proof-strip-grid,
  .method-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 32px;
  }

  .intro-media,
  .intro-media img {
    min-height: 260px;
  }

  .method-steps article {
    min-height: 0;
    padding: 24px;
  }

  .value-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .value-item:first-child {
    border-top: 0;
  }

  .footer-bottom,
  .search-box {
    flex-direction: column;
  }

  .footer-menu {
    justify-items: start;
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 8px;
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    padding: 10px 12px;
    align-items: stretch;
    transform: translateY(10px);
  }

  .cookie-banner.is-visible {
    transform: translateY(0);
  }

  .cookie-banner .check-field {
    white-space: normal;
  }

  .cookie-banner p {
    display: none;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .button {
    flex: 1 1 140px;
    min-height: 36px;
  }

  .display-title,
  h1 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .page-hero h1 {
    font-size: 1.65rem;
    line-height: 1.14;
  }

  .page-hero .lead {
    font-size: 0.98rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .quote-panel blockquote {
    font-size: 1.48rem;
  }

  .page-hero,
  .service-hero {
    padding: 62px 0;
  }

  .assessment-copy,
  .service-card,
  .video-row,
  .contact-panel,
  .form-grid,
  .legal-content {
    padding: 24px;
  }

  .hero-controls {
    bottom: 18px;
  }
}

/* PDF-aligned home page */
.site-header {
  background: #fff;
  border-bottom: 0;
  box-shadow: none;
}

.header-inner {
  width: min(1230px, calc(100% - 64px));
  min-height: 128px;
}

.brand-logo {
  width: 190px;
}

.nav-link,
.nav-summary {
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 480;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-summary:hover,
.nav-summary:focus-visible,
.nav-link.is-active {
  background: transparent;
  color: var(--green-2);
}

.header-actions {
  gap: 14px;
}

.header-actions .icon-button {
  border: 0;
  background: transparent;
}

.language-switch {
  gap: 14px;
  font-size: 1.08rem;
}

.search-panel {
  inset: 128px 0 auto;
}

.pdf-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy);
}

.pdf-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 620px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8%);
  transition: opacity 600ms ease, transform 700ms ease;
}

.pdf-hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.pdf-navy {
  background: #272e66;
}

.pdf-green {
  background: #638879;
}

.pdf-red {
  background: #a83b36;
}

.pdf-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 64px;
  width: min(1240px, calc(100% - 72px));
  min-height: 620px;
  margin-inline: auto;
  padding: 62px 0;
  color: white;
}

.pdf-diamond {
  width: min(520px, 100%);
  justify-self: center;
}

.pdf-diamond img {
  width: 100%;
  height: auto;
}

.pdf-hero-copy h1,
.pdf-hero-copy h2 {
  max-width: 710px;
  margin: 0;
  color: white;
  font-size: 2.3rem;
  line-height: 1.34;
  font-weight: 420;
}

.pdf-slide-next {
  position: absolute;
  right: 0;
  bottom: 118px;
  width: 90px;
  height: 72px;
  border: 0;
  background: transparent;
}

.pdf-slide-next::before,
.pdf-slide-next::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 42px;
  height: 42px;
  border-top: 5px solid white;
  border-right: 5px solid white;
  transform: rotate(45deg);
}

.pdf-slide-next::before {
  left: 4px;
  opacity: 0.86;
}

.pdf-slide-next::after {
  left: 24px;
}

.pdf-story {
  min-height: 730px;
  padding: 104px 0 84px;
  background: url("../images/pdf-story-background.jpg") center / cover no-repeat;
  color: #111;
}

.pdf-story-copy {
  position: relative;
  min-height: 530px;
}

.pdf-story-copy p {
  max-width: 1120px;
  margin-bottom: 26px;
  font-size: 1.72rem;
  line-height: 1.45;
}

.pdf-story-copy a {
  position: absolute;
  right: 0;
  bottom: 56px;
  border-bottom: 2px solid currentColor;
  color: #111;
  font-size: 1.42rem;
}

.pdf-market {
  min-height: 630px;
  padding: 92px 0 130px;
  background:
    linear-gradient(90deg, rgba(231, 237, 244, 0.88), rgba(247, 239, 223, 0.78)),
    url("../images/pdf-factory-clean.jpg") center bottom / cover no-repeat;
}

.pdf-market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 72px;
}

.pdf-market p {
  margin-bottom: 28px;
  color: #111;
  font-size: 1.65rem;
  line-height: 1.42;
}

.pdf-market-right {
  padding-top: 168px;
}

.pdf-solutions {
  padding: 82px 0 96px;
  background: white;
}

.pdf-solutions h2 {
  margin-bottom: 50px;
  color: var(--navy);
  font-size: 3.2rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 360;
}

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

.pdf-solution-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 42px 40px 34px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  box-shadow: 12px 0 0 rgba(20, 24, 33, 0.08);
}

.pdf-card-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: white;
  background: none;
  transform: rotate(45deg);
}

.pdf-card-mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: currentColor;
  box-shadow: 28px 0 0 currentColor, 0 28px 0 currentColor, 28px 28px 0 currentColor;
}

.pdf-card-mark::after {
  content: none;
}

.pdf-solution-card h3 {
  color: white;
  font-size: 2rem;
  line-height: 1.18;
}

.pdf-solution-card h3::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.75);
}

.pdf-solution-card ul {
  margin: 0 0 28px;
  padding-left: 22px;
  font-size: 1.2rem;
  line-height: 1.55;
}

.pdf-solution-card li + li {
  margin-top: 14px;
}

.pdf-solution-card a {
  margin-top: auto;
  align-self: flex-end;
  border-bottom: 2px solid currentColor;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
}

.pdf-detail {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: white;
}

.pdf-detail-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
}

.pdf-detail-trade .pdf-detail-inner,
.pdf-detail-technical .pdf-detail-inner {
  justify-content: center;
}

.pdf-detail-title {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.pdf-detail-title .pdf-card-mark {
  margin: 0;
}

.pdf-detail-title h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.08;
}

.pdf-detail-title.navy,
.pdf-detail-title.navy h2 {
  color: var(--navy);
}

.pdf-detail-title.green,
.pdf-detail-title.green h2 {
  color: var(--green);
}

.pdf-detail-title.red,
.pdf-detail-title.red h2 {
  color: var(--red);
}

.pdf-detail-title.navy .pdf-card-mark {
  color: var(--navy);
}

.pdf-detail-title.green .pdf-card-mark {
  color: var(--green);
}

.pdf-detail-title.red .pdf-card-mark {
  color: var(--red);
}

.pdf-detail-title::after {
  content: "";
  grid-column: 2;
  width: min(460px, 100%);
  height: 3px;
  background: currentColor;
}

.pdf-detail p {
  margin-bottom: 28px;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.45;
}

.pdf-detail a {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 2px solid currentColor;
  color: currentColor;
  font-size: 1.18rem;
  font-weight: 650;
}

.pdf-detail-brand a,
.pdf-detail-brand .pdf-detail-title {
  color: var(--navy);
}

.pdf-detail-trade a,
.pdf-detail-trade .pdf-detail-title {
  color: var(--green);
}

.pdf-detail-technical a,
.pdf-detail-technical .pdf-detail-title {
  color: var(--red);
}

.pdf-detail-brand::before,
.pdf-detail-brand::after,
.pdf-detail-trade::before,
.pdf-detail-trade::after,
.pdf-detail-technical::before,
.pdf-detail-technical::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pdf-detail-brand::before {
  left: 0;
  bottom: -32px;
  width: 220px;
  height: 540px;
  background-image: url("../images/pdf-detail-milk-left.png");
  background-position: left bottom;
  opacity: 0.88;
}

.pdf-detail-brand::after {
  right: 0;
  top: 130px;
  width: 520px;
  height: 320px;
  background-image: url("../images/pdf-detail-milk-right.png");
  background-position: right center;
  opacity: 0.82;
}

.pdf-detail-trade::before,
.pdf-detail-trade::after {
  opacity: 1;
}

.pdf-detail-trade::before {
  left: 0;
  bottom: 42px;
  width: 330px;
  height: 270px;
  background-image: url("../images/pdf-detail-fish-left.png");
  background-position: left bottom;
}

.pdf-detail-trade::after {
  right: 0;
  top: 42px;
  width: 390px;
  height: 360px;
  background-image: url("../images/pdf-detail-fish-right.png");
  background-position: right center;
}

.pdf-detail-technical::before {
  right: 0;
  top: 40px;
  width: 430px;
  height: 300px;
  background-image: url("../images/pdf-detail-egg-yolk.png");
  background-position: right top;
  opacity: 1;
}

.pdf-detail-technical::after {
  left: 0;
  bottom: 0;
  width: 260px;
  height: 330px;
  background-image: url("../images/pdf-detail-egg-shell.png");
  background-position: left bottom;
  opacity: 1;
}

.pdf-cta {
  padding: 54px 0 76px;
  background:
    linear-gradient(180deg, rgba(121, 192, 215, 0.88), rgba(121, 192, 215, 0.54) 58%, rgba(207, 161, 62, 0.35) 58%),
    url("../images/sunflower-strip.jpg") center bottom / cover no-repeat;
  color: white;
  text-align: center;
}

.pdf-cta p {
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1.2;
}

.pdf-cta h2 {
  margin-bottom: 28px;
  color: white;
  font-size: 2.45rem;
}

.pdf-cta .button {
  min-width: 210px;
  border-radius: 999px;
  background: var(--navy);
}

.about-pdf-hero {
  padding: 86px 0 70px;
  background: linear-gradient(90deg, rgba(246, 241, 231, 0.98), rgba(247, 239, 223, 0.86));
}

.about-pdf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: 52px;
}

.about-pdf-copy h1 {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1.04;
  font-weight: 560;
}

.about-pdf-copy p {
  max-width: 880px;
  color: #151923;
  font-size: 1.28rem;
  line-height: 1.55;
}

.about-pdf-image {
  align-self: stretch;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

.about-pdf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.about-pdf-values {
  padding: 88px 0;
  background: var(--navy);
  color: white;
}

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

.about-values-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 300px;
  padding: 26px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
}

.about-values-grid article:last-child {
  border-right: 0;
}

.about-values-grid .value-shape,
.about-values-grid .tile-icon {
  margin-bottom: 28px;
}

.about-values-grid p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.62;
}

.about-pdf-proof {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: linear-gradient(90deg, rgba(248, 232, 167, 0.9), rgba(242, 172, 45, 0.74));
}

.about-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 56px;
}

.about-proof-grid h2 {
  margin-bottom: 24px;
  color: #141821;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.about-proof-grid ul {
  display: grid;
  gap: 13px;
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-proof-grid li {
  color: #141821;
  font-size: 1.12rem;
  line-height: 1.48;
  font-weight: 640;
}

.about-bee-art {
  height: 430px;
  opacity: 0.9;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 18px, rgba(255, 255, 255, 0.05) 18px 36px),
    repeating-linear-gradient(45deg, rgba(120, 78, 13, 0.08) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, rgba(120, 78, 13, 0.16), rgba(255, 202, 64, 0.2));
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
}

.about-team-section {
  padding: 88px 0 104px;
  background: var(--navy);
  color: white;
}

.about-team-section h2 {
  margin-bottom: 34px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 440;
}

.founder-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 64px;
}

.founder-panel figure,
.team-strip article {
  margin: 0;
}

.founder-panel img,
.team-strip img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(200, 155, 60, 0.65);
}

.founder-panel h3,
.team-strip h3 {
  margin: 0 0 6px;
  color: white;
}

.founder-panel .role,
.team-strip p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.founder-panel p:not(.role) {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 58px;
}

.team-placeholder > div {
  width: 100%;
  aspect-ratio: 0.74;
  border: 1px solid rgba(200, 155, 60, 0.65);
  background: linear-gradient(135deg, #d7edf5, #8bbd67);
}

.pdf-service-quote,
.pdf-service-assessment,
.pdf-service-stack,
.pdf-question-cta {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.pdf-service-quote {
  color: white;
}

.pdf-service-quote.brand {
  background: var(--navy);
}

.pdf-service-quote.trade {
  background: var(--green);
}

.pdf-service-quote.technical {
  background: var(--red);
}

.quote-pdf-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  min-height: 560px;
  gap: 60px;
}

.quote-pdf-grid > div,
.assessment-pdf-grid > div {
  min-width: 0;
  white-space: normal;
}

.quote-pdf-grid figure {
  align-self: end;
  height: 500px;
  margin: 0;
  overflow: hidden;
  background: currentColor;
}

.quote-pdf-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.quote-pdf-grid blockquote {
  max-width: 680px;
  margin: 0 0 28px;
  color: white;
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
  line-height: 1.28;
  font-style: italic;
  font-weight: 430;
  white-space: normal;
}

.quote-pdf-grid cite {
  display: block;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  font-style: normal;
  line-height: 1.5;
  white-space: normal;
}

.pdf-service-assessment {
  padding: 64px 0;
  background: white;
}

.assessment-pdf-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
}

.assessment-pdf-grid h1 {
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.06;
  white-space: normal;
}

.assessment-pdf-grid p {
  max-width: 620px;
  color: #20242d;
  font-size: 1.24rem;
  line-height: 1.5;
}

.assessment-pdf-grid img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  background: #f5f1e8;
}

.text-link-button {
  display: inline-flex;
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.pdf-service-assessment.trade .text-link-button {
  color: var(--green);
}

.pdf-service-stack {
  padding: 28px 0 72px;
  background: white;
}

.pdf-service-block {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 44px 54px 34px;
  border: 4px solid var(--navy);
  border-left-width: 8px;
  background: white;
  white-space: normal;
}

.pdf-service-block.trade {
  border-color: var(--green);
}

.pdf-service-block.technical {
  border-color: var(--red);
}

.pdf-service-block * {
  white-space: normal;
}

.pdf-service-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.pdf-service-heading .pdf-card-mark {
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--navy);
}

.pdf-service-block.trade .pdf-card-mark {
  color: var(--green);
}

.pdf-service-block.technical .pdf-card-mark {
  color: var(--red);
}

.pdf-service-heading p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
  font-weight: 760;
}

.pdf-service-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.pdf-service-block.trade h2 {
  color: var(--green);
}

.pdf-service-block.technical h2 {
  color: var(--red);
}

.pdf-service-block > p {
  max-width: 1060px;
  color: #151923;
  font-size: 1.18rem;
  line-height: 1.58;
}

.pdf-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}

.pdf-service-pills span {
  display: inline-flex;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--navy);
  color: white;
  font-weight: 820;
  text-align: center;
  overflow-wrap: anywhere;
}

.pdf-service-block.trade .pdf-service-pills span {
  background: var(--green);
}

.pdf-service-block.technical .pdf-service-pills span {
  background: var(--red);
}

.pdf-service-pills .inactive-pill {
  opacity: 0.62;
  pointer-events: none;
}

.pdf-service-block > a {
  display: inline;
  max-width: 100%;
  border-bottom: 2px solid currentColor;
  color: var(--navy);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.pdf-service-block.trade > a {
  color: var(--green);
}

.pdf-service-block.technical > a {
  color: var(--red);
}

.pdf-question-cta {
  padding: 76px 0 92px;
  background: white;
}

.question-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 0.58fr);
  gap: 46px;
  align-items: center;
}

.question-video-card {
  padding: 30px;
  background: var(--navy);
  color: white;
}

.question-video-card p {
  margin-bottom: 20px;
  color: white;
  font-size: 1.35rem;
}

.question-actions h2 {
  color: var(--navy);
}

.question-actions p {
  color: #151923;
  font-size: 1.2rem;
  font-weight: 760;
}

.question-actions .button {
  display: flex;
  justify-content: center;
  width: min(100%, 420px);
  margin: 8px 0 0;
  white-space: normal;
  text-align: center;
}

.pdf-question-cta.trade .question-actions h2 {
  color: var(--green);
}

.pdf-question-cta.technical .question-actions h2 {
  color: var(--red);
}

.pdf-question-cta.trade .question-video-card {
  background: var(--green);
}

.pdf-question-cta.technical .question-video-card {
  background: var(--red);
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0 34px;
}

.legal-layout,
.legal-nav,
.legal-content {
  min-width: 0;
}

.legal-content {
  width: 100%;
  overflow-wrap: break-word;
}

.legal-table-wrap {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.legal-table-wrap table {
  min-width: 720px;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 86px;
  }

  .brand-logo {
    width: 152px;
  }

  .search-panel {
    inset: 86px 0 auto;
  }

  .pdf-hero,
  .pdf-hero-slide,
  .pdf-hero-inner {
    min-height: 600px;
  }

  .pdf-hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 0 72px;
  }

  .pdf-diamond {
    width: min(340px, 74vw);
  }

  .pdf-hero-copy h1,
  .pdf-hero-copy h2 {
    font-size: 1.9rem;
  }

  .pdf-slide-next {
    right: 12px;
    bottom: 26px;
    transform: scale(0.72);
  }

  .pdf-story-copy p,
  .pdf-market p,
  .pdf-detail p {
    font-size: 1.18rem;
  }

  .pdf-market-grid,
  .pdf-solution-grid {
    grid-template-columns: 1fr;
  }

  .pdf-market-right {
    padding-top: 0;
  }

  .pdf-solution-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .legal-section .container {
    width: calc(100vw - 40px);
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .legal-nav {
    position: static;
    display: grid;
    width: 100%;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: none;
  }

  .legal-nav a {
    width: 100%;
    padding: 10px 12px;
  }

  .legal-content {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .legal-content h2 {
    margin-top: 26px;
    font-size: 1.25rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .legal-content table {
    font-size: 0.84rem;
  }
}

@media (max-width: 680px) {
  .header-inner {
    width: calc(100vw - 40px);
    min-height: 74px;
  }

  .brand-logo {
    width: 132px;
  }

  .pdf-hero,
  .pdf-hero-slide,
  .pdf-hero-inner {
    min-height: 560px;
  }

  .pdf-hero-inner {
    width: calc(100vw - 40px);
    padding: 34px 0 70px;
  }

  .pdf-diamond {
    width: min(280px, 78vw);
  }

  .pdf-hero-copy h1,
  .pdf-hero-copy h2 {
    font-size: 1.35rem;
    line-height: 1.34;
  }

  .pdf-story {
    min-height: 620px;
    padding: 54px 0;
  }

  .pdf-story-copy {
    min-height: 500px;
  }

  .pdf-story-copy p {
    margin-bottom: 18px;
    font-size: 1.02rem;
  }

  .pdf-story-copy a {
    right: auto;
    left: 0;
    bottom: 10px;
    font-size: 1rem;
  }

  .pdf-market {
    padding: 58px 0 70px;
  }

  .pdf-solutions {
    padding: 56px 0;
  }

  .pdf-solutions h2 {
    font-size: 2rem;
  }

  .pdf-solution-card {
    padding: 28px;
  }

  .pdf-solution-card h3 {
    font-size: 1.55rem;
  }

  .pdf-solution-card ul {
    font-size: 1rem;
  }

  .pdf-detail {
    padding: 58px 0;
  }

  .pdf-detail-brand::before,
  .pdf-detail-brand::after,
  .pdf-detail-trade::before,
  .pdf-detail-trade::after,
  .pdf-detail-technical::before,
  .pdf-detail-technical::after {
    opacity: 0.16;
  }

  .pdf-detail-title {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .pdf-detail-title h2 {
    font-size: 1.8rem;
  }

  .pdf-cta p {
    font-size: 1.25rem;
  }

  .pdf-cta h2 {
    font-size: 1.65rem;
  }
}

@media (max-width: 980px) {
  .about-pdf-grid,
  .about-values-grid,
  .about-proof-grid,
  .founder-panel,
  .quote-pdf-grid,
  .assessment-pdf-grid,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .about-pdf-image {
    min-height: 360px;
  }

  .about-values-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .about-values-grid article:last-child {
    border-bottom: 0;
  }

  .about-proof-grid {
    gap: 28px;
  }

  .about-bee-art {
    height: 260px;
  }

  .founder-panel {
    gap: 26px;
  }

  .founder-panel figure {
    max-width: 260px;
  }

  .team-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .quote-pdf-grid {
    min-height: 0;
    gap: 28px;
    padding: 52px 0;
  }

  .quote-pdf-grid figure {
    width: min(320px, 70vw);
    height: 390px;
  }

  .assessment-pdf-grid {
    gap: 24px;
  }

  .assessment-pdf-grid img {
    order: -1;
  }

  .pdf-service-block {
    padding: 32px 28px;
  }

  .pdf-service-heading {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .about-pdf-hero,
  .about-pdf-values,
  .about-pdf-proof,
  .about-team-section,
  .pdf-service-assessment,
  .pdf-service-stack,
  .pdf-question-cta {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .about-pdf-copy h1 {
    font-size: 2.15rem;
  }

  .about-pdf-copy p,
  .about-proof-grid li,
  .pdf-service-block > p,
  .assessment-pdf-grid p {
    font-size: 1rem;
  }

  .about-pdf-image {
    min-height: 280px;
  }

  .team-strip {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .quote-pdf-grid figure {
    width: min(260px, 72vw);
    height: 300px;
  }

  .quote-pdf-grid blockquote {
    font-size: 1.45rem;
  }

  .pdf-service-block {
    margin-bottom: 22px;
    padding: 24px 20px;
    border-width: 3px;
    border-left-width: 6px;
  }

  .pdf-service-heading {
    grid-template-columns: 1fr;
  }

  .pdf-service-heading .pdf-card-mark {
    width: 36px;
    height: 36px;
  }

  .pdf-service-pills span {
    width: 100%;
    justify-content: flex-start;
  }

  .question-video-card {
    padding: 18px;
  }

  .question-actions .button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-right: 0;
  }

  .quote-pdf-grid > div,
  .assessment-pdf-grid > div,
  .question-actions,
  .question-video-card,
  .pdf-service-heading > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .quote-pdf-grid blockquote,
  .quote-pdf-grid cite,
  .assessment-pdf-grid h1,
  .assessment-pdf-grid p,
  .assessment-pdf-grid img,
  .text-link-button,
  .question-video-card p,
  .question-actions h2,
  .question-actions p,
  .video-frame,
  .video-frame iframe {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .text-link-button {
    text-align: left;
  }
}
