:root {
  --ink: #101827;
  --ink-soft: #2e3b4e;
  --muted: #66758a;
  --line: #dbe3ee;
  --line-strong: #c2cfdd;
  --surface: #ffffff;
  --surface-cool: #f6f9fc;
  --surface-blue: #eef6ff;
  --blue: #0066d6;
  --blue-strong: #004bb0;
  --teal: #079a9a;
  --lime: #78a900;
  --graphite: #10141c;
  --shadow: 0 18px 55px rgba(16, 24, 39, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: 0;
}

svg {
  display: block;
}

main,
section,
article,
div,
form,
.hero-copy,
.section-heading > *,
.portfolio-intro > *,
.model-copy,
.trust-grid > *,
.contact-intro,
.contact-visual,
.contact-form-heading {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid rgba(0, 102, 214, 0.28);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding: 0 clamp(20px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 238, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms var(--ease), min-height 180ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 12px 38px rgba(16, 24, 39, 0.08);
}

.brand-cluster {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 38px;
  background: var(--graphite);
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.brand-text {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 14px;
  font-weight: 800;
}

.brand-text span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.brand-divider {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(16, 24, 39, 0.2);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--blue);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 102, 214, 0.22);
  transition: background 160ms ease, transform 160ms ease;
}

.header-action:hover {
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.header-philips {
  display: grid;
  justify-items: start;
  gap: 1px;
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.philips-wordmark {
  color: var(--blue);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.philips-wordmark {
  font-size: 22px;
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 88px)));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.5fr) minmax(620px, 0.5fr);
  gap: clamp(22px, 4vw, 60px);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: clamp(452px, calc(100svh - var(--header-h)), 560px);
  margin: 0;
  padding:
    clamp(34px, 3vw, 44px)
    clamp(36px, 3.8vw, 72px)
    clamp(48px, 4.8vw, 64px);
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid rgba(219, 227, 238, 0.85);
}

.hero::before {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 0;
  width: min(69vw, 1220px);
  aspect-ratio: 1180 / 452;
  pointer-events: none;
  content: "";
  background: url("assets/hero-reference-products-blended-v2@2x.png") right center / contain no-repeat;
  filter: contrast(1.035) saturate(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #ffffff 0 31%, rgba(255, 255, 255, 0.98) 39%, rgba(255, 255, 255, 0.48) 48%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #ffffff 0, rgba(255, 255, 255, 0.12) 14%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.74) 84%, #ffffff 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero h1,
.section-heading h2,
.portfolio-intro h2,
.model-copy h2,
.trust-grid h2,
.contact-form-heading h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.04;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(40px, 2.72vw, 56px);
  line-height: 1.05;
}

.hero-line {
  display: block;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero p {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero .button {
  min-width: 250px;
  min-height: 52px;
  padding-inline: 26px;
  border-radius: 5px;
  font-size: 16px;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 102, 214, 0.24);
}

.button-primary:hover {
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--blue);
  background: #ffffff;
  border: 1px solid rgba(0, 102, 214, 0.35);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--surface-blue);
  transform: translateY(-1px);
}

.scroll-cue {
  display: none;
  position: absolute;
  bottom: 9px;
  left: 50%;
  width: 52px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
}

.scroll-cue path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.markets {
  padding: clamp(56px, 7vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  text-align: left;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 0.9fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: start;
  text-align: left;
}

.section-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.portfolio-intro h2,
.model-copy h2,
.trust-grid h2,
.contact-form-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.market-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.market-card,
.product-card,
.driver-strip article,
.model-flow article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.market-card {
  position: relative;
  isolation: isolate;
  min-height: 282px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #fbfdff 58%, #f5fafb 100%);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.market-card::before {
  display: none;
  content: "";
}

.market-visual {
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 0;
  width: 146px;
  height: auto;
  max-width: 42%;
  pointer-events: none;
  filter: saturate(0.98) contrast(1.02);
  opacity: 0.88;
  transform: none;
}

.market-cis .market-visual {
  right: 4px;
  bottom: 4px;
  width: 152px;
  opacity: 0.86;
}

.market-africa .market-visual {
  right: 2px;
  bottom: 4px;
  width: 154px;
  opacity: 0.86;
}

.market-card > :not(.market-visual) {
  position: relative;
  z-index: 2;
}

.market-card:hover,
.product-card:hover,
.driver-strip article:hover,
.model-flow article:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(16, 24, 39, 0.08);
  transform: translateY(-2px);
}

