.directions, .benefits, .social-benefits, .terms, .payments, .faq, .apply, .documents, .timeline {
  padding: 28px clamp(20px, 4vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
}


.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.benefit-card {
  position: relative;
  isolation: isolate;
  min-height: 214px;
  overflow: hidden;
  padding: 30px 194px 32px 34px;
  background:
    linear-gradient(125deg, rgba(249, 245, 234, 0.92), rgba(231, 224, 204, 0.72));
  box-shadow:
    0 12px 30px rgba(54, 49, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition:
    transform 0.32s var(--ease),
    background 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(126, 104, 71, 0.68), rgba(126, 104, 71, 0.16)) left top / 64% 1px no-repeat,
    linear-gradient(180deg, rgba(126, 104, 71, 0.68), rgba(126, 104, 71, 0.08)) left top / 1px 72% no-repeat,
    linear-gradient(270deg, rgba(88, 105, 51, 0.68), rgba(88, 105, 51, 0.14)) right bottom / 56% 1px no-repeat,
    linear-gradient(0deg, rgba(88, 105, 51, 0.68), rgba(88, 105, 51, 0.08)) right bottom / 1px 62% no-repeat;
  opacity: 0.82;
  transition: opacity 0.32s var(--ease);
}

.benefit-card:nth-child(even)::before {
  background:
    linear-gradient(270deg, rgba(126, 104, 71, 0.68), rgba(126, 104, 71, 0.16)) right top / 64% 1px no-repeat,
    linear-gradient(180deg, rgba(126, 104, 71, 0.68), rgba(126, 104, 71, 0.08)) right top / 1px 72% no-repeat,
    linear-gradient(90deg, rgba(88, 105, 51, 0.68), rgba(88, 105, 51, 0.14)) left bottom / 56% 1px no-repeat,
    linear-gradient(0deg, rgba(88, 105, 51, 0.68), rgba(88, 105, 51, 0.08)) left bottom / 1px 62% no-repeat;
}

.benefit-card:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(125deg, rgba(248, 243, 230, 0.98), rgba(222, 223, 193, 0.72));
  box-shadow:
    0 18px 36px rgba(54, 49, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding-bottom: 14px;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  font-weight: 680;
  line-height: 1.18;
  letter-spacing: 0.005em;
  text-transform: none;
}

.benefit-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, rgba(86, 104, 47, 0.9), rgba(154, 126, 83, 0.5));
  transition: width 0.32s var(--ease);
}

.benefit-card:hover h3::after {
  width: 76px;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  margin: 0;
  color: var(--text-1);
  font-size: 14.5px;
  line-height: 1.55;
}

.benefit-card-illustration {
  position: absolute;
  right: 8px;
  bottom: -8px;
  z-index: 0;
  width: 200px;
  height: 200px;
  display: block;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
}

.terms-inner {
  position: relative;
}

.terms-head {
  max-width: 920px;
  margin-bottom: 28px;
}

.terms-title {
  max-width: 1000px;
}

.terms-desc {
  max-width: 72ch;
}

.terms-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(113, 94, 66, 0.34);
  border-radius: 30px 10px 30px 10px;
  background:
    radial-gradient(circle at 8% 0%, rgba(86, 104, 47, 0.13), transparent 31%),
    radial-gradient(circle at 96% 92%, rgba(139, 112, 73, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(235, 227, 207, 0.95), rgba(246, 242, 230, 0.88));
  box-shadow:
    0 24px 58px rgba(50, 48, 35, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.terms-stage::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(113, 94, 66, 0.11);
  border-radius: 23px 7px 23px 7px;
}

.terms-stage::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 96px;
  height: 96px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 49%, rgba(128, 107, 76, 0.19) 50%, transparent 51%);
  opacity: 0.72;
}

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

