:root {
  --ink: #141824;
  --paper: #f6f3ec;
  --signal: #d23b2d;
  --line: rgba(20, 24, 36, 0.14);
  --muted: rgba(20, 24, 36, 0.7);
  --panel-shadow: 0 18px 40px rgba(20, 24, 36, 0.14);
  --line-shadow: 0 1px 0 rgba(20, 24, 36, 0.05), 0 10px 24px rgba(20, 24, 36, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 24, 36, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 24, 36, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

::selection {
  background: var(--signal);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(20, 24, 36, 0.1);
  background: rgba(246, 243, 236, 0.88);
  backdrop-filter: blur(14px);
}

.site-header__inner,
.container,
.hero__inner,
.contact-cta__inner,
.site-footer__inner {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__name {
  display: block;
  width: 232px;
  height: 34px;
}

.brand__name img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(20, 24, 36, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: var(--signal);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background: var(--signal);
  padding: 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease;
}

.header-action:hover {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 24, 36, 0.1);
  background:
    url("../images/gewu-background.png?ver=2") center top / cover no-repeat,
    var(--ink);
  color: var(--ink);
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  padding-block: 64px;
}

.hero__content {
  max-width: 576px;
}

.hero__inner > .wp-block-group__inner-container,
.hero__content > .wp-block-group__inner-container {
  width: 100%;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.55;
}

.hero p {
  margin: 40px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  max-width: none;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
}

.wp-block-button__link,
.contact-cta__button .wp-block-button__link {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  border-radius: 0;
}

.wp-block-button__link:hover {
  transform: translateY(-1px);
}

.button--primary .wp-block-button__link {
  background: var(--signal);
  color: #fff;
  box-shadow: var(--panel-shadow);
}

.button--primary .wp-block-button__link:hover {
  background: #fff;
  color: var(--signal);
}

.button--secondary .wp-block-button__link {
  border: 1px solid rgba(210, 59, 45, 0.7);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--panel-shadow);
}

.button--secondary .wp-block-button__link:hover {
  background: var(--ink);
  color: #fff;
}

.section {
  padding: 40px 0;
}

.section--white {
  border-bottom: 1px solid rgba(20, 24, 36, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

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

.section__title {
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.service-grid,
.advantage-grid {
  margin-top: 32px;
}

.service-grid > .wp-block-group__inner-container,
.advantage-grid > .wp-block-group__inner-container {
  display: grid;
  gap: 20px;
}

.service-grid > .wp-block-group__inner-container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-grid > .wp-block-group__inner-container {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.advantage-card {
  border: 1px solid rgba(20, 24, 36, 0.12);
  background: #fff;
  box-shadow: var(--line-shadow);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.service-card::before,
.advantage-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-inline: auto;
  background: currentColor;
  -webkit-mask: var(--card-icon) center / contain no-repeat;
  mask: var(--card-icon) center / contain no-repeat;
}

.service-card::before {
  color: var(--signal);
}

.advantage-card::before {
  color: rgba(20, 24, 36, 0.7);
}

.service-grid .service-card:nth-child(1)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h10a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h4'/%3E%3C/svg%3E");
}

.service-grid .service-card:nth-child(2)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16M8 17V9M12 17V7M16 17v-5'/%3E%3C/svg%3E");
}

.service-grid .service-card:nth-child(3)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l2 2 4-4'/%3E%3Cpath d='M8 3h8l3 3v13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1'/%3E%3C/svg%3E");
}

.service-grid .service-card:nth-child(4)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 12l2 2 4-4M5 12l4-4 3 3 5-5M15 17l2 2a2 2 0 0 0 3-3l-1-1'/%3E%3C/svg%3E");
}

.advantage-grid .advantage-card:nth-child(1)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6c0 1.7 3.6 3 8 3s8-1.3 8-3-3.6-3-8-3-8 1.3-8 3Z'/%3E%3Cpath d='M4 6v12c0 1.7 3.6 3 8 3s8-1.3 8-3V6M4 12c0 1.7 3.6 3 8 3s8-1.3 8-3'/%3E%3C/svg%3E");
}

.advantage-grid .advantage-card:nth-child(2)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8h.01M11 12h1v4h1'/%3E%3Cpath d='M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20Z'/%3E%3C/svg%3E");
}

.advantage-grid .advantage-card:nth-child(3)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15Z'/%3E%3C/svg%3E");
}

.advantage-grid .advantage-card:nth-child(4)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l-6 3V6l6-3 6 3 6-3v15l-6 3-6-3Z'/%3E%3Cpath d='M9 3v15M15 6v15'/%3E%3C/svg%3E");
}

