@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --a-ink: #0b1017;
  --a-panel: #141c27;
  --a-paper: #f6f7f2;
  --a-blue: #4b6bff;
  --a-lime: #c8f34a;
  --a-coral: #ef6a57;
  --a-line-dark: rgba(255, 255, 255, 0.15);
  --a-container: 1240px;
}

body.concept-a {
  background: var(--a-paper);
}

.a-intro {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--a-ink);
  transition: opacity 440ms ease, visibility 440ms ease;
}

.a-intro.is-done {
  opacity: 0;
  visibility: hidden;
}

.a-intro-mark {
  position: relative;
  font: 700 82px/1 "Space Grotesk", sans-serif;
}

.a-intro-mark::before,
.a-intro-mark::after {
  content: "";
  position: absolute;
  background: var(--a-lime);
  animation: a-axis 900ms ease both;
}

.a-intro-mark::before {
  left: -44px;
  right: -44px;
  bottom: -20px;
  height: 1px;
  transform-origin: left;
}

.a-intro-mark::after {
  top: -32px;
  bottom: -32px;
  left: -18px;
  width: 1px;
  transform-origin: top;
}

.a-intro small {
  position: absolute;
  right: 20px;
  bottom: -42px;
  color: #9ba6b6;
  font: 600 11px "Space Grotesk", sans-serif;
}

.a-intro-skip {
  position: absolute;
  right: 28px;
  top: 24px;
  min-width: 44px;
  min-height: 44px;
  color: #ffffff;
  background: transparent;
  border: 1px solid var(--a-line-dark);
}

@keyframes a-axis {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.a-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 72px;
  color: #ffffff;
  background: var(--a-ink);
  border-bottom: 1px solid var(--a-line-dark);
}

.a-header-inner {
  width: min(var(--a-container), calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.a-brand {
  color: #ffffff;
  font: 700 24px "Space Grotesk", sans-serif;
  text-decoration: none;
}

.a-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.a-nav a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
}

.a-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.a-icon-button,
.a-menu-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: transparent;
  border: 0;
}

.a-icon-button svg,
.a-menu-button svg {
  width: 19px;
  height: 19px;
}

.a-header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  color: var(--a-ink);
  background: var(--a-lime);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.a-menu-button {
  display: none;
}

.a-mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 72px 0 0;
  display: none;
  padding: 28px 24px;
  color: #ffffff;
  background: var(--a-ink);
}

.a-mobile-menu.is-open {
  display: block;
}

.a-mobile-menu nav {
  display: grid;
}

.a-mobile-menu nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  border-bottom: 1px solid var(--a-line-dark);
  text-decoration: none;
}

.a-hero {
  position: relative;
  min-height: 84svh;
  color: #ffffff;
  background: var(--a-ink);
  overflow: hidden;
}

.a-hero::before,
.a-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.a-hero::before {
  background: url("assets/hero-math.jpg") center 38% / cover no-repeat;
  filter: grayscale(1) contrast(1.12);
  opacity: 0.5;
}

.a-hero::after {
  background: rgba(4, 9, 15, 0.62);
}

.a-grid-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.a-hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--a-container), calc(100% - 64px));
  min-height: 84svh;
  margin: 0 auto;
  padding: 7vh 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.a-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--a-lime);
  font: 600 12px "Space Grotesk", sans-serif;
}

.a-hero-meta::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--a-lime);
}

.a-hero h1 {
  max-width: 850px;
  margin: 28px 0 24px;
  font-size: 76px;
  font-weight: 720;
  line-height: 1.07;
  letter-spacing: 0;
}

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

.a-hero-lead {
  max-width: 650px;
  margin: 0;
  color: #d0d6df;
  font-size: 18px;
  line-height: 1.75;
}

.a-actions {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.a-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 700;
  text-decoration: none;
}

.a-button.is-primary {
  color: #ffffff;
  background: var(--a-blue);
  border-color: var(--a-blue);
}

.a-button .icon-box > svg {
  width: 17px;
  height: 17px;
}

.a-taxonomy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--a-line-dark);
}

.a-taxonomy a {
  position: relative;
  min-height: 104px;
  padding: 20px 24px 20px 0;
  color: #ffffff;
  border-right: 1px solid var(--a-line-dark);
  text-decoration: none;
}

.a-taxonomy a:not(:first-child) {
  padding-left: 24px;
}

.a-taxonomy a:last-child {
  border-right: 0;
}

.a-taxonomy small {
  display: block;
  margin-bottom: 8px;
  color: var(--a-lime);
  font: 600 11px "Space Grotesk", sans-serif;
}

.a-taxonomy strong {
  font-size: 17px;
}

.a-taxonomy svg {
  position: absolute;
  right: 22px;
  top: 28px;
  width: 18px;
  height: 18px;
}