.market-card h3,
.product-card h3,
.driver-strip h3,
.model-flow h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.market-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.market-card p,
.product-card p,
.driver-strip p,
.model-copy p,
.model-flow p,
.portfolio-intro > p,
.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.market-card p,
.market-card span {
  max-width: min(260px, calc(100% - 108px));
}

.market-card span {
  display: block;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.portfolio {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 8vw, 104px) max(clamp(32px, 7vw, 88px), calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(0, 102, 214, 0.08), transparent 34%),
    linear-gradient(135deg, #f6f9fc, #ffffff 52%, #f0fbf9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio-intro {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.portfolio-intro > p {
  max-width: 540px;
  align-self: end;
}

.portfolio-grid {
  width: min(var(--max), 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 368px;
  flex-direction: column;
  padding: 18px 18px 22px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  z-index: 0;
  width: 112px;
  height: 112px;
  content: "";
  border: 1px solid rgba(0, 102, 214, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.product-card:nth-child(2)::after {
  border-color: rgba(7, 154, 154, 0.2);
}

.product-card:nth-child(3)::after,
.product-card:nth-child(4)::after {
  border-color: rgba(120, 169, 0, 0.2);
}

.product-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  color: var(--blue);
  background: var(--surface-blue);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.product-visual {
  display: grid;
  min-height: 158px;
  margin-bottom: 18px;
  overflow: visible;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.product-visual img {
  display: block;
  width: min(88%, 188px);
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(16, 24, 39, 0.12));
}

.product-card:nth-child(2) .product-visual img,
.product-card:nth-child(4) .product-visual img {
  width: min(96%, 228px);
}

.product-card:nth-child(4) .product-visual img {
  max-height: 128px;
}

.product-card:nth-child(2) .product-visual {
  background: #ffffff;
}

.product-card:nth-child(3) .product-visual,
.product-card:nth-child(4) .product-visual {
  background: #ffffff;
}

.drivers {
  padding: clamp(64px, 8vw, 104px) 0;
}

.driver-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.driver-strip article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 232px;
  padding: 24px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.driver-strip article > * {
  position: relative;
  z-index: 1;
}

.driver-strip article:first-child,
.driver-strip article:nth-child(2),
.driver-strip article:nth-child(3),
.driver-strip article:nth-child(4) {
  background:
    radial-gradient(circle at 94px 70px, rgba(29, 104, 224, 0.1), transparent 126px),
    linear-gradient(135deg, #ffffff 0%, #fbfdff 58%, #f7fbff 100%);
}

.driver-strip article:first-child::before,
.driver-strip article:nth-child(2)::before,
.driver-strip article:nth-child(3)::before,
.driver-strip article:nth-child(4)::before {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 0;
  width: 190px;
  height: 142px;
  content: "";
  background:
    radial-gradient(circle at 34% 48%, rgba(23, 92, 214, 0.24), transparent 38%),
    radial-gradient(circle at 70% 50%, rgba(201, 214, 255, 0.5), transparent 48%);
  filter: blur(22px);
  opacity: 0.76;
}

.driver-icon-slot {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 154px;
  margin: -6px 0 18px;
}

.driver-water-icon,
.driver-infrastructure-icon,
.driver-ecommerce-icon,
.driver-brand-icon {
  width: 132px;
  height: auto;
  display: block;
  max-height: 154px;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.05);
}

.driver-infrastructure-icon {
  width: 138px;
  margin-top: -4px;
}

.driver-ecommerce-icon {
  width: 144px;
  margin-top: -2px;
}

.driver-brand-icon {
  width: 118px;
}

.driver-strip h3 {
  margin-top: 0;
}

.model {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 max(clamp(32px, 7vw, 88px), calc((100vw - var(--max)) / 2)) clamp(64px, 8vw, 104px);
}

.model-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 102, 214, 0.9), rgba(7, 154, 154, 0.84)),
    var(--graphite);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 102, 214, 0.2);
}