.terms-criterion {
  position: relative;
  min-width: 0;
  padding: 24px 200px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(128, 107, 76, 0.31);
  min-height: 228px;
  border-radius: 18px 7px 18px 7px;
  background:
    linear-gradient(145deg, rgba(243, 237, 222, 0.94), rgba(232, 224, 204, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 10px 26px rgba(58, 54, 39, 0.08);
  transition:
    transform 0.34s var(--ease),
    border-color 0.34s var(--ease),
    box-shadow 0.34s var(--ease);
}

.terms-criterion-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 140px;
  height: 140px;
  display: block;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter:
    drop-shadow(0 12px 18px rgba(54, 48, 31, 0.16))
    drop-shadow(0 0 12px rgba(112, 128, 68, 0.18))
    drop-shadow(0 0 28px rgba(185, 164, 116, 0.12));
}

.terms-criterion::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: 0;
  width: 200px;
  height: 200px;
  border-radius: 34px 12px 34px 12px;
  background:
    radial-gradient(circle at 72% 72%, rgba(130, 143, 84, 0.085) 0 10%, transparent 10.5% 100%),
    radial-gradient(circle at 58% 58%, rgba(185, 164, 116, 0.07) 0 7%, transparent 7.5% 100%),
    radial-gradient(circle at 78% 42%, rgba(125, 139, 78, 0.055) 0 5%, transparent 5.5% 100%),
    linear-gradient(140deg, rgba(128, 107, 76, 0.055) 0%, rgba(128, 107, 76, 0.018) 38%, transparent 70%);
  mask-image: radial-gradient(circle at 72% 72%, rgba(0, 0, 0, 0.88) 0 46%, transparent 76%);
  pointer-events: none;
}

.terms-criterion::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 54%,
      rgba(244, 236, 210, 0.36) 0%,
      rgba(148, 160, 96, 0.16) 38%,
      rgba(111, 126, 67, 0.08) 58%,
      transparent 76%);
  filter: blur(9px);
  pointer-events: none;
}

.terms-criterion:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 104, 47, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 16px 32px rgba(58, 54, 39, 0.12);
}

.terms-criterion-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.terms-criterion-mark {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(86, 104, 47, 0.42);
  border-radius: 6px 2px 6px 2px;
  background: rgba(86, 104, 47, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.terms-criterion-mark::before {
  content: "";
  position: absolute;
  left: -1.875px;
  top: -7.5px;
  width: 30px;
  height: 30px;
  background: center / 30px 30px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.1 12.2L9.2 16.4L21.1 4.6' stroke='%2356682f' stroke-width='2.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  pointer-events: none;
}

.terms-criterion-tag {
  color: #806b4c;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.terms-criterion h3 {
  margin: 0 0 11px;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.terms-criterion-main {
  max-width: 28ch;
  margin: 0;
  color: #34382b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.52;
}

.terms-criterion:first-child .terms-criterion-main {
  max-width: 24ch;
  font-size: 16px;
  line-height: 1.58;
}

.terms-criterion-detail {
  position: relative;
  max-width: 31ch;
  margin: 15px 0 0;
  padding: 13px 0 0 17px;
  border-top: 1px solid rgba(128, 107, 76, 0.18);
  color: var(--text-1);
  font-size: 13.5px;
  line-height: 1.52;
}

.terms-criterion-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(128, 107, 76, 0.72);
}

.terms-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 32px;
  margin-top: 18px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 23, 0.28);
  border-radius: 20px 7px 20px 7px;
  background:
    radial-gradient(circle at 85% 15%, rgba(124, 145, 66, 0.18), transparent 34%),
    linear-gradient(125deg, rgba(38, 42, 29, 0.96), rgba(67, 67, 47, 0.94));
  box-shadow: 0 16px 34px rgba(41, 42, 31, 0.16);
}

.terms-cta::after {
  content: "";
  position: absolute;
  top: -42px;
  right: 17%;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(244, 239, 225, 0.1);
  transform: rotate(45deg);
  pointer-events: none;
}

.terms-cta-copy,
.terms-cta-actions {
  position: relative;
  z-index: 1;
}

.terms-cta-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #c9ba9a;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.terms-cta h3 {
  margin: 0 0 8px;
  color: #f7f3e8;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.terms-cta p {
  max-width: 58ch;
  margin: 0;
  color: rgba(244, 239, 225, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.terms-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.terms-cta-button {
  justify-content: center;
  min-height: 50px;
  text-align: center;
}

.terms-documents-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 0 2px;
  color: rgba(247, 243, 232, 0.83);
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.25s var(--ease);
}

.terms-documents-link span {
  transition: transform 0.25s var(--ease);
}

.terms-documents-link:hover {
  color: #f7f3e8;
}

.terms-documents-link:hover span {
  transform: translateX(4px);
}


.payment-tabs {
  width: 100%;
}

.payment-tabs-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.payment-tab {
  position: relative;
  min-width: 0;
  padding: 4px 12px 18px;
  border: 0;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.45vw, 1.12rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color 0.25s var(--ease), font-weight 0.25s var(--ease);
}

.payment-tab::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}

.payment-tab:hover {
  color: var(--text-0);
}