.a-section {
  padding: 128px 0;
}

.a-container {
  width: min(var(--a-container), calc(100% - 64px));
  margin: 0 auto;
}

.a-section-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--a-blue);
  font: 600 12px "Space Grotesk", sans-serif;
}

.a-section-meta span {
  color: var(--verix-muted);
}

.a-title {
  max-width: 940px;
  margin: 0;
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: 0;
}

.a-thesis {
  background: var(--a-paper);
}

.a-thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 80px;
  align-items: end;
}

.a-thesis-copy {
  margin: 0 0 8px;
  color: var(--verix-muted);
  font-size: 17px;
  line-height: 1.8;
}

.a-metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--verix-ink);
  border-bottom: 1px solid var(--verix-ink);
}

.a-metric {
  min-height: 146px;
  padding: 24px;
  border-right: 1px solid var(--verix-line);
}

.a-metric:first-child {
  padding-left: 0;
}

.a-metric:last-child {
  border-right: 0;
}

.a-metric small {
  display: block;
  color: var(--verix-muted);
  font: 600 11px "Space Grotesk", sans-serif;
}

.a-metric strong {
  display: block;
  margin: 12px 0 8px;
  font: 700 38px "Space Grotesk", sans-serif;
}

.a-metric p {
  margin: 0;
  color: var(--verix-muted);
  font-size: 13px;
}

.a-demo-label {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-top: 12px;
  padding: 0 8px;
  color: #4e3b00;
  background: #f2e7a3;
  font-size: 11px;
  font-weight: 700;
}

.a-services {
  color: #ffffff;
  background: var(--a-ink);
}

.a-services .a-section-meta {
  color: var(--a-lime);
}

.a-services .a-title {
  max-width: 760px;
}

.a-service-list {
  margin-top: 62px;
  border-top: 1px solid var(--a-line-dark);
}

.a-service-row {
  display: grid;
  grid-template-columns: 100px 1.2fr 1fr 44px;
  gap: 26px;
  min-height: 126px;
  align-items: center;
  border-bottom: 1px solid var(--a-line-dark);
}

.a-service-row .index {
  color: var(--a-lime);
  font: 600 12px "Space Grotesk", sans-serif;
}

.a-service-row h3 {
  margin: 0;
  font-size: 25px;
}

.a-service-row p {
  margin: 0;
  color: #aeb7c4;
  font-size: 14px;
  line-height: 1.7;
}

.a-service-row a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  border: 1px solid var(--a-line-dark);
}

.a-service-row a svg {
  width: 18px;
  height: 18px;
}

.a-process {
  background: #ffffff;
}

.a-process-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  margin-top: 62px;
  align-items: stretch;
}

.a-process-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.a-process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.a-process-media::after {
  content: "VERIX / REVIEW DESK";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: #ffffff;
  background: var(--a-ink);
  font: 600 11px "Space Grotesk", sans-serif;
}

.a-process-tabs {
  border-top: 1px solid var(--verix-ink);
}

.a-process-tab {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 62px 1fr 28px;
  align-items: center;
  padding: 0;
  color: var(--verix-muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--verix-line);
  text-align: left;
}

.a-process-tab .n {
  color: var(--a-blue);
  font: 600 12px "Space Grotesk", sans-serif;
}

.a-process-tab strong {
  font-size: 18px;
}

.a-process-tab svg {
  width: 17px;
  height: 17px;
}

.a-process-tab.is-active {
  color: var(--verix-ink);
}

.a-process-tab.is-active svg {
  color: var(--a-blue);
  transform: rotate(90deg);
}

.a-process-panel {
  padding: 30px 0 22px 62px;
}

.a-process-panel h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.a-process-panel p {
  margin: 0 0 18px;
  color: var(--verix-muted);
  line-height: 1.8;
}

.a-process-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.a-process-panel li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--verix-line);
  font-size: 14px;
}

.a-process-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  background: var(--a-lime);
  border: 1px solid var(--verix-ink);
}

.a-contents {
  background: var(--a-paper);
}

.a-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.a-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.a-filter {
  min-height: 44px;
  padding: 0 16px;
  color: var(--verix-ink);
  background: transparent;
  border: 1px solid var(--verix-line);
  font-size: 13px;
}

.a-filter.is-active {
  color: #ffffff;
  background: var(--verix-ink);
  border-color: var(--verix-ink);
}

.a-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.a-product {
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--verix-line);
  border-radius: 4px;
  overflow: hidden;
}

.a-product-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 28px;
  color: #ffffff;
  background: var(--a-blue);
  overflow: hidden;
}

.a-product:nth-child(2) .a-product-cover {
  color: var(--verix-ink);
  background: var(--a-lime);
}