.advantage-grid .advantage-card:nth-child(5)::before {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8H4v-8M2 7h20v5H2V7ZM12 20V7'/%3E%3Cpath d='M12 7H7.5A2.5 2.5 0 1 1 10 4.5C10 6 12 7 12 7Zm0 0h4.5A2.5 2.5 0 1 0 14 4.5C14 6 12 7 12 7Z'/%3E%3C/svg%3E");
}

.service-card:hover {
  border-color: rgba(210, 59, 45, 0.4);
  box-shadow: var(--panel-shadow);
  transform: translateY(-4px);
}

.advantage-card {
  display: flex;
  min-height: 208px;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.advantage-card:hover {
  border-color: rgba(20, 24, 36, 0.3);
}

.service-card h3,
.advantage-card h3 {
  margin: 26px 0 0;
  font-weight: 700;
  line-height: 1.45;
}

.service-card h3 {
  font-size: 20px;
}

.advantage-card h3 {
  font-size: 18px;
}

.service-card p,
.advantage-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.service-card p {
  text-align: left;
  font-size: 16px;
  line-height: 2;
}

.advantage-card p {
  font-size: 14px;
  line-height: 1.7;
}

.contact-cta {
  background: var(--signal);
  color: #fff;
  padding: 28px 0;
}

.contact-cta__inner {
  display: block;
}

.contact-cta__inner > .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-cta__copy {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-cta__icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.contact-cta p {
  max-width: 768px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.contact-cta__button {
  display: block;
}

.contact-cta__button .wp-block-button__link {
  min-width: 288px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--panel-shadow);
}

.contact-cta__button .wp-block-button__link:hover {
  background: var(--ink);
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(20, 24, 36, 0.1);
  background: var(--ink);
  color: var(--paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-block: 48px;
}

.site-footer__brand {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-footer__summary {
  max-width: 576px;
  margin: 16px 0 0;
  color: rgba(246, 243, 236, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  color: rgba(246, 243, 236, 0.72);
  font-size: 14px;
}

.footer-nav__column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-nav__button {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-nav__button:hover,
.footer-nav__button:focus-visible {
  color: #fff;
}

.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  color: rgba(246, 243, 236, 0.46);
  text-align: center;
  font-size: 12px;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(20, 24, 36, 0.16);
  background: #fff;
  box-shadow: 0 -12px 36px rgba(20, 24, 36, 0.14);
}

.cookie-consent__inner {
  display: flex;
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
  padding-block: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-consent__copy {
  max-width: 820px;
}

.cookie-consent__title,
.cookie-consent__copy p {
  margin: 0;
}

.cookie-consent__title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
}

.cookie-consent__copy p:last-child {
  color: rgba(20, 24, 36, 0.74);
  font-size: 13px;
  line-height: 1.7;
}

.cookie-consent__copy a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.cookie-consent__button {
  min-width: 112px;
  min-height: 44px;
  border: 1px solid var(--signal);
  padding: 10px 20px;
  background: #fff;
  color: var(--signal);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__button--accept {
  background: var(--signal);
  color: #fff;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  filter: brightness(0.94);
}

.content-page {
  min-height: 50vh;
  background: rgba(255, 255, 255, 0.78);
  padding: 48px;
}

.content-page h1 {
  margin-top: 0;
}

.page-section {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
  padding-block: 56px;
}

.page-narrow {
  max-width: 1024px;
}

.page-wide {
  max-width: 1180px;
}

.page-section h1 {
  margin: 16px 0 0;
  font-size: 32px;
  line-height: 1.35;
}

.page-section h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
}

.page-section p {
  color: rgba(20, 24, 36, 0.7);
  line-height: 1.85;
}

.page-eyebrow {
  margin: 0;
  color: var(--signal) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.lead-text {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
}

.lead-signal {
  color: var(--signal) !important;
}

.section-heading {
  margin-top: 36px !important;
  color: var(--signal);
}

.profile-table {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 36, 0.12);
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 24, 38, 0.08);
}

.profile-row {
  border-bottom: 1px solid rgba(20, 24, 36, 0.08);
}

.profile-row:last-child {
  border-bottom: 0;
}

.profile-row > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 210px 1fr;
}

.profile-label,
.profile-value {
  margin: 0 !important;
  padding: 16px 20px;
}

.profile-label {
  background: rgba(20, 24, 36, 0.035);
  color: var(--signal) !important;
  font-size: 14px;
  font-weight: 700;
}

.profile-value {
  color: rgba(20, 24, 36, 0.78) !important;
  font-size: 16px;
}

.split-section {
  margin-top: 48px;
  border-top: 1px solid rgba(20, 24, 36, 0.1);
  padding-top: 40px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 64px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(20, 24, 36, 0.76);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: var(--signal);
}

.resource-list,
.info-panel,
.faq-panel,
.policy-list {
  margin-top: 36px;
  border: 1px solid rgba(20, 24, 36, 0.12);
  background: rgba(255, 255, 255, 0.82);
  padding: 28px;
  box-shadow: var(--line-shadow);
}

.resource-list > .wp-block-group__inner-container {
  display: grid;
  gap: 12px;
}

.resource-row {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 24px;
  margin: 0 !important;
  border: 1px solid rgba(20, 24, 36, 0.1);
  background: rgba(255, 255, 255, 0.72);
  padding: 0 24px;
  color: rgba(20, 24, 36, 0.62) !important;
  font-size: 18px;
  font-weight: 700;
}

.resource-row::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: var(--signal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16V8l-6-5H4v17Z'/%3E%3Cpath d='M14 3v5h6M8 13h8M8 17h5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16V8l-6-5H4v17Z'/%3E%3Cpath d='M14 3v5h6M8 13h8M8 17h5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.resource-row span {
  margin-left: auto;
  color: rgba(20, 24, 36, 0.4);
  font-size: 14px;
}

.resource-row .resource-button,
.resource-row .wp-block-button__link {
  width: 100%;
}

.resource-row.is-active {
  flex-wrap: nowrap;
  padding: 0 24px;
}

.resource-row.is-active .wp-block-button {
  flex: 1;
  width: auto;
}

.resource-row.is-active .wp-block-button__link {
  width: auto;
  min-height: 62px;
  justify-content: flex-start;
  border: 0;
  background: #fff;
  padding: 0;
  box-shadow: none;
  color: var(--ink);
}

.resource-row.is-active .wp-block-button__link:hover {
  color: var(--signal);
}

.filter-strip {
  margin-top: 32px;
}

.filter-strip > .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-strip p {
  margin: 0;
  border: 1px solid rgba(210, 59, 45, 0.2);
  border-radius: 999px;
  background: #fff;
  padding: 8px 20px;
  color: #7b2b2b;
  font-weight: 700;
}

.whitepaper-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(20, 24, 36, 0.1);
  background: #fff;
  padding: 24px 28px;
}

.whitepaper-heading h1 {
  margin: 0;
}

.whitepaper-heading form {
  display: flex;
  min-height: 44px;
  width: min(100%, 380px);
  overflow: hidden;
  border: 1px solid rgba(20, 24, 36, 0.18);
  border-radius: 999px;
}

.whitepaper-heading input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 18px;
  outline: 0;
}

.whitepaper-heading button {
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--signal);
  font-weight: 700;
  cursor: pointer;
}

.whitepaper-filters {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.whitepaper-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.whitepaper-filter-row strong {
  min-width: 58px;
  color: var(--signal);
}

.whitepaper-filter-row a {
  border: 1px solid rgba(210, 59, 45, 0.2);
  border-radius: 999px;
  background: #fff;
  padding: 8px 18px;
  color: #7b2b2b;
  font-size: 14px;
  font-weight: 700;
}

.whitepaper-filter-row a.is-active {
  background: var(--signal);
  color: #fff;
}

.whitepaper-groups {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.whitepaper-group {
  border: 1px solid rgba(20, 24, 36, 0.1);
  border-left: 5px solid var(--signal);
  background: #fff;
  padding: 22px 28px;
  box-shadow: 0 18px 44px rgba(18, 24, 38, 0.08);
}

.whitepaper-group h2 {
  margin: 0;
  font-size: 19px;
}

.whitepaper-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(20, 24, 36, 0.1);
  padding: 18px 0;
}

.whitepaper-group h2 + .whitepaper-item {
  margin-top: 12px;
}

.whitepaper-item h3,
.whitepaper-item p {
  margin: 0;
}

.whitepaper-summary {
  margin-top: 7px !important;
  color: rgba(20, 24, 36, 0.62);
  font-size: 14px;
}

.whitepaper-meta {
  margin-top: 8px !important;
  color: rgba(20, 24, 36, 0.42);
  font-size: 13px;
}

.whitepaper-meta span {
  margin-left: 18px;
}

.whitepaper-action,
.download-panel a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--signal);
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.form-notice--error {
  border: 1px solid rgba(210, 59, 45, 0.35);
  background: rgba(210, 59, 45, 0.08);
  padding: 12px 16px;
  color: var(--signal);
}

.wintelligence-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
}