.model-copy .section-label,
.model-copy h2,
.model-copy p {
  color: #ffffff;
}

.model-copy p {
  margin-top: 20px;
  opacity: 0.86;
}

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

.model-flow article {
  min-height: 206px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease;
}

.model-flow article:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.model-flow span {
  color: #c9f4ff;
  font-size: 13px;
  font-weight: 800;
}

.model-flow h3,
.model-flow p {
  color: #ffffff;
}

.model-flow p {
  opacity: 0.78;
}

.trust {
  padding: clamp(64px, 8vw, 104px) 0;
  border-top: 1px solid var(--line);
}

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

.trust-card {
  position: relative;
  min-height: 206px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #ffffff, #f8fbff 70%, #f3faf9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-card::before {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 112px;
  height: 112px;
  content: "";
  border: 1px solid rgba(0, 102, 214, 0.16);
  border-radius: 50%;
}

.trust-card--visual::before {
  display: none;
}

.trust-card-icon {
  position: absolute;
  right: 6px;
  bottom: 2px;
  z-index: 0;
  width: 132px;
  max-width: 42%;
  height: auto;
  pointer-events: none;
  filter: saturate(0.98) contrast(1.02);
  opacity: 0.88;
}

.trust-card--coverage .trust-card-icon {
  right: 0;
  bottom: -2px;
  width: 140px;
  opacity: 0.86;
}

.trust-card--focused .trust-card-icon {
  right: 4px;
  bottom: -4px;
  width: 136px;
  opacity: 0.87;
}

.trust-card--channel .trust-card-icon {
  right: -2px;
  bottom: -2px;
  width: 148px;
  opacity: 0.86;
}

.trust-card span {
  display: block;
  max-width: 210px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.18;
}

.trust-card--visual span,
.trust-card--visual p {
  position: relative;
  z-index: 2;
}

.trust-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-card--visual p {
  max-width: min(238px, calc(100% - 92px));
}

.trust-card:nth-child(2)::before {
  border-color: rgba(7, 154, 154, 0.2);
}

.trust-card:nth-child(3)::before,
.trust-card:nth-child(4)::before {
  border-color: rgba(120, 169, 0, 0.2);
}

.contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  padding: clamp(64px, 8vw, 104px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1180px);
  gap: clamp(20px, 3vw, 30px);
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(430px, 36vw, 540px);
  padding: clamp(34px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form::before {
  content: "";
  display: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.contact-visual {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
}

.contact-form-icon {
  width: min(390px, 100%);
  height: auto;
  filter: drop-shadow(0 34px 46px rgba(0, 102, 214, 0.16));
  pointer-events: none;
}

.contact-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form-heading .contact-lead {
  max-width: 680px;
  margin-top: 18px;
  font-size: 18px;
}

.contact-toggle {
  min-width: 220px;
  margin-top: clamp(24px, 3vw, 34px);
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid var(--line);
}

.contact-fields[hidden],
.contact-success[hidden] {
  display: none;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--surface-cool);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 214, 0.12);
  outline: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.contact-success {
  padding: 24px;
  color: var(--teal);
  background: rgba(7, 154, 154, 0.08);
  border: 1px solid rgba(7, 154, 154, 0.22);
  border-radius: var(--radius);
}

.contact-success span {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.contact-success p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  width: calc(100% - clamp(28px, 3vw, 40px));
  min-height: 152px;
  margin: clamp(34px, 5vw, 68px) auto 22px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 54px);
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 20%, rgba(0, 102, 214, 0.06), transparent 32%),
    linear-gradient(105deg, rgba(255, 248, 252, 0.92) 0%, #ffffff 48%, rgba(246, 248, 255, 0.95) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(16, 24, 39, 0.08);
  font-size: 15px;
  font-weight: 800;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  background: var(--graphite);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(16, 24, 39, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin-left: auto;
}

.footer-links a {
  color: var(--ink);
  font-weight: 800;
}

.footer-links span {
  color: rgba(16, 24, 39, 0.58);
  font-weight: 700;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-content: initial;
  }

  .brand-cluster {
    grid-column: 1;
    grid-row: 1;
    gap: 12px;
    max-width: calc(100vw - 94px);
  }

  .brand {
    min-width: 0;
  }

  .header-philips {
    overflow: hidden;
  }

  .nav-toggle {
    position: relative;
    z-index: 41;
    grid-column: 3;
    grid-row: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--surface-cool);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms var(--ease);
  }

  .nav-toggle span + span {
    margin-top: -14px;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    grid-column: 1 / -1;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 24px;
  }

  .header-action {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 690px;
    padding-bottom: 300px;
    background: #ffffff;
  }

  .hero::before {
    top: auto;
    right: auto;
    bottom: 24px;
    left: 50%;
    width: min(132vw, 1060px);
    transform: translateX(-50%);
  }

  .hero::after {
    background:
      linear-gradient(180deg, #ffffff 0 43%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.32) 77%, #ffffff 100%),
      linear-gradient(90deg, #ffffff 0, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 76%, #ffffff 100%);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 6vw, 56px);
  }

  .scroll-cue {
    display: none;
  }

  .market-grid,
  .portfolio-grid,
  .driver-strip,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-visual {
    width: 140px;
    opacity: 0.84;
  }

  .market-cis .market-visual,
  .market-africa .market-visual {
    width: 146px;
  }

  .model-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    min-height: var(--header-h);
    padding-inline: 14px;
    gap: 8px;
  }

  .brand-cluster {
    gap: 8px;
    max-width: calc(100vw - 76px);
  }

  .brand {
    gap: 8px;
  }

  .brand-divider {
    height: 28px;
  }

  .brand-mark {
    width: 46px;
    height: 34px;
    font-size: 13px;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .brand-text span {
    font-size: 9px;
  }

  .header-philips {
    gap: 0;
  }

  .header-philips .philips-wordmark {
    font-size: 14px;
  }

  .header-philips span:last-child {
    max-width: 92px;
    font-size: 6px;
    line-height: 1.05;
    text-align: left;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .section-shell {
    width: min(100% - 36px, var(--max));
  }

  .hero {
    gap: 16px;
    min-height: 650px;
    padding: 24px 18px 260px;
    background: #ffffff;
  }

  .hero::before {
    bottom: 18px;
    width: min(214vw, 980px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, #ffffff 0 50%, rgba(255, 255, 255, 0.94) 63%, rgba(255, 255, 255, 0.34) 79%, #ffffff 100%),
      linear-gradient(90deg, #ffffff 0, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #ffffff 100%);
  }

  .hero h1 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .hero p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions,
  .hero .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero .button {
    min-height: 44px;
  }

  .section-heading,
  .portfolio-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-intro,
  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-form {
    min-height: auto;
  }

  .contact-intro {
    gap: 18px;
  }

  .contact-visual {
    min-height: 250px;
  }

  .contact-form-icon {
    width: min(310px, 94%);
  }

  .contact-toggle {
    width: 100%;
  }

  .section-heading h2,
  .portfolio-intro h2,
  .model-copy h2,
  .trust-grid h2,
  .contact-form-heading h2 {
    font-size: clamp(28px, 8.2vw, 36px);
  }

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

  .product-visual {
    min-height: 150px;
  }

  .product-visual img {
    width: min(88%, 190px);
    max-height: 140px;
  }

  .market-grid,
  .portfolio-grid,
  .driver-strip,
  .model-flow,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .market-card,
  .product-card,
  .driver-strip article,
  .model-flow article {
    min-height: auto;
  }

  .market-card {
    min-height: 236px;
    padding: 22px;
  }

  .market-visual {
    right: 8px;
    bottom: 6px;
    width: 132px;
    max-width: 40%;
    opacity: 0.82;
  }

  .market-cis .market-visual {
    right: 6px;
    bottom: 6px;
    width: 136px;
  }

  .market-africa .market-visual {
    right: 6px;
    bottom: 6px;
    width: 138px;
  }

  .market-card p,
  .market-card span {
    max-width: min(250px, calc(100% - 98px));
  }

  .portfolio,
  .model {
    padding-inline: 18px;
  }

  .model-panel {
    padding: 24px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    width: min(100% - 36px, var(--max));
    min-height: 0;
    margin-bottom: 18px;
    padding: 24px 18px;
  }

  .footer-links {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