.payment-tab.is-active {
  color: var(--text-0);
  font-weight: 800;
}

.payment-tab.is-active::after {
  transform: scaleX(1);
}

.payment-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.payment-tabs-content {
  min-height: 144px;
  padding-top: 30px;
}

.payment-tab-panel {
  position: relative;
  isolation: isolate;
  min-height: 240px;
  overflow: hidden;
  padding: 30px 44% 30px 32px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: linear-gradient(
    90deg,
    rgba(86, 104, 47, 0.09),
    rgba(255, 255, 255, 0.22) 62%,
    rgba(255, 255, 255, 0.08)
  );
}

.payment-tab-panel::before {
  content: none;
}

.payment-tab-panel::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 0;
  width: 39%;
  pointer-events: none;
  border-radius: 28px 10px 28px 10px;
  background-image: var(--payment-visual);
  background-repeat: no-repeat;
  background-position: var(--payment-visual-position, 72% center);
  background-size: cover;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

.payment-tab-panel > * {
  position: relative;
  z-index: 2;
  max-width: none;
}

.payment-tab-panel--one-time {
  --payment-visual: url("../images/payments/one-time.png");
  --payment-visual-position: 72% center;
}

.payment-tab-panel--monthly {
  --payment-visual: url("../images/payments/monthly.png");
  --payment-visual-position: 74% center;
}

.payment-tab-panel--result {
  --payment-visual: url("../images/payments/result.png");
  --payment-visual-position: 76% center;
}

.payment-tab-panel--injury {
  --payment-visual: url("../images/payments/injury.png");
  --payment-visual-position: 76% center;
}

.payment-tab-panel--family {
  --payment-visual: url("../images/payments/family.png");
  --payment-visual-position: 78% center;
}

.payment-tab-panel--training {
  --payment-visual: url("../images/payments/training.png");
  --payment-visual-position: 74% center;
}

.payment-tab-panel:not([hidden]) {
  animation: paymentPanelIn 0.22s var(--ease) both;
}

@keyframes paymentPanelIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-tab-panel[hidden] {
  display: none;
}

.payment-tab-panel-title {
  display: block;
  margin-bottom: 8px;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 700;
}

.payment-tab-panel p {
  margin: 0;
  color: var(--text-1);
  font-size: 14px;
}

.payment-tab-panel-intro {
  max-width: 960px;
  margin-bottom: 22px !important;
  line-height: 1.55;
}

.payment-detail-list {
  border-top: 1px solid var(--line);
}

.payment-detail-row {
  display: grid;
  grid-template-columns: 18px minmax(190px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.payment-detail-row::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
}

.payment-detail-amount {
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.payment-detail-row p {
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.5;
}

.payment-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social-benefits-intro {
  max-width: 760px;
}

.social-benefits-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-benefits-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(53, 61, 32, 0.15);
  background: linear-gradient(145deg, rgba(231, 224, 205, 0.82), rgba(218, 220, 190, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 26px rgba(40, 45, 24, 0.035);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.social-benefits-accordion-item.is-open {
  border-color: rgba(86, 104, 47, 0.34);
  background: linear-gradient(145deg, rgba(231, 224, 205, 0.94), rgba(214, 220, 184, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 34px rgba(40, 45, 24, 0.065);
}

.social-benefits-toggle {
  width: 100%;
  min-height: 76px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--text-0);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.social-benefits-toggle:hover {
  color: var(--accent-soft);
  background: rgba(124, 145, 66, 0.05);
}

.social-benefits-toggle-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.social-benefits-toggle-title {
  min-width: 0;
}

.social-benefits-count {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(92, 105, 54, 0.18);
  border-radius: 12px 5px 12px 5px;
  background: rgba(124, 145, 66, 0.07);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
}

.social-benefits-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--accent-dim);
  transition: transform 0.35s var(--ease);
}

.social-benefits-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--accent-soft);
  border-bottom: 1.5px solid var(--accent-soft);
  transform: translate(-50%, -65%) rotate(45deg);
}

.social-benefits-accordion-item.is-open .social-benefits-icon {
  transform: rotate(180deg);
}

.social-benefits-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease), opacity 0.35s var(--ease);
}

.social-benefits-accordion-item.is-open .social-benefits-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.social-benefits-content-inner {
  overflow: hidden;
  border-top: 1px solid rgba(53, 61, 32, 0.1);
  background: linear-gradient(180deg, rgba(86, 104, 47, 0.035), rgba(231, 224, 205, 0.24));
}