.download-panel {
  margin: 28px auto 0;
  border: 1px solid rgba(20, 24, 36, 0.12);
  background: #fff;
  padding: 24px;
  text-align: center;
}

.download-panel p {
  margin: 0 0 16px;
  font-weight: 700;
}

.faq-panel h2,
.policy-list h2,
.info-panel h2 {
  color: var(--signal);
}

.wp-block-details {
  border-top: 1px solid rgba(20, 24, 36, 0.1);
  padding: 18px 0;
}

.wp-block-details:first-of-type {
  margin-top: 16px;
}

.wp-block-details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
}

.wp-block-details p {
  margin: 12px 0 0;
  font-size: 14px;
}

.policy-list h2 {
  margin-top: 28px;
  font-size: 18px;
}

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

.policy-list ul {
  color: rgba(20, 24, 36, 0.7);
  line-height: 1.8;
}

.policy-date {
  color: rgba(20, 24, 36, 0.5) !important;
  font-size: 14px;
}

.contact-page {
  width: min(100% - 40px, 1152px);
}

.wp-contact-layout {
  margin-top: 28px;
  border: 1px solid rgba(20, 24, 36, 0.12);
  background: rgba(255, 255, 255, 0.86);
  padding: 28px;
  box-shadow: 0 14px 36px rgba(18, 24, 38, 0.05);
}