.a-product:nth-child(3) .a-product-cover {
  background: var(--a-coral);
}

.a-product-cover::before {
  content: "";
  position: absolute;
  inset: 16px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
}

.a-product-cover strong {
  position: relative;
  z-index: 1;
  max-width: 210px;
  font: 700 31px/1.2 "Space Grotesk", sans-serif;
}

.a-product-cover small {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  font: 600 10px "Space Grotesk", sans-serif;
}

.a-product-body {
  padding: 22px;
}

.a-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--verix-muted);
  font-size: 12px;
}

.a-product h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.a-product p {
  min-height: 48px;
  margin: 0 0 20px;
  color: var(--verix-muted);
  font-size: 14px;
  line-height: 1.7;
}

.a-product-bottom {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--verix-line);
}

.a-product-bottom strong {
  font-size: 13px;
}

.a-product-open {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--verix-ink);
  border: 0;
  font-weight: 700;
}

.a-product-open svg {
  width: 16px;
  height: 16px;
}

.a-proof {
  color: #ffffff;
  background: var(--a-panel);
}

.a-proof .a-section-meta {
  color: var(--a-lime);
}

.a-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--a-line-dark);
}

.a-proof-item {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--a-line-dark);
  border-bottom: 1px solid var(--a-line-dark);
}

.a-proof-item:last-child {
  border-right: 0;
}

.a-proof-item small {
  color: var(--a-lime);
  font: 600 11px "Space Grotesk", sans-serif;
}

.a-proof-item h3 {
  margin: 74px 0 14px;
  font-size: 24px;
}

.a-proof-item p {
  margin: 0;
  color: #adb7c5;
  font-size: 14px;
  line-height: 1.75;
}

.a-proof-empty {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 0 9px;
  color: #dce2ea;
  border: 1px solid var(--a-line-dark);
  font-size: 11px;
}

.a-policy {
  padding: 0;
  background: #ffffff;
}

.a-policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--verix-line);
}

.a-policy-item {
  min-height: 210px;
  padding: 34px 28px;
  border-right: 1px solid var(--verix-line);
}

.a-policy-item .icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--a-blue);
  background: #e8ecff;
}

.a-policy-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.a-policy-item p {
  margin: 0;
  color: var(--verix-muted);
  font-size: 13px;
  line-height: 1.7;
}

.a-contact {
  background: var(--a-paper);
}

.a-contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.a-contact-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.a-contact-copy h2 {
  margin: 0 0 24px;
  font-size: 50px;
  line-height: 1.2;
}

.a-contact-copy p {
  margin: 0;
  color: var(--verix-muted);
  font-size: 16px;
  line-height: 1.8;
}

.a-contact-steps {
  margin-top: 34px;
  border-top: 1px solid var(--verix-ink);
}

.a-contact-steps div {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 52px;
  align-items: center;
  border-bottom: 1px solid var(--verix-line);
  font-size: 13px;
}

.a-contact-steps b {
  color: var(--a-blue);
  font: 600 11px "Space Grotesk", sans-serif;
}

.a-form {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--verix-line);
}

.a-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.a-field {
  display: grid;
  gap: 9px;
}

.a-field.is-full {
  grid-column: 1 / -1;
}

.a-field label,
.a-consent span {
  font-size: 13px;
  font-weight: 700;
}

.a-field input,
.a-field select,
.a-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--verix-ink);
  background: #ffffff;
  border: 1px solid var(--verix-line);
  border-radius: 0;
}

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

.a-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--verix-muted);
  font-size: 12px;
  line-height: 1.6;
}

.a-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
}

.a-submit {
  grid-column: 1 / -1;
  min-height: 54px;
  color: #ffffff;
  background: var(--a-blue);
  border: 0;
  font-weight: 700;
}

.a-faq {
  background: #ffffff;
}

.a-faq-list {
  margin-top: 54px;
  border-top: 1px solid var(--verix-ink);
}

.a-faq-item {
  border-bottom: 1px solid var(--verix-line);
}

.a-faq-button {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  padding: 0;
  color: var(--verix-ink);
  background: transparent;
  border: 0;
  text-align: left;
}

.a-faq-button b {
  color: var(--a-blue);
  font: 600 11px "Space Grotesk", sans-serif;
}

.a-faq-button span {
  font-size: 17px;
  font-weight: 700;
}

.a-faq-button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.a-faq-item.is-open .a-faq-button svg {
  transform: rotate(45deg);
}

.a-faq-panel {
  max-width: 840px;
  padding: 0 52px 28px;
  color: var(--verix-muted);
  line-height: 1.8;
}

.a-final-cta {
  padding: 86px 0;
  color: #ffffff;
  background: var(--a-blue);
}