.social-benefits-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 4px 24px 26px;
}

.social-benefits-group {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px 18px 8px;
  border: 1px solid rgba(126, 102, 72, 0.28);
  border-left: 3px solid rgba(151, 112, 67, 0.72);
  border-radius: 16px 6px 16px 6px;
  background: linear-gradient(135deg, rgba(240, 235, 221, 0.94), rgba(226, 217, 198, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px rgba(68, 54, 38, 0.055);
}

.social-benefits-group::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(225deg, rgba(151, 112, 67, 0.14), transparent 66%);
  pointer-events: none;
}

.social-benefits-group-title {
  margin: 0 0 8px;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.social-benefits-list {
  columns: 1;
  margin: 0;
  padding: 0;
}

.social-benefits-list li {
  break-inside: avoid;
  padding: 13px 0;
  border-top: 1px solid rgba(118, 96, 68, 0.16);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-1);
}

.social-benefit-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 7px;
}

.social-benefit-basis {
  display: block;
  padding-left: 10px;
  border-left: 1px solid rgba(151, 112, 67, 0.42);
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.45;
}

.social-benefit-basis-label {
  display: inline-block;
  margin-right: 7px;
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-benefit-check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 1px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  background: var(--accent-dim);
}

.social-benefit-check::after {
  content: "";
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.social-benefits-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(124, 145, 66, 0.08), rgba(255, 255, 255, 0.18));
}

.social-benefits-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.social-benefits-cta-kicker {
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-benefits-cta-copy strong {
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.2;
}

.social-benefits-cta-copy p {
  max-width: 620px;
  color: var(--text-1);
  font-size: 13.5px;
  line-height: 1.5;
}

.social-benefits-cta-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.faq .section-head {
  max-width: 920px;
  margin-bottom: 24px;
}

.faq-audience-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 960px);
  margin: 0 auto 24px;
  padding: 4px;
  border: 1px solid rgba(91, 108, 54, 0.34);
  border-radius: 999px;
  background: rgba(246, 241, 228, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(54, 51, 37, 0.07);
}

.faq-audience-tab {
  min-height: 50px;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--text-1);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.faq-audience-tab:hover:not(.is-active) {
  color: var(--accent);
  background: rgba(86, 104, 47, 0.07);
}