.wp-contact-layout > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.wp-contact-layout > .wp-block-group__inner-container > .wp-block-wintelligence-contact-form {
  min-width: 0;
}

.wp-contact-form {
  display: grid;
  align-content: start;
  gap: 18px;
}

.wp-contact-form label {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.wp-contact-form em {
  margin-left: 6px;
  background: rgba(210, 59, 45, 0.1);
  padding: 2px 6px;
  color: var(--signal);
  font-size: 10px;
  font-style: normal;
}

.wp-contact-form input,
.wp-contact-form select,
.wp-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 24, 36, 0.14);
  background: #fff;
  padding: 12px 16px;
  color: var(--ink);
  font: inherit;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.wp-contact-form input:focus,
.wp-contact-form select:focus,
.wp-contact-form textarea:focus {
  outline-color: var(--signal);
}

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

.privacy-check {
  grid-template-columns: 1fr !important;
}

.message-field {
  align-items: start !important;
}

.privacy-check {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(20, 24, 36, 0.68) !important;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 16px;
  accent-color: var(--signal);
}

.wp-contact-form button {
  min-height: 48px;
  width: min(100%, 420px);
  border: 0;
  background: var(--signal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.consultation-types {
  border: 1px solid rgba(20, 24, 36, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.consultation-types h2 {
  margin: 0;
  border-bottom: 1px solid rgba(20, 24, 36, 0.1);
  padding: 16px 20px;
  font-size: 16px;
  text-align: center;
}

.consultation-type {
  min-height: 76px;
  border-bottom: 1px solid rgba(20, 24, 36, 0.1);
  padding: 16px 20px;
  color: rgba(20, 24, 36, 0.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.consultation-type > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 42px;
}

.consultation-type:last-child {
  border-bottom: 0;
}

.consultation-type .wp-block-image {
  width: 26px;
  margin: 0;
}

.consultation-type img {
  width: 26px;
  height: 26px;
  display: block;
  opacity: 0.58;
}

.consultation-type p {
  margin: 0;
}

.thanks-page {
  max-width: 760px;
  text-align: center;
  padding-block: 96px;
}

.thanks-page .wp-block-buttons {
  justify-content: center;
}

.thanks-page h1::before {
  content: "";
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  border: 4px solid var(--signal);
  border-radius: 999px;
  background-color: var(--signal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 52px 52px;
}

@media (max-width: 980px) {
  .primary-nav {
    display: none;
  }

  .service-grid {
    grid-template-columns: none;
  }

  .service-grid > .wp-block-group__inner-container,
  .advantage-grid > .wp-block-group__inner-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cta__inner > .wp-block-group__inner-container {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-cta__button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .whitepaper-heading,
  .whitepaper-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .whitepaper-heading form,
  .whitepaper-action {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .container,
  .hero__inner,
  .contact-cta__inner,
  .site-footer__inner {
    width: min(100% - 32px, 1280px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__name {
    width: 178px;
    height: 26px;
  }

  .header-action {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero,
  .hero__inner {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    margin-top: 28px;
    font-size: 17px;
  }

  .hero__actions {
    margin-top: 40px;
  }

  .button,
  .contact-cta__button {
    min-height: 58px;
    padding-inline: 22px;
    font-size: 16px;
  }

  .service-grid > .wp-block-group__inner-container,
  .advantage-grid > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
  }

  .contact-cta__copy {
    gap: 16px;
  }

  .contact-cta p {
    font-size: 16px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .cookie-consent__inner {
    width: min(100% - 32px, 1280px);
    padding-block: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__button {
    flex: 1;
    min-width: 0;
  }

  .content-page {
    padding: 32px 20px;
  }

  .page-section {
    width: min(100% - 32px, 1280px);
    padding-block: 44px;
  }

  .profile-row > .wp-block-group__inner-container,
  .wp-contact-form label,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .wp-contact-layout > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }
}