.a-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.a-final-cta h2 {
  max-width: 690px;
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
}

.a-final-cta .a-button {
  color: var(--a-ink);
  background: var(--a-lime);
  border-color: var(--a-lime);
}

.a-footer {
  padding: 60px 0 34px;
  color: #ffffff;
  background: var(--a-ink);
}

.a-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding-bottom: 44px;
}

.a-footer-brand {
  font: 700 44px "Space Grotesk", sans-serif;
}

.a-footer p {
  max-width: 520px;
  color: #9ea8b6;
  font-size: 13px;
  line-height: 1.8;
}

.a-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
}

.a-footer-links a {
  min-height: 38px;
  color: #d5dbe3;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--a-line-dark);
}

.a-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  color: #7f8997;
  border-top: 1px solid var(--a-line-dark);
  font-size: 11px;
}

@media (max-width: 1120px) {
  .a-header-inner,
  .a-hero-inner,
  .a-container {
    width: min(var(--a-container), calc(100% - 48px));
  }

  .a-hero h1 {
    font-size: 64px;
  }

  .a-title {
    font-size: 46px;
  }

  .a-process-layout,
  .a-contact-layout {
    gap: 52px;
  }

  .a-service-row {
    grid-template-columns: 70px 1fr 0.9fr 44px;
  }
}

@media (max-width: 900px) {
  .a-nav,
  .a-header-cta {
    display: none;
  }

  .a-header-inner {
    grid-template-columns: 1fr auto;
  }

  .a-tools {
    gap: 0;
  }

  .a-menu-button {
    display: inline-grid;
  }

  .a-hero h1 {
    font-size: 54px;
  }

  .a-thesis-grid,
  .a-process-layout,
  .a-contact-layout {
    grid-template-columns: 1fr;
  }

  .a-thesis-grid {
    gap: 28px;
  }

  .a-service-row {
    grid-template-columns: 54px 1fr 44px;
    padding: 22px 0;
  }

  .a-service-row p {
    grid-column: 2 / -1;
  }

  .a-process-media {
    min-height: 460px;
  }

  .a-product-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .a-proof-item {
    min-height: 240px;
    border-right: 0;
  }

  .a-policy-grid {
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--verix-line);
  }

  .a-policy-item {
    border-bottom: 1px solid var(--verix-line);
  }

  .a-contact-copy {
    position: static;
  }

  .a-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .a-header {
    height: 64px;
  }

  .a-mobile-menu {
    inset: 64px 0 0;
  }

  .a-header-inner,
  .a-hero-inner,
  .a-container {
    width: calc(100% - 40px);
  }

  .a-intro-mark {
    font-size: 52px;
  }

  .a-hero,
  .a-hero-inner {
    min-height: 86svh;
  }

  .a-hero-inner {
    padding-top: 54px;
  }

  .a-hero h1 {
    margin-top: 22px;
    font-size: 44px;
  }

  .a-hero-lead {
    font-size: 16px;
  }

  .a-actions {
    display: grid;
  }

  .a-taxonomy {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .a-taxonomy a,
  .a-taxonomy a:not(:first-child) {
    min-height: 72px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--a-line-dark);
  }

  .a-taxonomy svg {
    right: 4px;
    top: 26px;
  }

  .a-section {
    padding: 82px 0;
  }

  .a-title {
    font-size: 36px;
  }

  .a-metric-band,
  .a-product-grid,
  .a-policy-grid {
    grid-template-columns: 1fr;
  }

  .a-metric {
    min-height: 120px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--verix-line);
  }

  .a-service-row {
    grid-template-columns: 46px 1fr 44px;
    gap: 12px;
  }

  .a-service-row h3 {
    font-size: 21px;
  }

  .a-process-media {
    min-height: 340px;
  }

  .a-process-panel {
    padding-left: 0;
  }

  .a-section-head {
    display: grid;
  }

  .a-product-grid {
    gap: 16px;
  }

  .a-policy-grid {
    border-left: 0;
  }

  .a-policy-item {
    min-height: 180px;
    padding: 28px 0;
    border-right: 0;
  }

  .a-contact-copy h2,
  .a-final-cta h2 {
    font-size: 36px;
  }

  .a-form {
    padding: 22px 18px;
  }

  .a-form-grid {
    grid-template-columns: 1fr;
  }

  .a-field.is-full,
  .a-consent,
  .a-submit {
    grid-column: auto;
  }

  .a-faq-button {
    grid-template-columns: 38px 1fr 24px;
    min-height: 68px;
  }

  .a-faq-button span {
    font-size: 15px;
  }

  .a-faq-panel {
    padding: 0 0 24px 38px;
  }

  .a-final-cta-inner,
  .a-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .a-footer-brand {
    font-size: 36px;
  }
}