.faq-audience-tab.is-active {
  color: #f8f4e8;
  background: linear-gradient(135deg, #62753a, #4d602b);
  box-shadow:
    0 8px 18px rgba(69, 81, 40, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.faq-audience-tab:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid rgba(86, 104, 47, 0.65);
  outline-offset: 3px;
}

.faq-panel[hidden] {
  display: none;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(118, 101, 70, 0.22);
  border-radius: 18px 7px 18px 7px;
  background: linear-gradient(110deg, rgba(250, 247, 238, 0.78), rgba(239, 232, 213, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 8px 20px rgba(55, 51, 38, 0.045);
  transition:
    border-color 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    background 0.32s var(--ease);
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, rgba(126, 145, 73, 0.2), rgba(157, 128, 82, 0.55));
  opacity: 0.58;
  transition: opacity 0.32s var(--ease), background 0.32s var(--ease);
}

.faq-item.is-open {
  border-color: rgba(86, 104, 47, 0.42);
  background: linear-gradient(110deg, rgba(248, 244, 232, 0.94), rgba(232, 226, 204, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 14px 30px rgba(58, 57, 39, 0.08);
}

.faq-item.is-open::before {
  opacity: 1;
  background: linear-gradient(180deg, var(--accent-soft), #a28759);
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px 17px 22px;
  text-align: left;
  color: var(--text-0);
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.38;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(86, 104, 47, 0.34);
  border-radius: 50%;
  background: rgba(86, 104, 47, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  border-color: rgba(86, 104, 47, 0.72);
  background: linear-gradient(135deg, #66793d, #50632e);
  box-shadow: 0 7px 16px rgba(69, 81, 40, 0.18);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: #f7f3e7;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.42s var(--ease),
    opacity 0.3s var(--ease);
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 72px 0 22px;
  border-top: 1px solid transparent;
  transition:
    padding 0.42s var(--ease),
    border-color 0.32s var(--ease);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer-inner {
  padding-top: 15px;
  padding-bottom: 19px;
  border-top-color: rgba(86, 104, 47, 0.13);
}

.faq-answer p,
.faq-answer-list {
  max-width: 96ch;
  color: var(--text-1);
  font-size: 14.5px;
  line-height: 1.58;
}

.faq-answer p + p,
.faq-answer-list + p {
  margin-top: 13px;
}

.faq-answer-list {
  margin-top: 9px;
  padding-left: 20px;
  list-style: disc;
}

.faq-answer-list li + li {
  margin-top: 5px;
}

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

@media (min-width: 981px) {
  .docs-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .doc-card {
    grid-column: span 2;
  }

  .doc-card:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .doc-card:nth-child(6) {
    grid-column: 4 / span 2;
  }

  .doc-card:nth-child(7) {
    grid-column: 6 / span 2;
  }
}

.doc-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid rgba(128, 107, 76, 0.31);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  background: linear-gradient(145deg, rgba(243, 237, 222, 0.9), rgba(232, 224, 204, 0.64));
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.doc-card::before {
  content: "";
  position: absolute;
  right: 17px;
  bottom: 14px;
  z-index: -1;
  width: 94px;
  height: 54px;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(111, 95, 68, 0.13) 0,
    rgba(111, 95, 68, 0.13) 1px,
    transparent 1px,
    transparent 11px
  );
  opacity: 0.48;
  transform: skewX(-8deg);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 28%, #000 70%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 28%, #000 70%, #000 100%);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.doc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(86, 104, 47, 0.52);
  background: linear-gradient(145deg, rgba(236, 231, 215, 0.98), rgba(218, 223, 190, 0.62));
  box-shadow: 0 14px 26px rgba(58, 55, 42, 0.09);
}

.doc-card:hover::before {
  opacity: 0.82;
  transform: skewX(-8deg) translateX(-2px);
}

.doc-card h4,
.doc-card p {
  position: relative;
  z-index: 1;
}

.doc-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.025em;
  color: var(--text-0);
  margin-bottom: 8px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}

.doc-card:hover h4 {
  color: #53633c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58), 0 5px 12px rgba(86, 104, 47, 0.13);
}

.doc-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

.timeline .section-head {
  margin-bottom: 22px;
}

.timeline-route {
  --timeline-row: 136px;
  --timeline-node: 68px;
  --timeline-center: 76px;
  --timeline-gap: 20px;
  --timeline-copy: 420px;
  --timeline-connector: 24px;
  position: relative;
  display: grid;
  grid-auto-rows: var(--timeline-row);
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.timeline-route::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 68px;
  bottom: 68px;
  width: 2px;
  background: linear-gradient(180deg, rgba(60, 59, 49, 0.55), rgba(99, 94, 75, 0.82) 52%, rgba(60, 59, 49, 0.55));
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--timeline-center) minmax(0, 1fr);
  align-items: center;
  height: var(--timeline-row);
  min-height: 0;
  column-gap: var(--timeline-gap);
}

.timeline-step-copy {
  width: min(100%, var(--timeline-copy));
  max-width: var(--timeline-copy);
  align-self: center;
  text-align: left;
}

.timeline-step--with-note .timeline-step-copy {
  width: min(100%, var(--timeline-copy));
  max-width: var(--timeline-copy);
}

.timeline-step--left .timeline-step-copy {
  grid-column: 1;
  justify-self: end;
  padding: 0;
}

.timeline-step--left .timeline-step-copy h4,
.timeline-step--left .timeline-step-copy p {
  width: 100%;
  margin-left: 0;
}

.timeline-step--right .timeline-step-copy {
  grid-column: 3;
  justify-self: start;
  padding: 0;
}

.timeline-step-node {
  grid-column: 2;
  position: relative;
  z-index: 1;
  width: var(--timeline-node);
  height: var(--timeline-node);
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(247, 241, 230, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(35, 38, 29, 0.3),
    0 12px 24px rgba(50, 48, 39, 0.1);
}

.timeline-step-node::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(247, 241, 230, 0.18);
}

.timeline-step-node img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  object-position: center;
  justify-self: center;
  align-self: center;
}

.timeline-step-node--navy {
  background: linear-gradient(145deg, #324C89, #25355B);
}

.timeline-step-node--azure {
  background: linear-gradient(145deg, #0C9ED0, #0A6588);
}

.timeline-step-node--emerald {
  background: linear-gradient(145deg, #1D7E57, #22513D);
}

.timeline-step-node--mint {
  background: linear-gradient(145deg, #2CA177, #275447);
}

.timeline-step-node--lime {
  background: linear-gradient(145deg, #86A11F, #4B5826);
}

.timeline-step-node--cyan {
  background: linear-gradient(145deg, #0F86B8, #21546B);
}

.timeline-step-node--gold {
  background: linear-gradient(145deg, #C2A300, #5E5620);
}

.timeline-step-node--red {
  background: linear-gradient(145deg, #BB584E, #6F2F2A);
}

.timeline-step-copy h4 {
  margin: 0 0 6px;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.5vw, 1.42rem);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 650;
  text-transform: none;
}

.timeline-step-copy p {
  margin: 0;
  color: var(--text-1);
  font-size: 14.5px;
  line-height: 1.48;
  max-width: 44ch;
}

.timeline-step-note {
  grid-column: 3;
  position: relative;
  align-self: center;
  justify-self: start;
  width: min(100%, var(--timeline-copy));
  max-width: var(--timeline-copy);
  min-height: 76px;
  margin-top: 0;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1.5px solid rgba(111, 133, 72, 0.7);
  background: linear-gradient(180deg, rgba(248, 244, 234, 0.98), rgba(243, 238, 225, 0.96));
  box-shadow: 0 14px 24px rgba(54, 47, 34, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  display: grid;
  place-items: center;
}

.timeline-step-note::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--timeline-connector));
  top: 50%;
  width: var(--timeline-connector);
  height: 2px;
  background: linear-gradient(90deg, rgba(111, 133, 72, 0.9), rgba(111, 133, 72, 0.42));
  transform: translateY(-50%);
}


.timeline-step-note p {
  margin: 0;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.32vw, 1.18rem);
  line-height: 1.26;
  max-width: 25ch;
  text-align: center;
  text-wrap: balance;
  transform-origin: center;
  animation: timeline-note-text-pulse 3.6s ease-in-out infinite;
}

@keyframes timeline-note-text-pulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(111, 133, 72, 0);
  }
  50% {
    transform: scale(1.025);
    text-shadow:
      0 0 10px rgba(111, 133, 72, 0.28),
      0 0 20px rgba(185, 164, 116, 0.14);
  }
}



.gallery {
  padding: 28px clamp(20px, 4vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
}

.gallery .section-desc {
  max-width: 900px;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 102, 72, 0.34);
  border-radius: 28px 10px 28px 10px;
  background: rgba(223, 214, 193, 0.5);
  box-shadow:
    0 22px 48px rgba(55, 49, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.gallery-slider::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 3;
  border: 1px solid rgba(244, 238, 221, 0.32);
  border-radius: 22px 7px 22px 7px;
  pointer-events: none;
}

.gallery-viewport {
  position: relative;
  height: clamp(330px, 44vw, 500px);
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.48s var(--ease), visibility 0.48s var(--ease);
}

.gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 27, 17, 0.04) 44%, rgba(24, 27, 17, 0.68) 100%),
    linear-gradient(90deg, rgba(27, 31, 19, 0.16), transparent 28%, transparent 72%, rgba(27, 31, 19, 0.1));
  pointer-events: none;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.001);
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.gallery-slider:hover .gallery-slide.is-active img {
  transform: scale(1.018);
  filter: saturate(0.98) contrast(1.06);
}

.gallery-slide figcaption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px 6px 15px;
  border-left: 3px solid rgba(194, 171, 113, 0.94);
  background: linear-gradient(90deg, rgba(29, 33, 20, 0.52), rgba(29, 33, 20, 0.08));
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #f6f1e6;
  text-shadow: 0 2px 8px rgba(15, 17, 10, 0.42);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(116, 101, 72, 0.46);
  border-radius: 50%;
  background: rgba(239, 233, 217, 0.88);
  color: #46542d;
  box-shadow: 0 10px 28px rgba(20, 23, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    scale 0.28s var(--ease);
}

.gallery-nav--prev {
  left: 18px;
}

.gallery-nav--next {
  right: 18px;
}

.gallery-nav span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-nav--prev span {
  margin-left: 4px;
  transform: rotate(-135deg);
}

.gallery-nav--next span {
  margin-right: 4px;
  transform: rotate(45deg);
}

.gallery-nav:hover {
  border-color: rgba(74, 91, 45, 0.72);
  background: rgba(78, 96, 48, 0.94);
  color: #f6f1e6;
  box-shadow: 0 12px 30px rgba(29, 35, 19, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  scale: 1.04;
}

.gallery-nav:focus-visible {
  outline: 2px solid rgba(194, 171, 113, 0.95);
  outline-offset: 3px;
}


