:root {
  --sea-green: #45a267;
  --dark-cyan: #1b3031;
  --lime: #ccd33f;
  --ink: #013024;
  --green-deep: #03683e;
  --green: #18a638;
  --olive: #6f962d;
  --mint: #7cc087;
  --cream: #f4e0ce;
  --orange: #df5725;
  --yellow: #fab52c;
  --white: #ffffff;
  --line: rgba(1, 48, 36, 0.12);
  --shadow: 0 18px 45px rgba(1, 48, 36, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcfb 0%, #f7faf7 44%, #ffffff 100%);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
}

body.blog-page {
  background:
    radial-gradient(circle at 86% 18%, rgba(215, 168, 63, 0.14), transparent 30%),
    linear-gradient(180deg, #fff8ea 0%, #fffdf8 42%, #ffffff 72%);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 22px;
  z-index: 20;
  width: min(1320px, calc(100% - 48px));
  margin: 22px auto 0;
}

.header-shell {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 6px 22px;
  border: 1px solid rgba(1, 48, 36, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 250px;
  min-width: 0;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

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

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: #091525;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-link.active::after,
.nav-link:hover::after,
.has-dropdown:hover > .nav-link::after,
.has-dropdown:focus-within > .nav-link::after {
  position: absolute;
  right: 8px;
  bottom: 0;
  left: 8px;
  height: 4px;
  border-radius: 99px;
  background: var(--sea-green);
  content: "";
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron,
.has-dropdown.is-open .chevron {
  border-color: var(--sea-green);
  transform: rotate(225deg) translate(-2px, -1px);
}

.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  position: absolute;
  top: 100%;
  right: -24px;
  left: -24px;
  height: 18px;
  content: "";
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 1fr) minmax(240px, 0.9fr);
  gap: 24px;
  width: min(1060px, calc(100vw - 56px));
  padding: 22px 24px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(1, 48, 36, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.dropdown-column + .dropdown-column {
  padding-left: 24px;
  border-left: 1px solid rgba(1, 48, 36, 0.12);
}

.dropdown-column p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 500;
}

.dropdown-column a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 5px 0;
  border-radius: 10px;
  color: #091525;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-column .dropdown-heading {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin: 0 0 6px;
  padding: 5px 12px;
  border-radius: 10px;
  color: var(--green-deep);
  font-size: 15px;
  transition: background 160ms ease, color 160ms ease;
}

.dropdown-column a:hover {
  color: var(--green-deep);
}

.dropdown-column.domestic a:hover,
.dropdown-column.domestic a.is-selected {
  background: rgba(69, 162, 103, 0.1);
}

.dropdown-column.abroad a:hover,
.dropdown-column.abroad a.is-selected {
  background: rgba(250, 181, 44, 0.16);
  color: #b87800;
}

.dropdown-column.domestic .dropdown-heading:hover,
.dropdown-column.abroad .dropdown-heading:hover {
  background: rgba(69, 162, 103, 0.1);
  color: var(--green-deep);
}

.dropdown-column.abroad .dropdown-heading:hover {
  background: rgba(250, 181, 44, 0.16);
  color: #b87800;
}

.dropdown-column p svg,
.dropdown-column .dropdown-heading > svg:not(.menu-arrow) {
  width: 22px;
  height: 22px;
  stroke-width: 2.3;
}

.dropdown-column.abroad p,
.dropdown-column.abroad .dropdown-heading {
  color: #d99200;
}

.dropdown-column .menu-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(69, 162, 103, 0.1);
  color: var(--green-deep);
}

.dropdown-column.abroad .menu-icon {
  background: rgba(250, 181, 44, 0.15);
  color: #d99200;
}

.dropdown-column .menu-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.dropdown-column .menu-arrow {
  width: 17px;
  height: 17px;
  color: #091525;
  stroke-width: 2.2;
}

.dropdown-promo {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 24px 20px;
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(241, 248, 241, 0.94) 0%, rgba(233, 243, 233, 0.88) 56%, rgba(207, 228, 208, 0.6) 100%),
    url("../assets/patika_cap_books_sketch.svg") right -56px top -36px / 210px auto no-repeat,
    linear-gradient(145deg, rgba(124, 192, 135, 0.24), rgba(244, 224, 206, 0.42));
}

.dropdown-promo > * {
  position: relative;
  z-index: 1;
}

.dropdown-promo strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  max-width: 205px;
}

.dropdown-promo-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(69, 162, 103, 0.2);
}

.dropdown-promo p {
  margin: 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  max-width: 190px;
}

.dropdown-promo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--sea-green);
  border-radius: 8px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.dropdown-promo a:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.dropdown-promo a span {
  font-size: 22px;
  line-height: 1;
}

.header-cta,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--sea-green) 0%, var(--green-deep) 54%, var(--lime) 145%);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(69, 162, 103, 0.24), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.header-cta,
.mobile-cta {
  transition: background 200ms ease, box-shadow 200ms ease, transform 120ms ease;
}

.header-cta:hover,
.mobile-cta:hover {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--sea-green) 58%, var(--yellow) 150%);
  box-shadow: 0 14px 30px rgba(69, 162, 103, 0.36);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  margin-left: auto;
  border: 0;
  border-radius: 9px;
  background: var(--sea-green);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
}

.mobile-panel {
  margin: 6px auto 0;
  padding: 16px 22px 22px;
  border: 1px solid rgba(1, 48, 36, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.mobile-panel > a,
.mobile-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 47px;
  border-bottom: 1px solid var(--line);
  color: #091525;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

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

.mobile-panel summary::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
}

.mobile-summary-link {
  color: inherit;
}

.mobile-summary-link:hover {
  color: var(--green);
}

.mobile-panel details[open] > summary::after {
  transform: rotate(90deg);
}

.mobile-submenu {
  padding: 8px 0 4px 14px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0 10px 14px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
}

.mobile-cta {
  width: 100%;
  margin-top: 18px;
  border-bottom: 0;
}

.hero-section {
  padding: 10px 24px 0;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 28px;
  width: min(1220px, 100%);
  min-height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #f8fbf8 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 36px 0 34px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 20px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(69, 162, 103, 0.1);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-kicker svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.hero-copy h1 {
  max-width: 660px;
  margin: 0;
  color: #101a2a;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 700;
  line-height: 1.12;
}

.hero-copy h1 span {
  display: block;
  color: var(--green-deep);
}

.hero-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(3, 104, 62, 0.18);
  transition: background 200ms ease, box-shadow 200ms ease, transform 120ms ease;
}

.hero-primary:hover {
  background: #024d2e;
  box-shadow: 0 16px 32px rgba(3, 104, 62, 0.3);
  transform: translateY(-2px);
}

.hero-secondary {
  border: 1px solid rgba(69, 162, 103, 0.42);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-deep);
  transition: border-color 200ms ease, background 200ms ease, transform 120ms ease;
}

.hero-secondary:hover {
  border-color: var(--sea-green);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-2px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.hero-features div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #112423;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-features svg {
  width: 28px;
  height: 28px;
  color: var(--green-deep);
  stroke-width: 1.9;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 500px;
}

.hero-visual img {
  position: absolute;
  right: -74px;
  bottom: 0;
  width: min(820px, 115%);
  max-width: none;
  height: auto;
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 250px;
  min-height: 96px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(1, 48, 36, 0.13);
}

.hero-card-top {
  top: 72px;
  left: -10px;
}

.hero-card-bottom {
  top: 214px;
  left: 10px;
}

.hero-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
}

.hero-card-bottom > span {
  background: var(--yellow);
  color: var(--green-deep);
}

.hero-card svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.3;
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: #132224;
  font-size: 13px;
  font-weight: 800;
}

.hero-card p {
  margin: 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.section-divider {
  position: relative;
  height: 96px;
  margin-top: -20px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.section-divider .wave {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.programs-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 0 36px;
  background: linear-gradient(180deg, #f1f3f2 0%, #f6f7f6 100%);
}

.programs-container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #101a2a;
  font-size: 24px;
  font-weight: 700;
}

.section-heading h2::after {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--green-deep);
  content: "";
}

.program-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.program-card {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: 18px 24px 20px;
  background: linear-gradient(90deg, #f4faf6 0%, #edf6ef 54%, #e8f4eb 100%);
}

.program-card-abroad {
  background: linear-gradient(90deg, #fffdf8 0%, #fff8ea 54%, #fff1d6 100%);
}

.program-content {
  position: relative;
  z-index: 2;
  max-width: 340px;
}

.program-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.program-title span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
}

.program-card-abroad .program-title span {
  background: var(--yellow);
  color: var(--green-deep);
}

.program-title svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.4;
}

.program-title h3 {
  margin: 0;
  color: #132224;
  font-size: 22px;
  font-weight: 700;
}

.program-content p {
  max-width: 310px;
  margin: 18px 0 18px;
  color: rgba(1, 48, 36, 0.74);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.program-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(3, 104, 62, 0.72);
  border-radius: 5px;
  color: #132224;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.program-tags a:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.program-card-abroad .program-tags a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-deep);
}

.program-card-abroad .program-tags a {
  border-color: rgba(250, 181, 44, 0.9);
}

.program-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  transition: background 200ms ease, transform 120ms ease, box-shadow 200ms ease;
}

.program-button:hover {
  background: #024d2e;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(3, 104, 62, 0.28);
}

.program-card-abroad .program-button {
  background: var(--yellow);
  color: var(--green-deep);
}

.program-card-abroad .program-button:hover {
  background: #e8a520;
  box-shadow: 0 8px 20px rgba(250, 181, 44, 0.36);
}

.program-button span {
  font-size: 18px;
  line-height: 1;
}

.program-card > img {
  position: absolute;
  right: -6px;
  bottom: -4px;
  z-index: 1;
  width: min(360px, 52%);
  height: auto;
  pointer-events: none;
}

.program-card-abroad > img {
  right: -6px;
  bottom: -4px;
  width: min(360px, 52%);
}

.programs-page .programs-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 58px 0 64px;
  background: linear-gradient(180deg, #f1f3f2 0%, #f6f7f6 100%);
}

.programs-page .program-content {
  max-width: 430px;
}

.programs-page .program-card > img {
  width: min(330px, 44%);
}

.programs-placeholder-section {
  min-height: 260px;
  background: #f6fbf8;
}

.programs-placeholder-section-alt {
  background: #fff1d6;
}

.programs-hero-divider + .programs-placeholder-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  background: linear-gradient(180deg, #f1f3f2 0%, #f6f7f6 100%);
}

.camps-page {
  background: #fffdf8;
}

.camps-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 0;
  background: #fffdf8;
}

.camps-hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(500px, 0.54fr);
  align-items: center;
  gap: 44px;
  width: min(1220px, 100%);
  min-height: 540px;
  margin: 0 auto;
}

.camps-hero-copy {
  max-width: 560px;
}

.camps-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 32px;
  background: rgba(69, 162, 103, 0.12);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
}

.camps-hero h1 {
  max-width: 660px;
  margin: 20px 0 0;
  color: #101a2a;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.camps-hero h1 span {
  display: block;
  color: var(--green-deep);
}

.camps-hero-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.camps-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.camps-primary,
.camps-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.camps-primary {
  background: var(--green-deep);
  color: #ffffff;
}

.camps-secondary {
  border: 1px solid rgba(1, 48, 36, 0.18);
  background: transparent;
  color: var(--green-deep);
}

.camps-primary:hover,
.camps-secondary:hover {
  transform: translateY(-4px);
}

.camps-secondary:hover {
  border-color: var(--green-deep);
  background: #ffffff;
}

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

.camps-feature-grid div {
  min-width: 0;
}

.camps-feature-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: var(--green-deep);
  box-shadow: 0 10px 24px rgba(1, 48, 36, 0.06);
}

.camps-feature-grid svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
}

.camps-feature-grid strong {
  display: block;
  color: #101a2a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.camps-feature-grid p {
  margin: 6px 0 0;
  color: rgba(1, 48, 36, 0.66);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.camps-hero-visual {
  position: relative;
  min-height: 460px;
}

.camps-hero-visual figure {
  position: relative;
  z-index: 1;
  height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(1, 48, 36, 0.16);
}

.camps-hero-visual figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 241, 214, 0.05), rgba(0, 0, 0, 0.08));
  content: "";
  pointer-events: none;
}

.camps-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 64%;
}

.camps-orb {
  position: absolute;
  border-radius: 50%;
  background: #fff1d6;
  pointer-events: none;
}

.camps-orb-large {
  top: -44px;
  right: -56px;
  width: 250px;
  height: 250px;
  opacity: 0.2;
}

.camps-orb-small {
  right: 64px;
  bottom: -34px;
  width: 156px;
  height: 156px;
  opacity: 0.15;
}

.camps-hero-divider {
  width: 100%;
}

.camps-model-section,
.camps-types-section,
.camps-process-section,
.camps-info-row-section,
.camps-final-cta {
  padding: 86px 24px;
}

.camps-model-section,
.camps-types-section,
.camps-process-section {
  background: #ffffff;
}

.camps-model-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  background: linear-gradient(180deg, #f1f3f2 0%, #f6f7f6 100%);
}

.camps-types-section {
  background: #fffbf5;
}

.camps-types-section,
.camps-process-section {
  padding-top: 34px;
  padding-bottom: 52px;
}

.camps-info-row-section {
  background: #f6fbf8;
}

.camps-section-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.camps-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.camps-section-head h3 {
  margin: 18px 0 0;
  color: var(--green-deep);
  font-size: clamp(24px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.22;
}

.camps-section-head p,
.camps-calendar-panel p,
.camps-final-cta p {
  margin: 16px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.camps-card-grid {
  display: grid;
  gap: 18px;
}

.camps-card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.camps-card-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.camps-info-card,
.camps-mini-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 77, 69, 0.1);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(1, 48, 36, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.camps-info-card {
  min-height: 210px;
  padding: 24px 22px;
  border-radius: 18px;
}

.camps-info-card::before,
.camps-mini-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 5px;
  border-radius: 0 0 999px 0;
  background: #45a267;
  content: "";
}

.camps-info-card:nth-child(2)::before,
.camps-mini-card:nth-child(2)::before {
  background: #d7a83f;
}

.camps-info-card:nth-child(3)::before,
.camps-mini-card:nth-child(3)::before {
  background: #3b82c4;
}

.camps-info-card:nth-child(4)::before,
.camps-mini-card:nth-child(4)::before {
  background: #18a87d;
}

.camps-info-card:nth-child(5)::before,
.camps-mini-card:nth-child(5)::before {
  background: #8c6c3f;
}

.camps-info-card:hover,
.camps-mini-card:hover {
  border-color: rgba(69, 162, 103, 0.26);
  box-shadow: 0 22px 44px rgba(1, 48, 36, 0.1);
  transform: translateY(-6px);
}

.camps-info-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--green-deep);
  stroke-width: 1.9;
}

.camps-info-card h3,
.camps-type-card h3,
.camps-timeline h3 {
  margin: 0;
  color: #101a2a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
}

.camps-info-card p,
.camps-type-card p,
.camps-timeline p {
  margin: 12px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.camps-soft-card {
  min-height: 185px;
}

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

.camps-type-card {
  display: grid;
  align-content: space-between;
  min-height: 520px;
  padding: 30px;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 22px;
  background: #fffbf5;
  box-shadow: 0 18px 42px rgba(1, 48, 36, 0.07);
}

.camps-type-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #9d7620;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.camps-feature-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(1, 48, 36, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.camps-mini-card {
  display: grid;
  min-height: 134px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px 16px 20px;
  border-radius: 16px;
  text-align: center;
}

.camps-mini-card svg {
  width: 28px;
  height: 28px;
  color: var(--green-deep);
  stroke-width: 2;
}

.camps-mini-card span {
  color: #101a2a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.camps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.camps-timeline::before {
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(69, 162, 103, 0), rgba(69, 162, 103, 0.34), rgba(69, 162, 103, 0));
  content: "";
}

.camps-timeline article {
  position: relative;
  z-index: 1;
  padding: 0 8px;
  text-align: center;
}

.camps-timeline span {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border: 1px solid rgba(69, 162, 103, 0.2);
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(1, 48, 36, 0.08);
}

.camps-info-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 24px;
  align-items: stretch;
}

.camps-calendar-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
  padding: 36px;
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(1, 48, 36, 0.08);
}

.camps-calendar-panel p {
  max-width: 760px;
}

.camps-faq-panel {
  padding: 36px;
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(1, 48, 36, 0.08);
}

.camps-faq-panel .camps-section-head {
  margin-bottom: 24px;
}

.camps-faq-list {
  max-width: none;
}

.camps-faq-list .faq-item {
  background: #ffffff;
}

.camps-final-cta {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  text-align: center;
}

.camps-final-cta::before {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 241, 214, 0.12);
  content: "";
}

.camps-final-cta .camps-section-container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.camps-final-cta h2 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.12;
}

.camps-final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.camps-final-cta .camps-primary {
  margin-top: 28px;
  background: #d7a83f;
  color: #13251d;
}

.programs-abroad-heading {
  max-width: 900px;
}

.programs-abroad-heading p {
  margin: 18px 0 0;
  color: rgba(1, 48, 36, 0.76);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.programs-abroad-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.programs-abroad-feature {
  display: grid;
  grid-template-rows: 268px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(168, 112, 16, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(96, 62, 9, 0.08);
}

.programs-abroad-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8ea, #f2f8f3);
}

.programs-abroad-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.programs-abroad-content {
  padding: 28px;
}

.programs-abroad-content > span,
.programs-abroad-consulting-copy > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(250, 181, 44, 0.3);
  border-radius: 999px;
  background: #ffffff;
  color: #8a5f0e;
  font-size: 12px;
  font-weight: 700;
}

.programs-abroad-content h3,
.programs-abroad-consulting-copy h3 {
  margin: 0;
  color: #101a2a;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.22;
}

.programs-abroad-content p,
.programs-abroad-consulting-copy p {
  margin: 16px 0 0;
  color: rgba(1, 48, 36, 0.76);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.programs-abroad-content ul,
.programs-exam-card ul,
.programs-abroad-consulting-copy ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.programs-abroad-content li,
.programs-exam-card li,
.programs-abroad-consulting-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(1, 48, 36, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.programs-abroad-content li::before,
.programs-exam-card li::before,
.programs-abroad-consulting-copy li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #d7a83f;
  content: "✓";
  font-weight: 800;
}

.programs-abroad-content a,
.programs-exam-card a,
.programs-abroad-consulting-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.programs-abroad-content a:hover,
.programs-exam-card a:hover,
.programs-abroad-consulting-copy a:hover {
  gap: 12px;
  color: #8a5f0e;
}

.programs-exam-block {
  margin-top: 34px;
}

.programs-exam-block > h3 {
  margin: 0 0 18px;
  color: #101a2a;
  font-size: 22px;
  font-weight: 700;
}

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

.programs-exam-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid rgba(168, 112, 16, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(96, 62, 9, 0.06);
}

.programs-exam-card > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(250, 181, 44, 0.18);
  color: var(--green-deep);
}

.programs-exam-card svg {
  width: 22px;
  height: 22px;
}

.programs-exam-card h4 {
  margin: 0;
  color: #101a2a;
  font-size: 22px;
  font-weight: 700;
}

.programs-abroad-consulting {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(168, 112, 16, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(96, 62, 9, 0.08);
}

.programs-abroad-consulting-copy {
  padding: 38px 42px;
}

.programs-abroad-consulting-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(250, 181, 44, 0.12), rgba(3, 104, 62, 0.08));
}

.programs-abroad-consulting-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.programs-domestic-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.programs-feature-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 18px;
  background: #f6fbf8;
  box-shadow: 0 18px 44px rgba(1, 48, 36, 0.07);
}

.programs-feature-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 104, 62, 0.08), rgba(255, 255, 255, 0.32));
}

.programs-feature-visual img {
  position: absolute;
  inset: auto auto 0 50%;
  width: min(520px, 112%);
  max-width: none;
  transform: translateX(-50%);
}

.programs-feature-visual img.programs-feature-image-fit {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.programs-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 42px;
}

.programs-feature-content > span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 165, 97, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
}

.programs-feature-content h3,
.programs-support-card h3 {
  margin: 0;
  color: #101a2a;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
}

.programs-feature-content p,
.programs-support-card p {
  margin: 14px 0 0;
  color: rgba(1, 48, 36, 0.76);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.programs-feature-content strong {
  display: block;
  margin-top: 18px;
  color: #101a2a;
  font-size: 13px;
  font-weight: 700;
}

.programs-feature-content ul,
.programs-support-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.programs-feature-content li,
.programs-support-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(1, 48, 36, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.programs-feature-content li::before,
.programs-support-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #00a561;
  content: "✓";
  font-weight: 700;
}

.programs-feature-content a,
.programs-support-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 20px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.programs-feature-content a:hover,
.programs-support-card a:hover {
  gap: 12px;
  color: #024d2e;
}

.programs-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.programs-support-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(1, 48, 36, 0.05);
}

.programs-support-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(0, 165, 97, 0.1);
  color: var(--green-deep);
}

.programs-support-card svg {
  width: 21px;
  height: 21px;
}

.programs-support-card h4 {
  margin: 10px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.journey-section {
  padding: 10px 0 32px;
}

.journey-container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.journey-container h2 {
  margin: 0 0 38px;
  color: #101a2a;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: visible;
  border: 1px solid rgba(1, 48, 36, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(1, 48, 36, 0.06);
}

.journey-steps::before {
  position: absolute;
  top: -18px;
  right: 48px;
  left: 48px;
  height: 1px;
  border-top: 1px dashed rgba(1, 48, 36, 0.24);
  content: "";
}

.journey-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 182px;
  padding: 30px 16px 18px;
  text-align: center;
  transition: background 200ms ease;
}

.journey-step:hover {
  background: rgba(69, 162, 103, 0.05);
}

.journey-step:hover > svg {
  background: rgba(69, 162, 103, 0.18);
}

.journey-step + .journey-step {
  border-left: 1px solid rgba(1, 48, 36, 0.1);
}

.step-number {
  position: absolute;
  top: -29px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #091525;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transform: translateX(-50%);
}

.journey-step:nth-child(even) .step-number {
  background: var(--green-deep);
}

.journey-step > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 50%;
  background: #f2f6f2;
  color: var(--green-deep);
  stroke-width: 1.9;
  box-sizing: content-box;
}

.journey-step h3 {
  max-width: 120px;
  margin: 0 0 12px;
  color: #101a2a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.journey-step p {
  max-width: 125px;
  margin: 0;
  color: rgba(1, 48, 36, 0.75);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}

.journey-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.journey-promo {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 182px;
  overflow: hidden;
  border: 1px solid rgba(1, 48, 36, 0.09);
  border-radius: 10px;
  background: linear-gradient(90deg, #f4faf6 0%, #ffffff 100%);
}

.journey-camp {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.92fr);
  background: linear-gradient(90deg, #fffaf0 0%, #ffffff 100%);
}

.promo-media {
  position: relative;
  min-height: 182px;
  overflow: hidden;
}

.promo-media img {
  width: 100%;
  height: 100%;
  min-height: 182px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.journey-video .promo-media img {
  object-position: 50% 48%;
}

.journey-camp .promo-media img {
  object-position: 50% 54%;
}

.promo-media button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 14px 32px rgba(1, 48, 36, 0.16);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.promo-media button:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 18px 40px rgba(1, 48, 36, 0.28);
}

.promo-media button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke-width: 0;
  transform: translateX(2px);
}

.promo-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 24px 28px;
}

.promo-copy h3 {
  max-width: 280px;
  margin: 0 0 14px;
  color: #101a2a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.promo-copy p {
  max-width: 330px;
  margin: 0 0 20px;
  color: rgba(1, 48, 36, 0.76);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.promo-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 200ms ease, transform 120ms ease, box-shadow 200ms ease;
}

.promo-copy a:hover {
  background: #024d2e;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(3, 104, 62, 0.28);
}

.journey-camp .promo-copy a {
  border: 1px solid rgba(250, 181, 44, 0.9);
  background: rgba(255, 255, 255, 0.65);
  color: var(--green-deep);
}

.journey-camp .promo-copy a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-deep);
  box-shadow: 0 8px 20px rgba(250, 181, 44, 0.3);
}

.promo-copy a span {
  font-size: 18px;
  line-height: 1;
}

.promo-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(250, 181, 44, 0.2);
}

.promo-badge svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.guide-faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.home-final-cta {
  position: relative;
  overflow: hidden;
  padding: 54px 24px;
  background: var(--green-deep);
  color: #ffffff;
}

.home-final-cta::before {
  position: absolute;
  right: -72px;
  bottom: -120px;
  width: min(420px, 40vw);
  height: min(420px, 40vw);
  background: url("../assets/footer-submark.svg") center / contain no-repeat;
  opacity: 0.08;
  content: "";
}

.home-final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: 42px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.home-final-path {
  display: none;
}

.home-final-path path {
  fill: none;
  stroke: rgba(3, 104, 62, 0.2);
  stroke-dasharray: 12 13;
  stroke-linecap: round;
  stroke-width: 5;
}

.home-final-path circle {
  fill: rgba(3, 104, 62, 0.22);
  stroke: #fffdf8;
  stroke-width: 3;
}

.home-final-copy,
.home-final-actions {
  position: relative;
  z-index: 1;
}

.home-final-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-final-copy p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.home-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-final-button:hover {
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.home-final-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.home-final-button-primary {
  background: #ffffff;
  color: var(--green-deep);
}

.home-final-button-primary:hover {
  background: #fffdf8;
}

.home-final-button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
}

.home-final-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.guide-panel,
.faq-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(1, 48, 36, 0.05);
}

.guide-panel {
  padding: 24px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-heading h2,
.faq-panel h2 {
  margin: 0;
  color: #101a2a;
  font-size: 20px;
  font-weight: 800;
}

.panel-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: gap 180ms ease, color 160ms ease;
}

.panel-heading > a:hover {
  gap: 12px;
  color: var(--sea-green);
}

.guide-list {
  display: grid;
  gap: 8px;
}

.guide-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  min-height: 116px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 150ms ease;
}

.guide-card:hover {
  border-color: rgba(69, 162, 103, 0.35);
  box-shadow: 0 8px 24px rgba(1, 48, 36, 0.1);
  transform: translateY(-2px);
}

.guide-thumb {
  width: 112px;
  height: 116px;
  object-fit: cover;
  display: block;
}

.thumb-1 {
  object-position: 20% 22%;
}

.thumb-2 {
  object-position: 48% 45%;
}

.thumb-3 {
  object-position: 80% 62%;
}

.guide-card div {
  min-width: 0;
  padding: 16px 16px 14px 0;
}

.guide-card p {
  margin: 0 0 6px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
}

.guide-card h3 {
  margin: 0 0 7px;
  color: #101a2a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.32;
}

.guide-card div > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(1, 48, 36, 0.74);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.guide-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  transition: gap 180ms ease;
}

.guide-card a:hover {
  gap: 11px;
}

.faq-panel {
  position: relative;
  padding: 24px 28px;
}

.faq-panel::after {
  position: absolute;
  top: -18px;
  right: 18px;
  color: rgba(1, 48, 36, 0.04);
  content: "?";
  font-size: 210px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.faq-panel h2,
.faq-list,
.faq-button {
  position: relative;
  z-index: 1;
}

.faq-panel h2 {
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover {
  border-color: rgba(69, 162, 103, 0.3);
  box-shadow: 0 4px 14px rgba(1, 48, 36, 0.08);
}

.faq-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #101a2a;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.faq-list button:hover,
.faq-list button[aria-expanded="true"] {
  color: var(--green-deep);
  background: rgba(69, 162, 103, 0.04);
}

.faq-list button span {
  color: var(--green-deep);
  font-size: 20px;
  line-height: 1;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: rgba(1, 48, 36, 0.74);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.faq-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  margin: 22px auto 0;
  padding: 0 24px;
  border: 1px solid rgba(3, 104, 62, 0.65);
  border-radius: 6px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 120ms ease;
}

.faq-button:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.site-footer {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, #013024 0%, #043126 46%, #01251d 100%);
  color: var(--white);
}

.site-footer::after {
  position: absolute;
  top: 28px;
  right: max(28px, calc((100% - 1320px) / 2 + 12px));
  width: clamp(128px, 14vw, 205px);
  aspect-ratio: 470 / 520;
  background: url("../assets/footer-submark.svg") center / contain no-repeat;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1.62fr 0.95fr 1.72fr;
  gap: 28px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 48px 24px;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand,
.program-column,
.footer-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  padding-right: 34px;
}

.footer-brand img {
  width: min(100%, 250px);
  height: auto;
}

.footer-brand p {
  max-width: 250px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 16px;
  color: var(--sea-green);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.footer-column h3 {
  color: var(--yellow);
}

.footer-column h2 a,
.footer-column h3 a {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

.footer-column h2 a:hover,
.footer-column h3 a:hover {
  color: inherit;
  padding-left: 0;
}

.footer-column h2 a::before,
.footer-column h3 a::before {
  content: none;
}

.footer-column a {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 300;
  transition: color 160ms ease, padding-left 160ms ease;
}

.footer-column a:hover {
  color: var(--sea-green);
  padding-left: 4px;
}

.footer-column a::before {
  color: var(--sea-green);
  content: "› ";
  font-weight: 300;
}

.footer-program-grid {
  display: grid;
  grid-template-columns: minmax(145px, 1fr) minmax(160px, 1fr);
  gap: 22px;
}

.footer-program-grid a {
  white-space: nowrap;
}

.footer-contact a::before,
.social-links a::before {
  content: "";
}

.footer-contact .contact-row::before {
  display: none;
  content: none;
}

.footer-contact .contact-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  max-width: 250px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.footer-contact .contact-row i,
.footer-contact .contact-row svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--sea-green);
  stroke-width: 2.4;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-links a svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.social-links a:hover {
  padding-left: 12px;
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-deep);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 48px;
  border-top: 1px solid var(--yellow);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 300;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-mark {
  display: block;
  flex: 0 0 auto;
  width: 28px;
  aspect-ratio: 470 / 520;
  background: url("../assets/footer-submark.svg") center / contain no-repeat;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-bottom nav a {
  transition: color 160ms ease;
}

.footer-bottom nav a:hover {
  color: var(--sea-green);
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 24px;
  }

  .brand {
    flex-basis: 210px;
  }

  .header-cta {
    padding: 0 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .program-column,
  .footer-column:not(:last-child) {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 14px;
    width: min(1320px, calc(100% - 28px));
    margin-top: 14px;
  }

  .header-shell {
    min-height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .brand {
    flex: 0 1 210px;
    padding-right: 0;
    border-right: 0;
  }

  .brand img {
    width: 174px;
  }

  .menu-button {
    display: block;
  }

  .footer-inner {
    gap: 28px;
    padding: 30px 28px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 28px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
    padding: 28px 0 0;
  }

  .hero-copy h1,
  .hero-copy > p {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual img {
    right: -28px;
    width: min(760px, 100%);
  }

  .hero-card-top {
    top: 32px;
    left: 18px;
  }

  .hero-card-bottom {
    top: 150px;
    left: 44px;
  }

  .program-cards {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 260px;
  }

  .program-card > img {
    width: min(330px, 52%);
  }

  .programs-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .programs-feature-visual {
    min-height: 260px;
  }

  .programs-feature-visual img {
    width: min(460px, 86%);
  }

  .programs-feature-content {
    padding: 32px;
  }

  .programs-support-grid {
    grid-template-columns: 1fr;
  }

  .programs-abroad-showcase,
  .programs-exam-grid,
  .programs-abroad-consulting {
    grid-template-columns: 1fr;
  }

  .programs-abroad-consulting-visual {
    min-height: 280px;
  }

  .programs-abroad-consulting-visual img {
    right: -36px;
    width: min(460px, 94%);
  }

  .journey-container {
    width: min(1220px, calc(100% - 32px));
  }

  .journey-steps {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .journey-steps::before {
    top: 20px;
    bottom: 20px;
    left: 29px;
    width: 1px;
    height: auto;
    border-top: 0;
    border-left: 1px dashed rgba(1, 48, 36, 0.24);
  }

  .journey-step {
    grid-template-columns: 34px 30px minmax(0, 1fr);
    column-gap: 8px;
    justify-items: start;
    align-items: center;
    min-height: 0;
    padding: 15px 14px;
    text-align: left;
  }

  .journey-step + .journey-step {
    border-top: 1px solid rgba(1, 48, 36, 0.1);
    border-left: 0;
  }

  .step-number {
    position: static;
    width: 30px;
    height: 30px;
    font-size: 12px;
    transform: none;
    grid-row: 1 / span 2;
  }

  .journey-step > svg {
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 4px;
    grid-row: 1 / span 2;
  }

  .journey-step h3 {
    grid-column: 3;
    max-width: none;
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 1.25;
  }

  .journey-step p {
    grid-column: 3;
    max-width: none;
    font-size: 11px;
    line-height: 1.45;
  }

  .journey-promos {
    grid-template-columns: 1fr;
  }

  .journey-promo,
  .journey-camp {
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  }

  .guide-faq-section {
    grid-template-columns: 1fr;
  }

  .home-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-final-actions {
    justify-content: flex-start;
  }

  .site-footer::after {
    top: 28px;
    right: 24px;
    width: 124px;
    opacity: 0.22;
  }
}

@media (max-width: 640px) {
  .header-shell {
    min-height: 68px;
    padding: 6px 16px;
    border-radius: 14px;
  }

  .brand img {
    width: 158px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .footer-inner,
  .footer-program-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: min(100%, 250px);
  }

  .footer-bottom nav {
    gap: 14px;
  }

  .footer-bottom-mark {
    display: none;
  }

  .hero-section {
    padding: 8px 16px 0;
  }

  .section-divider {
    height: 76px;
    margin-top: -16px;
  }

  .programs-section {
    margin-top: -28px;
  }

  .home-final-cta {
    padding: 42px 16px;
  }

  .home-final-cta-inner {
    width: 100%;
  }

  .home-final-copy h2 {
    font-size: 26px;
  }

  .home-final-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .home-final-copy p br {
    display: none;
  }

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

  .home-final-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .home-final-path {
    right: -160px;
    bottom: -34px;
    width: 620px;
  }

  .hero-container {
    border-radius: 0;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-copy > p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    right: -86px;
    width: 620px;
  }

  .hero-card {
    display: none;
  }

  .programs-section {
    padding: 0 0 22px;
  }

  .programs-container {
    width: calc(100% - 28px);
  }

  .section-heading h2 {
    font-size: 22px;
  }

  .program-card {
    min-height: 380px;
    padding: 18px 18px 150px;
  }

  .program-content {
    max-width: none;
  }

  .program-title h3 {
    font-size: 19px;
  }

  .program-content p {
    max-width: none;
    margin: 20px 0 22px;
  }

  .program-tags {
    gap: 10px;
    margin-bottom: 22px;
  }

  .program-tags a {
    min-width: 64px;
    padding: 0 14px;
  }

  .program-card > img,
  .program-card-abroad > img {
    right: 0;
    bottom: 0;
    width: min(330px, 82%);
  }

  .programs-page .programs-section {
    padding: 44px 0 48px;
  }

  .programs-feature-card {
    border-radius: 14px;
  }

  .programs-feature-visual {
    min-height: 210px;
  }

  .programs-feature-content,
  .programs-support-card {
    padding: 24px 22px;
  }

  .programs-feature-content h3,
  .programs-support-card h3 {
    font-size: 22px;
  }

  .programs-feature-content p,
  .programs-support-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .programs-feature-content li,
  .programs-support-card li {
    font-size: 13px;
  }

  .programs-placeholder-section {
    min-height: 220px;
  }

  .programs-abroad-heading p {
    font-size: 14px;
    line-height: 1.7;
  }

  .programs-abroad-showcase {
    gap: 14px;
    margin-top: 24px;
  }

  .programs-abroad-feature {
    grid-template-rows: 200px minmax(0, 1fr);
    border-radius: 14px;
  }

  .programs-abroad-content,
  .programs-exam-card,
  .programs-abroad-consulting-copy {
    padding: 24px 22px;
  }

  .programs-abroad-content h3,
  .programs-abroad-consulting-copy h3 {
    font-size: 22px;
  }

  .programs-exam-grid {
    gap: 14px;
  }

  .programs-exam-card {
    min-height: 0;
  }

  .programs-abroad-consulting {
    gap: 0;
    border-radius: 16px;
  }

  .programs-abroad-consulting-visual {
    min-height: 220px;
  }

  .journey-section {
    padding: 8px 0 24px;
  }

  .journey-container {
    width: calc(100% - 28px);
  }

  .journey-container h2 {
    margin-bottom: 34px;
    font-size: 19px;
  }

  .journey-promos {
    gap: 12px;
    margin-top: 22px;
  }

  .journey-promo,
  .journey-camp {
    grid-template-columns: 1fr;
  }

  .journey-camp .promo-copy {
    order: 2;
  }

  .journey-camp .promo-media {
    order: 1;
  }

  .promo-media,
  .promo-media img {
    min-height: 160px;
  }

  .promo-copy {
    padding: 20px;
  }

  .promo-copy h3 {
    font-size: 18px;
  }

  .promo-badge {
    top: 16px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .guide-panel,
  .faq-panel {
    padding: 18px;
  }

  .panel-heading h2,
  .faq-panel h2 {
    font-size: 18px;
  }

  .guide-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 104px;
  }

  .guide-thumb {
    width: 86px;
    height: 104px;
  }

  .guide-card div {
    padding: 12px 12px 12px 0;
  }

  .guide-card h3 {
    font-size: 13px;
  }

  .guide-card div > span {
    font-size: 11px;
  }

  .faq-list button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }
}


.content-section {
  padding: 64px 24px 72px;
}

.program-detail-content {
  padding-top: 36px;
  background: linear-gradient(180deg, #f7fbf8 0%, #eef7f1 100%);
}

.program-faq-section {
  padding-top: 36px;
  background: #fff8ee;
}

.program-offerings-section {
  padding-top: 36px;
  background: #ffffff;
}

.program-offerings-heading {
  max-width: none;
  margin-bottom: 26px;
}

.program-offerings-heading p {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  color: rgba(1, 48, 36, 0.74);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

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

.program-offering-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(1, 48, 36, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.program-offering-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 5px;
  border-radius: 0 0 999px 0;
  background: #d7a83f;
  content: "";
}

.program-offering-card:first-child {
  background: #f6fbf8;
  border-color: rgba(3, 104, 62, 0.16);
}

.program-offering-card:first-child::before {
  width: 78px;
  background: #00a561;
}

.program-offering-card:first-child .program-offering-icon {
  width: 66px;
  height: 66px;
  background: rgba(3, 104, 62, 0.1);
  color: var(--green-deep);
}

.program-offering-card:first-child .program-offering-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.program-offering-card:hover {
  border-color: rgba(215, 168, 63, 0.34);
  box-shadow: 0 24px 46px rgba(1, 48, 36, 0.11);
  transform: translateY(-7px);
}

.program-offering-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(215, 168, 63, 0.14);
  color: var(--green-deep);
}

.program-offering-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.1;
}

.program-offering-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 66px;
  margin-bottom: 12px;
}

.program-offering-header .program-offering-icon {
  flex: 0 0 58px;
  margin-bottom: 0;
}

.program-offering-card:first-child .program-offering-header .program-offering-icon {
  flex-basis: 66px;
}

.program-offering-header h3 {
  margin-bottom: 0;
}

.program-offering-kicker {
  margin: 0 0 6px;
  color: #9d7620;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.program-offering-card h3 {
  margin: 0 0 10px;
  color: #101a2a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0;
}

.program-offering-card > p:not(.program-offering-kicker) {
  margin: 0;
  color: rgba(1, 48, 36, 0.76);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.program-offering-output {
  margin-top: 10px;
  padding-top: 10px;
}

.program-offering-output strong {
  display: block;
  margin-bottom: 8px;
  color: #101a2a;
  font-size: 12px;
  font-weight: 700;
}

.program-offering-output ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-offering-output li {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(3, 104, 62, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(1, 48, 36, 0.78);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.program-info-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 44px;
  align-items: stretch;
  margin-top: 0;
}

.program-info-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(1, 48, 36, 0.76);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.program-emphasis-card {
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(69, 162, 103, 0.2);
  border-left: 4px solid var(--green-deep);
  border-radius: 8px;
  background: rgba(69, 162, 103, 0.08);
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.program-info-visual {
  position: relative;
  height: 360px;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(69, 162, 103, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.program-info-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-fit-section .program-info-split {
  display: block;
  max-width: none;
}

.program-fit-section {
  background: #f6fbf8;
}

.program-detail-hero-divider + .program-fit-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  background: linear-gradient(180deg, #f1f3f2 0%, #f6f7f6 100%);
}

.blog-hero-divider {
  display: none;
}

.blog-hero-divider + .blog-placeholder-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: #fffdf8;
}

/* Blog Article Hero */
.blog-article-hero {
  padding: 14px 24px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(215, 168, 63, 0.14), transparent 30%),
    linear-gradient(180deg, #fff8ea 0%, #fffdf8 100%);
}

.blog-article-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 34px;
  align-items: center;
  width: min(1200px, 100%);
  min-height: 390px;
  margin: 0 auto;
}

.blog-article-hero-copy {
  max-width: 650px;
}

.blog-article-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 7px 18px;
  border: 1px solid rgba(3, 104, 62, 0.12);
  border-radius: 999px;
  background: rgba(69, 162, 103, 0.12);
  color: var(--green-deep);
}

.blog-article-kicker strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.blog-article-kicker strong span {
  margin: 0 7px;
  color: rgba(3, 104, 62, 0.52);
}

.blog-article-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #145f3b;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.blog-article-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(1, 48, 36, 0.84);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: rgba(1, 48, 36, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-article-meta svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.blog-author-avatar {
  display: grid !important;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(1, 48, 36, 0.14);
  color: #ffffff;
}

.blog-author-avatar svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  fill: rgba(255, 255, 255, 0.55);
  stroke: rgba(255, 255, 255, 0.8);
}

.blog-meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(1, 48, 36, 0.28);
}

.blog-article-hero-media {
  position: relative;
  width: min(700px, 100%);
  height: 350px;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.blog-article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Blog Category Hero */
.blog-category-page .blog-article-hero-copy {
  max-width: 680px;
}

.blog-category-page .blog-article-hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
}

.blog-category-kicker {
  gap: 8px;
  min-width: 148px;
  min-height: 28px;
  padding: 0 12px;
}

.blog-category-kicker > span {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--green-deep);
}

.blog-category-kicker svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.blog-category-kicker strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.blog-category-page .blog-article-hero h1 {
  max-width: 680px;
  color: #101a2a;
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.12;
}

.blog-category-page .blog-article-hero h1 span {
  display: block;
  color: var(--green-deep);
}

.blog-category-page .blog-article-hero p {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(1, 48, 36, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.blog-category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.blog-category-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.blog-category-button-primary {
  color: #ffffff;
  background: var(--green-deep);
  box-shadow: 0 12px 26px rgba(3, 104, 62, 0.18);
}

.blog-category-button-secondary {
  border: 1px solid rgba(3, 104, 62, 0.28);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.46);
}

.blog-category-button:hover {
  transform: translateY(-2px);
}

.blog-category-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.blog-category-features div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
}

.blog-category-features span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(69, 162, 103, 0.13);
  color: var(--green-deep);
}

.blog-category-features svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.blog-category-features strong {
  color: #132224;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.blog-category-page .blog-category-features p {
  max-width: none;
  margin: 3px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
}

/* Blog Category Listing */
.blog-category-section {
  padding: 58px 24px 90px;
  background: #ffffff;
}

.blog-category-container {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.blog-category-menu {
  position: sticky;
  top: 118px;
  padding: 30px 28px 32px;
  border: 1px solid rgba(1, 48, 36, 0.1);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(1, 48, 36, 0.06);
}

.blog-category-menu h2 {
  margin: 0 0 24px;
  color: #101a2a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.blog-category-menu nav {
  display: grid;
}

.blog-category-menu a {
  color: #152234;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  text-decoration: none;
}

.blog-category-menu nav > a,
.blog-menu-parent {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(1, 48, 36, 0.08);
}

.blog-category-menu nav > a:hover,
.blog-menu-parent:hover,
.blog-menu-children a:hover {
  color: var(--green-deep);
}

.blog-menu-group {
  display: grid;
}

.blog-menu-children {
  display: grid;
  gap: 0;
  margin: 0 0 12px 2px;
  padding: 0 0 0 16px;
  border-left: 2px solid rgba(1, 48, 36, 0.1);
}

.blog-menu-children a {
  display: block;
  padding: 10px 0;
  color: rgba(21, 34, 52, 0.62);
  font-size: 12px;
  font-weight: 750;
}

.blog-listing h2 {
  margin: 4px 0 28px;
  color: #101a2a;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.blog-post-card {
  overflow: hidden;
  border: 1px solid rgba(1, 48, 36, 0.12);
  border-radius: 10px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(69, 162, 103, 0.3);
  box-shadow: 0 18px 45px rgba(1, 48, 36, 0.1);
}

.blog-post-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-post-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-card div {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px 24px 22px;
}

.blog-post-card span {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.blog-post-card h3 {
  margin: 0 0 12px;
  color: #101a2a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.blog-post-card p {
  margin: 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.blog-post-card time {
  display: block;
  margin-top: 18px;
  color: rgba(21, 34, 52, 0.46);
  font-size: 12px;
  font-weight: 700;
}

/* Blog Article Content */
.blog-article-content-section {
  padding: 0 24px 76px;
  background: #ffffff;
}

.blog-article-content-container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 28px 32px 42px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-top: 0;
  border-radius: 0;
  background: #ffffff;
}

.blog-learn-strip {
  margin: 0 0 42px;
  padding: 20px 24px 22px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 10px;
  background: #f7fbf8;
  box-shadow: 0 12px 30px rgba(1, 48, 36, 0.04);
}

.blog-learn-strip h2 {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.blog-learn-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.blog-learn-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border-right: 1px solid rgba(1, 48, 36, 0.1);
  color: rgba(1, 48, 36, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-learn-grid span:last-child {
  border-right: 0;
}

.blog-learn-grid img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

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

.blog-article-body {
  color: #173d31;
}

.blog-article-body section {
  scroll-margin-top: 112px;
}

.blog-article-body section + section {
  margin-top: 28px;
}

.blog-article-body h2 {
  margin: 0 0 12px;
  color: #102a22;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.blog-article-body p {
  margin: 0;
  color: rgba(1, 48, 36, 0.84);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
}

.blog-article-body ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(1, 48, 36, 0.84);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.blog-article-body li::marker {
  color: var(--sea-green);
}

.blog-plan-card {
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(1, 48, 36, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
}

.blog-plan-card h3 {
  margin: 0 0 16px;
  color: #173d31;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.blog-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.blog-plan-grid span {
  color: rgba(1, 48, 36, 0.72);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-plan-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sea-green);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.blog-article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
}

.blog-tip-card,
.blog-toc-card,
.blog-tags-card {
  border: 1px solid rgba(1, 48, 36, 0.1);
  border-radius: 10px;
  background: #f7fbf8;
  box-shadow: 0 10px 24px rgba(1, 48, 36, 0.04);
}

.blog-tip-card {
  min-height: 250px;
  padding: 24px 22px 20px;
}

.blog-tip-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--green-deep);
}

.blog-tip-heading svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke-width: 2.1;
}

.blog-tip-heading strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.blog-tip-card p {
  margin: 0;
  color: rgba(1, 48, 36, 0.84);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75;
}

.blog-tip-card img {
  display: block;
  width: 40px;
  height: auto;
  margin-top: 22px;
}

.blog-toc-card,
.blog-tags-card {
  padding: 22px 22px 20px;
}

.blog-toc-card h2,
.blog-tags-card h2 {
  margin: 0 0 18px;
  color: #173d31;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.blog-toc-card a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.blog-toc-card a:hover {
  color: var(--sea-green);
}

.blog-toc-card span {
  color: var(--sea-green);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(69, 162, 103, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.blog-tags a:hover {
  border-color: rgba(69, 162, 103, 0.38);
  background: #ffffff;
  color: var(--sea-green);
}

.program-fit-section .program-info-copy {
  display: block;
  padding: 28px 34px 18px;
}

.program-fit-section .program-info-copy p {
  max-width: none;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.program-fit-section .program-persona-panel {
  overflow: hidden;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.program-fit-section .program-persona-grid {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.program-persona-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.program-persona-grid::before {
  display: none;
}

.program-persona-line {
  position: absolute;
  top: 51px;
  left: 8%;
  z-index: 0;
  width: 84%;
  height: 2px;
  pointer-events: none;
}

.program-persona-line path {
  fill: none;
  stroke: rgba(69, 162, 103, 0.34);
  stroke-linecap: round;
  stroke-width: 2;
}

.program-persona-card {
  z-index: 1;
}

.program-persona-card span {
  z-index: 3;
}

.program-persona-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 162px;
  padding: 66px 22px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-persona-card + .program-persona-card {
  border-left: 1px solid rgba(46, 77, 69, 0.22);
}

.program-persona-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.program-persona-card span {
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  background: #06182d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.program-persona-card:nth-child(even) span {
  background: var(--green-deep);
}

.program-persona-card:nth-child(3n) span {
  background: #06182d;
}

.program-persona-card h3 {
  margin: 0;
  color: #101a2a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.program-fit-summary {
  display: grid;
  gap: 14px;
  padding: 24px 34px 30px;
  border-top: 1px solid rgba(46, 77, 69, 0.1);
}

.program-fit-summary p {
  max-width: 980px;
  margin: 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.content-container {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.content-container h1 {
  margin: 0 0 28px;
  color: #101a2a;
  font-size: 30px;
  font-weight: 800;
}

.placeholder-box {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 32px;
  border: 2px dashed rgba(3, 104, 62, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.placeholder-box p {
  margin: 0;
  color: rgba(1, 48, 36, 0.68);
  font-size: 18px;
  font-weight: 600;
}

.program-detail-hero {
  position: relative;
  padding: 10px 24px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
}

.program-detail-hero::before {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 120px;
  height: 160px;
  display: none;
  opacity: 0.38;
  background-image: radial-gradient(var(--sea-green) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  content: "";
}

.program-detail-hero-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 28px;
  width: min(1220px, 100%);
  min-height: 500px;
  margin: 0 auto;
}

.program-detail-copy {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 36px 0 34px;
}

.program-detail-copy h1 {
  margin: 0;
  color: #101a2a;
  font-size: clamp(30px, 3.05vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.program-detail-copy h1 span {
  display: block;
  color: var(--green-deep);
}

.program-detail-copy > p {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.program-detail-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.program-detail-features div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.program-detail-features i,
.program-detail-features div > svg {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(69, 162, 103, 0.12);
  color: var(--green-deep);
  box-sizing: border-box;
}

.program-detail-features svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.2;
}

.program-detail-features span {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: rgba(1, 48, 36, 0.68);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.program-detail-features strong {
  color: #132224;
  font-size: 12px;
  font-weight: 800;
}

.program-detail-visual {
  position: relative;
  align-self: stretch;
  min-height: 500px;
}

.program-detail-visual::before {
  position: absolute;
  right: -36px;
  bottom: 28px;
  width: 500px;
  height: 382px;
  display: none;
  border-radius: 48% 52% 46% 54%;
  background: transparent;
  content: "";
}

.program-detail-visual::after {
  position: absolute;
  right: 60px;
  bottom: 66px;
  width: 310px;
  height: 258px;
  display: none;
  border: 0;
  border-radius: 50%;
  content: "";
}

.program-detail-visual img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(720px, 104%);
  max-width: none;
  height: auto;
}

.university-detail-hero .program-detail-visual img {
  bottom: 40px;
}

.ap-detail-hero .program-detail-visual img {
  bottom: 30px;
}

.ib-detail-hero .program-detail-visual img {
  bottom: 30px;
}

.sat-detail-hero .program-detail-visual img {
  bottom: 30px;
}

.abroad-consulting-detail-hero .program-detail-visual img {
  bottom: 30px;
}

.program-detail-card {
  position: absolute;
  left: -10px;
  z-index: 4;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 250px;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(1, 48, 36, 0.12);
  backdrop-filter: blur(14px);
}

.program-detail-card-top {
  top: 72px;
}

.program-detail-card-bottom {
  top: 214px;
  left: 10px;
}

.program-detail-card-third {
  top: 356px;
  left: -6px;
}

.program-detail-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
}

.program-detail-card-bottom > span {
  background: var(--yellow);
  color: var(--green-deep);
}

.program-detail-card-third > span {
  background: var(--sea-green);
}

.program-detail-card svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.3;
}

.program-detail-card strong {
  display: block;
  margin-bottom: 6px;
  color: #132224;
  font-size: 13px;
  font-weight: 800;
}

.program-detail-card p {
  margin: 0;
  color: rgba(1, 48, 36, 0.7);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.programs-hero .program-detail-card {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  width: 224px;
  min-height: 82px;
  padding: 12px 14px;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(1, 48, 36, 0.1);
  backdrop-filter: blur(18px);
}

.programs-hero .program-detail-card-top {
  top: 54px;
  right: 18px;
  left: auto;
}

.programs-hero .program-detail-card-bottom {
  top: auto;
  right: 34px;
  bottom: 18px;
  left: auto;
}

.programs-hero .program-detail-card-third {
  top: 86px;
  bottom: auto;
  left: 18px;
}

.programs-hero .program-detail-card > span {
  width: 42px;
  height: 42px;
}

.programs-hero .program-detail-card strong {
  font-size: 12px;
}

.programs-hero .program-detail-card p {
  font-size: 10.5px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .blog-article-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .blog-article-hero-media {
    justify-self: start;
    width: min(700px, 100%);
  }

  .blog-category-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-category-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .blog-category-menu {
    position: static;
  }

  .blog-learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .blog-learn-grid span {
    border-right: 0;
    border-top: 1px solid rgba(1, 48, 36, 0.08);
  }

  .blog-learn-grid span:nth-child(-n + 2) {
    border-top: 0;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .blog-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-detail-hero-container {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .program-info-split {
    grid-template-columns: 1fr;
  }

  .program-fit-section .program-info-copy {
    padding: 24px 28px 14px;
  }

  .program-fit-summary {
    padding: 22px 28px 26px;
  }

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

  .program-offering-card {
    min-height: 280px;
    padding: 20px 22px;
  }

  .program-persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 14px;
  }

  .program-persona-grid::before {
    display: none;
  }

  .program-persona-line {
    display: none;
  }

  .program-persona-card:nth-child(odd) {
    border-left: 0;
  }

  .program-persona-card:nth-child(n + 3) {
    border-top: 1px solid rgba(46, 77, 69, 0.22);
  }

  .program-persona-card {
    min-height: 150px;
    padding: 60px 20px 18px;
  }

  .program-persona-card span {
    top: 30px;
  }

  .program-detail-copy {
    max-width: none;
    padding: 34px 0 0;
  }

  .program-detail-copy h1,
  .program-detail-copy > p {
    max-width: 760px;
  }

  .program-detail-visual {
    min-height: 390px;
  }

  .program-detail-visual img {
    right: 0;
    width: min(650px, 100%);
  }

  .program-detail-card-top {
    top: 26px;
    left: 28px;
  }

  .program-detail-card-bottom {
    top: 148px;
    left: 48px;
  }

  .program-detail-card-third {
    top: 270px;
    left: 28px;
  }
}

@media (max-width: 640px) {
  .blog-article-hero {
    padding: 14px 16px 18px;
  }

  .blog-article-hero-inner {
    gap: 20px;
  }

  .blog-article-kicker {
    margin-bottom: 18px;
  }

  .blog-article-hero h1 {
    font-size: 31px;
  }

  .blog-category-page .blog-article-hero h1 {
    font-size: 29px;
  }

  .blog-article-hero p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .blog-category-page .blog-article-hero p {
    margin-top: 18px;
    font-size: 15px;
  }

  .blog-category-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .blog-category-button {
    width: 100%;
    min-height: 50px;
  }

  .blog-category-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .blog-category-section {
    padding: 38px 16px 64px;
  }

  .blog-category-menu {
    padding: 24px 22px 26px;
  }

  .blog-listing h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-post-card div {
    min-height: 0;
    padding: 22px 20px;
  }

  .blog-article-meta {
    gap: 8px;
    font-size: 12px;
  }

  .blog-article-hero-media {
    height: auto;
    aspect-ratio: 2 / 1;
    border-radius: 18px;
  }

  .blog-article-content-section {
    padding: 0 16px 56px;
  }

  .blog-article-content-container {
    padding: 20px 16px 30px;
    border-radius: 0;
  }

  .blog-learn-strip {
    margin-bottom: 30px;
    padding: 18px 16px;
  }

  .blog-learn-grid {
    grid-template-columns: 1fr;
  }

  .blog-learn-grid span,
  .blog-learn-grid span:nth-child(-n + 2) {
    min-height: 44px;
    padding: 0;
    border-top: 1px solid rgba(1, 48, 36, 0.08);
  }

  .blog-learn-grid span:first-child {
    border-top: 0;
  }

  .blog-article-body h2 {
    font-size: 18px;
  }

  .blog-article-body p,
  .blog-article-body ul {
    font-size: 13px;
  }

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

  .blog-article-sidebar {
    grid-template-columns: 1fr;
  }

  .program-detail-hero {
    padding: 8px 16px 0;
  }

  .program-info-split {
    gap: 26px;
    margin-top: 0;
  }

  .program-info-copy p {
    font-size: 15px;
    line-height: 1.78;
  }

  .program-fit-section .program-info-copy {
    padding: 20px 22px 12px;
  }

  .program-fit-summary {
    gap: 12px;
    padding: 20px 22px 24px;
  }

  .program-fit-summary p {
    font-size: 14px;
    line-height: 1.75;
  }

  .program-offerings-section {
    padding-top: 28px;
  }

  .program-offerings-heading {
    margin-bottom: 20px;
  }

  .program-offerings-heading p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
  }

  .program-offerings-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .program-offering-card {
    min-height: auto;
    padding: 20px;
    border-radius: 14px;
  }

  .program-offering-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .program-offering-card:first-child .program-offering-icon {
    width: 60px;
    height: 60px;
  }

  .program-offering-card:first-child .program-offering-icon svg {
    width: 28px;
    height: 28px;
  }

  .program-offering-header {
    gap: 14px;
    min-height: 62px;
    margin-bottom: 12px;
  }

  .program-offering-header .program-offering-icon {
    flex-basis: 52px;
    margin-bottom: 0;
  }

  .program-offering-card:first-child .program-offering-header .program-offering-icon {
    flex-basis: 60px;
  }

  .program-offering-card h3 {
    font-size: 19px;
  }

  .program-offering-card > p:not(.program-offering-kicker) {
    font-size: 14px;
  }

  .program-emphasis-card {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    white-space: normal;
  }

  .program-info-visual {
    height: 250px;
  }

  .program-info-visual img {
    width: 100%;
  }

  .program-persona-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  .program-persona-grid::before {
    display: none;
  }

  .program-persona-line {
    display: none;
  }

  .program-persona-card {
    min-height: 124px;
    padding: 56px 20px 16px;
  }

  .program-persona-card,
  .program-persona-card + .program-persona-card,
  .program-persona-card:nth-child(odd),
  .program-persona-card:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(46, 77, 69, 0.22);
  }

  .program-persona-card:first-child {
    border-top: 0;
  }

  .program-persona-card span {
    top: 20px;
  }

  .program-persona-card h3 {
    font-size: 15px;
  }

  .program-detail-hero::before {
    right: -28px;
    width: 96px;
  }

  .program-detail-copy {
    padding-top: 24px;
  }

  .program-detail-copy h1 {
    font-size: 30px;
  }

  .program-detail-copy > p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.75;
  }

  .program-detail-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    margin-top: 30px;
  }

  .program-detail-features div {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .program-detail-features i,
  .program-detail-features div > svg {
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 10px;
  }

  .program-detail-features svg {
    width: 34px;
    height: 34px;
  }

  .program-detail-features strong {
    font-size: 12px;
  }

  .program-detail-visual {
    min-height: 245px;
  }

  .program-detail-visual::before {
    right: -72px;
    bottom: 16px;
    width: 320px;
    height: 220px;
  }

  .program-detail-visual::after {
    right: -8px;
    bottom: 36px;
    width: 168px;
    height: 148px;
    border-width: 18px;
  }

  .program-detail-visual img {
    right: 0;
    width: 100%;
  }

  .program-detail-card {
    display: none;
  }

}

.legal-section {
  padding-top: 58px;
  padding-bottom: 0;
}

.legal-container {
  width: min(1220px, calc(100% - 48px));
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
  min-height: 176px;
  margin-bottom: 34px;
  padding: 28px 44px;
  border: 1px solid rgba(3, 104, 62, 0.18);
  border-radius: 8px;
  background: linear-gradient(115deg, rgba(247, 252, 249, 0.95) 0%, rgba(237, 247, 241, 0.88) 62%, rgba(255, 248, 232, 0.72) 100%), radial-gradient(circle at 8% 35%, rgba(69, 162, 103, 0.18), transparent 28%);
}

.legal-hero-copy {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.legal-hero-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--green-deep), #009861);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(3, 104, 62, 0.18);
}

.legal-hero-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.8;
}

.legal-hero h2 {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 22px;
  font-weight: 700;
}

.legal-hero p {
  max-width: 640px;
  margin: 0;
  color: #101a2a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.legal-hero-actions {
  display: grid;
  gap: 18px;
  padding-left: 44px;
  border-left: 1px solid rgba(1, 48, 36, 0.14);
}

.legal-date {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.legal-date svg,
.legal-download svg,
.legal-contact-card a svg {
  width: 18px;
  height: 18px;
  color: var(--green-deep);
  stroke-width: 2.4;
}

.legal-date span {
  display: block;
  margin-bottom: 4px;
  color: rgba(1, 48, 36, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.legal-date strong {
  color: #101a2a;
  font-size: 13px;
  font-weight: 700;
}

.legal-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(1, 48, 36, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(1, 48, 36, 0.07);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

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

.legal-toc {
  position: sticky;
  top: 124px;
  padding: 28px 26px;
  border: 1px solid rgba(1, 48, 36, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(1, 48, 36, 0.05);
}

.legal-toc h2 {
  margin: 0 0 22px;
  color: #101a2a;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 5px;
}

.legal-toc a {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 42px;
  padding: 9px 0;
  color: #101a2a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 160ms ease;
}

.legal-toc a.is-active {
  color: var(--green-deep);
}

.legal-toc a.is-active::before {
  position: absolute;
  left: -26px;
  width: 3px;
  height: 42px;
  border-radius: 99px;
  background: var(--sea-green);
  content: "";
}

.legal-toc span {
  color: var(--green-deep);
  font-weight: 600;
}

.legal-toc a:hover {
  color: var(--green-deep);
}

.legal-content {
  min-width: 0;
}

.legal-content section,
.legal-intro {
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(1, 48, 36, 0.16);
  scroll-margin-top: 130px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2,
.legal-intro h2 {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.legal-content h3 {
  margin: 0 0 8px;
  color: #101a2a;
  font-size: 14px;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: #101a2a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.legal-grid-list > div,
.legal-info-box {
  padding: 18px 20px;
  border: 1px solid rgba(1, 48, 36, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.legal-info-box {
  margin: 14px 0;
}

.legal-info-box p:last-child,
.legal-grid-list ul {
  margin-bottom: 0;
}

.legal-content mark {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(250, 181, 44, 0.38);
  color: #101a2a;
}

.legal-contact-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(960px, 100%);
  margin: 34px auto 0;
  padding: 24px 36px;
  border: 1px solid rgba(250, 181, 44, 0.34);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(115deg, rgba(255, 248, 232, 0.92), rgba(255, 255, 255, 0.86));
}

.legal-bubbles {
  position: relative;
  width: 96px;
  height: 78px;
}

.legal-bubbles span {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.legal-bubbles span:first-child {
  inset: 0 auto auto 0;
  width: 78px;
  height: 78px;
  background: var(--green-deep);
}

.legal-bubbles span:first-child::after {
  position: absolute;
  top: 32px;
  left: 22px;
  color: var(--white);
  content: "...";
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 0;
}

.legal-bubbles span:last-child {
  right: 0;
  bottom: 6px;
  width: 42px;
  height: 42px;
  background: var(--lime);
}

.legal-contact-card h2 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 20px;
  font-weight: 700;
}

.legal-contact-card p {
  max-width: 540px;
  margin: 0;
  color: #101a2a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.legal-contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green-deep), var(--sea-green));
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(3, 104, 62, 0.22);
}

.legal-contact-card a svg {
  color: currentColor;
}

@media (max-width: 980px) {
  .legal-hero,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero-actions {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(1, 48, 36, 0.14);
    padding-top: 22px;
  }

  .legal-toc {
    position: static;
  }

  .legal-contact-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .legal-contact-card a {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .legal-section {
    padding: 42px 0 0;
  }

  .legal-container {
    width: calc(100% - 28px);
  }

  .legal-hero {
    padding: 22px;
  }

  .legal-hero-copy,
  .legal-grid-list,
  .legal-contact-card {
    grid-template-columns: 1fr;
  }

  .legal-hero-copy {
    gap: 18px;
  }

  .legal-hero-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
  }

  .legal-hero-icon svg {
    width: 42px;
    height: 42px;
  }

  .legal-layout {
    gap: 34px;
  }

  .legal-content h2,
  .legal-intro h2 {
    font-size: 20px;
  }

  .legal-contact-card {
    gap: 18px;
    padding: 22px;
  }

  .legal-contact-card a {
    grid-column: 1;
    width: 100%;
  }
}

.privacy-hero .legal-hero-copy {
  grid-template-columns: 210px minmax(0, 1fr);
}

.privacy-hero-image {
  display: block;
  width: 190px;
  height: 132px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(3, 104, 62, 0.12);
}

.privacy-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .privacy-hero .legal-hero-copy {
    grid-template-columns: 1fr;
  }

  .privacy-hero-image {
    width: 168px;
    height: 116px;
    border-radius: 16px;
  }
}

.terms-hero .legal-hero-copy {
  grid-template-columns: 210px minmax(0, 1fr);
}

.terms-hero-image {
  display: block;
  width: 190px;
  height: 132px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(3, 104, 62, 0.12);
}

.terms-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-note {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(250, 181, 44, 0.3);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(255, 248, 232, 0.9), rgba(255, 255, 255, 0.78));
  color: #101a2a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.legal-note-green {
  border-color: rgba(69, 162, 103, 0.22);
  background: linear-gradient(100deg, rgba(239, 249, 242, 0.94), rgba(255, 255, 255, 0.78));
}

.legal-note svg {
  width: 22px;
  height: 22px;
  color: #d99200;
  stroke-width: 2.3;
}

.legal-note-green svg {
  color: var(--green-deep);
}

@media (max-width: 640px) {
  .terms-hero .legal-hero-copy {
    grid-template-columns: 1fr;
  }

  .terms-hero-image {
    width: 168px;
    height: 116px;
    border-radius: 16px;
  }

  .legal-note {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 16px;
  }
}

.faq-hero-icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(3, 104, 62, 0.96), rgba(69, 162, 103, 0.92));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(3, 104, 62, 0.16);
}

.faq-hero-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.8;
}

.faq-contact-button {
  text-decoration: none;
}

.faq-page-content .legal-intro {
  margin-bottom: 18px;
}

.faq-category {
  scroll-margin-top: 130px;
}

.faq-category h2 {
  margin-bottom: 18px;
}

.faq-page-list {
  display: grid;
  gap: 10px;
}

.faq-page-list .faq-item {
  border-color: rgba(1, 48, 36, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-page-list .faq-item button {
  min-height: 58px;
  padding: 0 20px;
  color: #101a2a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-page-list .faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgba(1, 48, 36, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

@media (max-width: 640px) {
  .faq-hero-icon {
    width: 78px;
    height: 78px;
    border-radius: 20px;
  }

  .faq-hero-icon svg {
    width: 42px;
    height: 42px;
  }

  .faq-page-list .faq-item button {
    min-height: 52px;
    padding: 0 16px;
    font-size: 13px;
  }

  .faq-page-list .faq-item p {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}
.faq-text-item {
  padding: 18px 20px 20px;
  border: 1px solid rgba(1, 48, 36, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-text-item h3 {
  margin: 0 0 10px;
  color: #101a2a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-text-item p {
  margin: 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

@media (max-width: 640px) {
  .faq-text-item {
    padding: 16px;
  }

  .faq-text-item h3 {
    font-size: 14px;
  }

.faq-text-item p {
    font-size: 13px;
  }
}

.about-page {
  background: #ffffff;
}

.about-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.about-page-title {
  padding: 38px 0 8px;
}

.about-page-title h1 {
  margin: 0;
  color: #101a2a;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.about-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(69, 162, 103, 0.24);
  border-radius: 999px;
  background: rgba(69, 162, 103, 0.08);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
}

.about-section-title {
  position: relative;
  display: inline-block;
  scroll-margin-top: 150px;
  margin: 0;
  color: #101a2a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.about-section-title::after {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--green-deep);
  content: "";
}

.about-hero {
  min-height: 280px;
  padding: 0 24px 10px;
  overflow: hidden;
  background: #fffdf8;
}

.about-hero .hero-container {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  min-height: 280px;
}

.about-hero .hero-copy {
  padding: 0;
}

.about-hero .hero-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.about-hero .hero-copy h2 span {
  display: block;
  color: var(--green-deep);
}

.about-hero .hero-copy > p {
  max-width: 620px;
  margin-top: 16px;
  line-height: 1.7;
}

.about-hero .hero-actions {
  margin-top: 20px;
}

.about-hero .hero-visual {
  min-height: 280px;
}

.about-hero .hero-visual img {
  right: -26px;
  top: 18px;
  bottom: auto;
  width: min(620px, 102%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 0.45fr);
  gap: 32px;
  align-items: center;
  min-height: 570px;
}

.about-hero-copy h1 {
  margin: 22px 0 0;
  color: #101a2a;
  font-size: clamp(46px, 5.1vw, 68px);
  font-weight: 700;
  line-height: 1.04;
}

.about-hero-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-hero-art {
  position: relative;
  min-height: 540px;
}

.about-photo-card {
  position: absolute;
  inset: 34px 0 0 26px;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 10px solid #ffffff;
  border-radius: 32px;
  background: #f4e0ce;
  box-shadow: 0 28px 70px rgba(1, 48, 36, 0.16);
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-doodle {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-deep);
  box-shadow: 0 14px 34px rgba(1, 48, 36, 0.1);
}

.about-doodle svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.doodle-compass {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}

.doodle-book {
  right: -22px;
  top: 90px;
  color: #d99200;
  transform: rotate(10deg);
}

.doodle-cap {
  right: 44px;
  bottom: 0;
  transform: rotate(-6deg);
}

.about-path-doodle {
  position: absolute;
  right: -32px;
  bottom: 56px;
  z-index: 1;
  width: 230px;
  height: 118px;
}

.about-path-doodle path,
.model-line path {
  fill: none;
  stroke: rgba(3, 104, 62, 0.34);
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  stroke-width: 5;
}

.about-why,
.about-moments {
  padding: 140px 0;
}

.about-why {
  padding: 44px 0;
}

.about-story {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 52px 0 72px;
  background: linear-gradient(180deg, #f1f3f2 0%, #f6f7f6 100%);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.45fr) minmax(0, 0.55fr);
  gap: 72px;
  align-items: center;
}

.about-story-title {
  margin-bottom: 0;
}

.about-story-subtitle {
  margin-top: 18px;
  margin-bottom: 34px;
}

.about-story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 58px rgba(1, 48, 36, 0.12);
}

.about-story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section-subtitle {
  scroll-margin-top: 150px;
  margin: 18px 0 0;
  color: var(--green-deep);
  font-size: clamp(24px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.22;
}

.moments-heading h2 {
  scroll-margin-top: 150px;
  margin: 18px 0 0;
  color: #101a2a;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
}

.about-story-copy p {
  margin: 16px 0 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

.about-model {
  padding: 54px 0;
  overflow: hidden;
  background: #fffbf5;
}

.about-section-head {
  max-width: 760px;
  margin: 0 0 74px;
  text-align: left;
}

.about-model .about-section-head {
  max-width: 1040px;
  margin-bottom: 20px;
}

.model-intro,
.why-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.about-model .model-intro {
  max-width: 940px;
}

.model-intro-wide {
  max-width: 1040px;
}

.model-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-height: 236px;
  padding-top: 28px;
}

.model-line {
  position: absolute;
  top: 0;
  left: 2%;
  z-index: 1;
  width: 96%;
  height: 180px;
  pointer-events: none;
}

.model-line path {
  marker-end: url("#modelPathArrow");
  filter: drop-shadow(0 0 8px rgba(24, 196, 92, 0.28));
  stroke: #18c45c;
  stroke-width: 5.2;
}

.model-line marker path {
  fill: #18c45c;
  stroke: none;
}

.model-line-start {
  fill: #18c45c;
  filter: drop-shadow(0 0 8px rgba(24, 196, 92, 0.32));
  stroke: #ffffff;
  stroke-width: 3;
}

.model-stop {
  position: relative;
  z-index: 2;
  min-height: 178px;
  padding: 22px 20px 20px;
  border: 1px solid #f1f3f5;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.07);
  backdrop-filter: blur(3px);
}

.model-stop:nth-of-type(2),
.model-stop:nth-of-type(4) {
  margin-top: 28px;
}

.model-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: #fffdf8;
  color: var(--green-deep);
  box-shadow: inset 0 0 0 1px rgba(1, 48, 36, 0.07);
}

.model-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}

.model-stop h3,
.why-grid h3 {
  margin: 0;
  color: #101a2a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
}

.model-stop p,
.why-grid p {
  margin: 14px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.model-closing {
  max-width: 820px;
  margin: 48px auto 0;
  text-align: center;
}

.model-closing h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}

.model-closing p {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.founder-note {
  padding: 72px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(69, 162, 103, 0.12), transparent 30%),
    linear-gradient(180deg, #fff1d6 0%, #fff7e6 100%);
  text-align: left;
}

.founder-inner {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: 72px;
  align-items: center;
}

.founder-copy {
  position: relative;
  z-index: 1;
}

.founder-quote-mark {
  position: absolute;
  top: -78px;
  left: -8px;
  z-index: -1;
  color: rgba(3, 104, 62, 0.13);
  font-family: Georgia, serif;
  font-size: 190px;
  font-weight: 700;
  line-height: 1;
}

.founder-title {
  margin-bottom: 20px;
}

.founder-heading {
  scroll-margin-top: 150px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.22;
}

.founder-note p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
}

.founder-heading + p {
  margin-top: 22px;
}

.founder-closing {
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 800;
}

.founder-aside {
  position: relative;
  display: grid;
  min-height: 320px;
  align-items: end;
}

.founder-path {
  position: absolute;
  inset: 10px 0 auto;
  width: 100%;
  height: 210px;
  pointer-events: none;
}

.founder-path path {
  fill: none;
  marker-end: url("#founderPathArrow");
  stroke: rgba(3, 104, 62, 0.34);
  stroke-dasharray: 9 11;
  stroke-linecap: round;
  stroke-width: 4;
}

.founder-path marker path {
  fill: rgba(3, 104, 62, 0.66);
  stroke: none;
}

.founder-path-start {
  fill: rgba(3, 104, 62, 0.66);
  filter: drop-shadow(0 0 7px rgba(3, 104, 62, 0.22));
  stroke: #fff7e6;
  stroke-width: 3;
}

.founder-handwrite {
  position: absolute;
  top: 74px;
  right: 20px;
  max-width: 290px;
  margin: 0;
  color: rgba(1, 48, 36, 0.66);
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.founder-profile {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  width: min(420px, 100%);
  margin: 0 0 0 auto;
  padding: 18px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 50px rgba(1, 48, 36, 0.12);
  text-align: left;
  backdrop-filter: blur(10px);
}

.founder-profile img {
  width: 112px;
  height: 112px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(1, 48, 36, 0.14);
}

.founder-profile strong,
.founder-profile span {
  display: block;
}

.founder-profile strong {
  color: #101a2a;
  font-size: 17px;
  font-weight: 800;
}

.founder-profile span {
  margin-top: 4px;
  color: rgba(1, 48, 36, 0.64);
  font-size: 14px;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
}

.why-grid article {
  position: relative;
  min-height: 150px;
  padding: 0 28px;
  text-align: center;
}

.why-grid article + article {
  border-left: 1px solid rgba(1, 48, 36, 0.1);
}

.why-grid article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--green-deep);
}

.why-grid article > span svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.9;
}

.why-grid h3 {
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.why-grid p {
  max-width: 150px;
  margin: 8px auto 0;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.about-moments {
  background: #fbfcfb;
}

.moments-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.moments-heading h2 {
  margin: 0;
}

.moments-heading a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 24px;
}

.moment-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe4e2;
  box-shadow: 0 18px 44px rgba(1, 48, 36, 0.1);
}

.moment-card.tall {
  grid-row: span 2;
}

.moment-card.wide {
  grid-column: span 2;
}

.moment-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.moment-card:hover img {
  transform: scale(1.06);
}

.moment-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 48, 36, 0.02) 35%, rgba(1, 48, 36, 0.58) 100%);
  content: "";
}

.moment-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.about-cta {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 54px 0;
  background: var(--green-deep);
  color: #ffffff;
  text-align: center;
}

.about-cta h2 {
  scroll-margin-top: 150px;
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
}

.about-cta p {
  max-width: 640px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.about-cta .about-actions {
  justify-content: center;
}

.about-cta-primary,
.about-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
}

.about-cta-primary {
  background: #ffffff;
  color: var(--green-deep);
}

.about-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #ffffff;
}

.contact-page {
  overflow: hidden;
  background: #fffdf8;
}

.contact-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-hero {
  min-height: 280px;
  padding: 0 24px 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
}

.contact-hero .hero-container {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  min-height: 280px;
}

.contact-hero .hero-copy {
  padding: 0;
}

.contact-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.contact-hero-copy > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(1, 48, 36, 0.76);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-hero .hero-visual {
  min-height: 280px;
}

.contact-hero .hero-visual img {
  right: 18px;
  top: 8px;
  bottom: auto;
  width: min(590px, 96%);
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-primary,
.contact-secondary,
.contact-card a,
.social-card a,
.contact-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-primary {
  padding: 0 24px;
  background: var(--yellow);
  color: var(--green-deep);
  box-shadow: 0 16px 30px rgba(250, 181, 44, 0.28);
}

.contact-secondary {
  padding: 0 22px;
  border: 1px solid rgba(1, 48, 36, 0.14);
  background: #ffffff;
  color: var(--green-deep);
}

.contact-primary:hover,
.contact-secondary:hover,
.contact-card:hover,
.social-card:hover,
.contact-final-button:hover {
  transform: translateY(-6px);
}

.contact-primary svg,
.contact-secondary svg,
.contact-final-button svg {
  width: 18px;
  height: 18px;
}

.contact-hero-art {
  position: relative;
  align-self: stretch;
  min-height: 320px;
}

.contact-art-orb {
  position: absolute;
  border-radius: 50%;
  background: #fff1d6;
}

.contact-art-orb-one {
  top: 18px;
  right: 38px;
  width: 210px;
  height: 210px;
}

.contact-art-orb-two {
  right: 235px;
  bottom: 20px;
  width: 112px;
  height: 112px;
  background: rgba(69, 162, 103, 0.12);
}

.contact-art-path {
  position: absolute;
  inset: 30px 10px auto;
  width: calc(100% - 20px);
  height: 250px;
}

.contact-art-path path {
  fill: none;
  stroke: rgba(3, 104, 62, 0.28);
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  stroke-width: 4;
}

.contact-art-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(1, 48, 36, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(1, 48, 36, 0.14);
  backdrop-filter: blur(14px);
}

.contact-art-card-main {
  right: 0;
  bottom: 24px;
  width: min(430px, 88%);
  padding: 34px;
}

.contact-art-card-main > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--green-deep);
  color: #ffffff;
}

.contact-art-card-main strong {
  display: block;
  color: #101a2a;
  font-size: 27px;
  font-weight: 800;
}

.contact-art-card-main p {
  margin: 14px 0 0;
  color: rgba(1, 48, 36, 0.74);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.contact-art-card-small {
  top: 18px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--green-deep);
  font-weight: 800;
}

.contact-art-card-small svg {
  width: 30px;
  height: 30px;
  color: #d8a028;
}

.contact-art-note {
  position: absolute;
  right: 260px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(250, 181, 44, 0.28);
}

.contact-cards-section,
.contact-office-section {
  padding: 58px 0;
  background: #ffffff;
}

.contact-cards-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  background: linear-gradient(180deg, #f1f3f2 0%, #f6f7f6 100%);
}

.contact-section-title {
  position: relative;
  display: inline-block;
  scroll-margin-top: 150px;
  margin: 0;
  color: #101a2a;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-section-title::after {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--sea-green);
  content: "";
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 16px 42px rgba(1, 48, 36, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 5px;
  border-radius: 0 0 999px 0;
  background: var(--sea-green);
  content: "";
}

.contact-card:nth-child(1)::before {
  background: var(--yellow);
}

.contact-card:nth-child(2)::before {
  background: #4e8fd8;
}

.contact-card:nth-child(3)::before {
  background: #18c45c;
}

.contact-card:nth-child(4)::before {
  background: #2f8f83;
}

.contact-card:hover {
  box-shadow: 0 24px 56px rgba(1, 48, 36, 0.12);
}

.contact-card-heading {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.contact-card-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--green-deep);
}

.contact-card-icon svg {
  width: 21px;
  height: 21px;
}

.social-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(3, 104, 62, 0.09);
  color: var(--green-deep);
}

.social-card h3,
.contact-office-copy h3 {
  margin: 18px 0 0;
  color: #101a2a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-card h3 {
  min-width: 0;
  margin: 0;
  color: #101a2a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-card p {
  margin: 10px 0 0;
  color: rgba(1, 48, 36, 0.7);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
}

.contact-card strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
}

.contact-card a {
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  background: var(--green-deep);
  color: #ffffff;
  font-size: 13px;
}

.contact-card a:hover,
.social-card a:hover {
  background: #024d2e;
}

.contact-office-section {
  background: #f8f5ed;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(520px, 0.58fr);
  gap: 54px;
  align-items: stretch;
}

.contact-office-copy {
  padding: 40px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-office-copy h3 {
  margin-top: 26px;
  color: var(--green-deep);
  font-size: 30px;
}

.contact-office-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-office-list p {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  color: rgba(1, 48, 36, 0.78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.contact-office-list svg {
  margin-top: 2px;
  color: var(--sea-green);
}

.contact-hours {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(1, 48, 36, 0.12);
}

.contact-hours h4 {
  margin: 0;
  color: #101a2a;
  font-size: 16px;
  font-weight: 800;
}

.contact-hours dl {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.contact-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(1, 48, 36, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.contact-hours dt,
.contact-hours dd {
  margin: 0;
}

.contact-office-note {
  margin: 26px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: #fff9ef;
  color: rgba(1, 48, 36, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(1, 48, 36, 0.16);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 6px;
  background: var(--green-deep);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(1, 48, 36, 0.22);
}

.contact-map-link svg {
  width: 16px;
  height: 16px;
}

.contact-social-section {
  padding: 58px 0;
  background: #fff9ef;
}

.contact-social-head {
  max-width: 760px;
}

.contact-social-head p {
  margin: 18px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.social-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(1, 48, 36, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  box-shadow: 0 28px 62px rgba(1, 48, 36, 0.13);
}

.social-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.social-card .social-card-title {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  gap: 10px;
  color: var(--green-deep);
  font-size: 21px;
  line-height: 1.15;
}

.social-card .social-card-title span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-card .social-card-title .social-card-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.social-card .social-card-title .social-card-icon svg {
  width: 17px;
  height: 17px;
}

.social-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.social-card li,
.social-card p {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: rgba(1, 48, 36, 0.74);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.social-card li::before,
.social-card p::before {
  position: absolute;
  left: 0;
  color: var(--sea-green);
  content: "•";
}

.social-card a {
  width: fit-content;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  background: var(--green-deep);
  color: #ffffff;
  font-size: 13px;
}

.social-card-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 150px;
  margin: 20px 20px 0;
}

.social-card-visual span {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(3, 104, 62, 0.18), rgba(250, 181, 44, 0.28));
}

.social-card-visual span:first-child {
  grid-row: span 2;
  background: url("../assets/video-illustrative.webp") center / cover;
}

.social-card-visual span:nth-child(2) {
  background: url("../assets/camp-illustrative.webp") center / cover;
}

.social-card-visual span:nth-child(3) {
  background: url("../assets/blog-guide.webp") center / cover;
}

.social-video-thumb {
  display: grid;
  place-items: center;
  height: 150px;
  margin: 20px 20px 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(1, 48, 36, 0.42), rgba(3, 104, 62, 0.2)),
    url("../assets/video-illustrative-wide.webp") center / cover;
}

.social-video-thumb span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-deep);
}

.social-chat-bubbles {
  display: grid;
  gap: 14px;
  height: 150px;
  margin: 20px 20px 0;
  padding: 22px 20px 0;
  background: linear-gradient(180deg, rgba(3, 104, 62, 0.08), transparent);
}

.social-chat-bubbles span {
  width: fit-content;
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px 18px 18px 4px;
  background: #ffffff;
  color: rgba(1, 48, 36, 0.78);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(1, 48, 36, 0.08);
}

.social-chat-bubbles span:nth-child(2) {
  justify-self: end;
  border-radius: 18px 18px 4px 18px;
  background: var(--yellow);
  color: var(--green-deep);
}

.social-linkedin-visual {
  height: 150px;
  margin: 20px 20px 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(1, 48, 36, 0.1), rgba(250, 181, 44, 0.12)),
    url("../assets/patika_kariyer.webp") center / cover;
}

.contact-final-cta {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: var(--green-deep);
  color: #ffffff;
  text-align: center;
}

.contact-final-cta::before {
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 420px;
  height: 420px;
  background: url("../assets/footer-submark.svg") center / contain no-repeat;
  opacity: 0.08;
  content: "";
}

.contact-final-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.contact-final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
}

.contact-final-cta p {
  max-width: 660px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-cta-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.contact-cta-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.contact-cta-tags svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.contact-final-button {
  min-height: 56px;
  margin-top: 34px;
  padding: 0 26px;
  background: var(--yellow);
  color: var(--green-deep);
  box-shadow: 0 18px 40px rgba(250, 181, 44, 0.28);
}

.whatsapp-float {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid #18c45c;
  border-radius: 50%;
  background: #ffffff;
  color: #18c45c;
  box-shadow: 0 16px 34px rgba(1, 48, 36, 0.14);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  background: #18c45c;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(24, 196, 92, 0.28);
}

.whatsapp-float svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.scroll-top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--green-deep);
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-deep);
  box-shadow: 0 16px 34px rgba(1, 48, 36, 0.14);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  background: var(--green-deep);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(3, 104, 62, 0.24);
}

.scroll-top-button svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.4;
}

@media (max-width: 980px) {
  .contact-hero {
    padding: 0 24px 28px;
  }

  .contact-office-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
  }

  .contact-hero .hero-container {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-hero .hero-visual {
    min-height: 260px;
  }

  .contact-hero .hero-visual img {
    right: 0;
    top: 8px;
    width: min(520px, 100%);
  }

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

  .contact-office-grid {
    align-items: stretch;
  }

  .contact-map-card {
    min-height: 360px;
  }

  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    min-height: 320px;
  }

  .social-card-visual,
  .social-video-thumb,
  .social-chat-bubbles,
  .social-linkedin-visual {
    height: 100%;
    min-height: 220px;
    margin: 0;
    padding: 20px;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-hero .hero-container {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-hero .hero-visual {
    min-height: 270px;
  }

  .about-hero .hero-visual img {
    right: -18px;
    top: 12px;
    bottom: auto;
    width: min(600px, 100%);
  }

  .model-path,
  .masonry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .why-grid article {
    min-height: 0;
  }

  .why-grid article,
  .why-grid article + article {
    border-left: 0;
  }

  .why-grid article:not(:nth-child(3n + 1)) {
    border-left: 1px solid rgba(1, 48, 36, 0.1);
  }

  .model-path {
    gap: 18px;
    padding-top: 0;
  }

  .model-line {
    display: none;
  }

  .model-stop:nth-of-type(2),
  .model-stop:nth-of-type(4) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .contact-container {
    width: calc(100% - 48px);
  }

  .contact-hero {
    padding: 0 16px 18px;
  }

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

  .contact-hero-copy > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.68;
  }

  .contact-hero-actions,
  .contact-primary,
  .contact-secondary,
  .contact-final-button {
    width: 100%;
  }

  .contact-hero .hero-visual {
    min-height: 190px;
  }

  .contact-hero .hero-visual img {
    right: 0;
    top: 8px;
    bottom: auto;
    width: 340px;
  }

  .contact-cards-section,
  .contact-office-section,
  .contact-social-section {
    padding: 44px 0;
  }

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-card {
    min-height: 224px;
    padding: 20px;
  }

  .contact-card h3,
  .social-card .social-card-title {
    font-size: 19px;
  }

  .contact-card p,
  .contact-card strong {
    font-size: 13px;
  }

  .contact-card p {
    white-space: normal;
  }

  .contact-card a {
    width: 100%;
  }

  .contact-office-copy {
    padding: 24px;
    border-radius: 18px;
  }

  .contact-office-copy h3 {
    font-size: 24px;
  }

  .contact-office-note {
    white-space: normal;
  }

  .contact-hours dl div {
    display: grid;
    gap: 4px;
  }

  .contact-map-card {
    min-height: 260px;
    border-radius: 18px;
  }

  .social-card {
    display: block;
    min-height: 0;
    border-radius: 18px;
  }

  .social-card-visual,
  .social-video-thumb,
  .social-chat-bubbles,
  .social-linkedin-visual {
    height: 150px;
    min-height: 150px;
    margin: 20px 20px 0;
  }

  .social-card-content {
    padding: 24px;
  }

  .contact-final-cta {
    padding: 54px 0;
  }

  .contact-final-cta h2 {
    font-size: 32px;
  }

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

  .contact-cta-tags {
    justify-content: flex-start;
  }

  .contact-cta-tags span {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    left: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .scroll-top-button {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .scroll-top-button svg {
    width: 23px;
    height: 23px;
  }

  .about-container {
    width: calc(100% - 48px);
  }

  .about-page-title {
    padding: 32px 0 6px;
  }

  .about-hero {
    padding: 0 16px 18px;
  }

  .about-hero .hero-copy {
    padding-top: 10px;
  }

  .about-hero .hero-copy h2 {
    font-size: 28px;
  }

  .about-hero .hero-copy > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.68;
  }

  .about-actions,
  .about-cta .about-actions {
    flex-direction: column;
  }

  .about-actions .hero-primary,
  .about-actions .hero-secondary,
  .about-cta-primary,
  .about-cta-secondary {
    width: 100%;
  }

  .about-hero .hero-visual {
    min-height: 170px;
  }

  .about-hero .hero-visual img {
    right: -44px;
    top: 8px;
    bottom: auto;
    width: 360px;
  }

  .founder-heading {
    font-size: 28px;
  }

  .founder-quote-mark {
    top: -58px;
    font-size: 140px;
  }

  .founder-aside {
    min-height: 230px;
  }

  .founder-path {
    height: 170px;
  }

  .founder-handwrite {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
    margin: 0 0 18px;
    font-size: 20px;
    transform: none;
  }

  .founder-profile {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 14px;
    border-radius: 18px;
  }

  .founder-profile img {
    width: 78px;
    height: 78px;
  }

  .about-model,
  .about-why {
    padding: 48px 0;
  }

  .about-model {
    padding: 46px 0;
  }

  .about-why {
    padding: 38px 0;
  }

  .about-story {
    padding: 42px 0 56px;
  }

  .about-split {
    gap: 42px;
  }

  .about-section-subtitle {
    font-size: 24px;
  }

  .moments-heading h2 {
    font-size: 32px;
  }

  .about-section-title {
    font-size: 22px;
  }

  .about-section-head {
    margin-bottom: 38px;
    text-align: left;
  }

  .model-path,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
    row-gap: 0;
  }

  .why-grid article {
    padding: 24px 0;
  }

  .why-grid article:not(:nth-child(3n + 1)),
  .why-grid article + article {
    border-left: 0;
  }

  .why-grid article + article {
    border-top: 1px solid rgba(1, 48, 36, 0.1);
  }

  .model-path {
    position: relative;
    padding-left: 22px;
  }

  .model-path::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    border-left: 3px dashed rgba(3, 104, 62, 0.28);
    content: "";
  }

  .model-stop,
  .why-grid article {
    min-height: 0;
  }

  .founder-note {
    padding: 54px 0;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .founder-note p {
    font-size: 16px;
  }

  .founder-aside {
    min-height: 250px;
  }

  .founder-handwrite {
    top: 42px;
    right: 18px;
    font-size: 21px;
  }

  .founder-profile {
    grid-template-columns: 92px minmax(0, 1fr);
    margin-left: 0;
  }

  .founder-profile img {
    width: 92px;
    height: 92px;
  }

  .moments-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .masonry-grid {
    grid-auto-rows: 220px;
  }

  .moment-card.tall,
  .moment-card.wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .camps-hero {
    padding: 24px 24px 0;
  }

  .camps-hero-container {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
  }

  .camps-hero-copy {
    max-width: 680px;
  }

  .camps-hero h1 {
    max-width: 680px;
    font-size: clamp(28px, 5.6vw, 44px);
  }

  .camps-hero-visual,
  .camps-hero-visual figure {
    min-height: 0;
    height: 360px;
  }

  .camps-model-section,
  .camps-types-section,
  .camps-process-section,
  .camps-info-row-section,
  .camps-final-cta {
    padding: 72px 24px;
  }

  .camps-card-grid-four,
  .camps-card-grid-five,
  .camps-type-grid,
  .camps-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .camps-timeline::before {
    display: none;
  }

  .camps-info-row {
    grid-template-columns: 1fr;
  }

  .camps-types-section,
  .camps-process-section {
    padding-top: 30px;
    padding-bottom: 44px;
  }
}

@media (max-width: 640px) {
  .camps-hero {
    padding: 22px 16px 0;
  }

  .camps-hero h1 {
    font-size: 32px;
  }

  .camps-hero-copy > p {
    font-size: 16px;
    line-height: 1.8;
  }

  .camps-hero-actions,
  .camps-primary,
  .camps-secondary {
    width: 100%;
  }

  .camps-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .camps-feature-grid div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
  }

  .camps-feature-grid span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .camps-feature-grid p {
    margin-top: 3px;
  }

  .camps-hero-visual,
  .camps-hero-visual figure {
    height: 280px;
  }

  .camps-hero-visual figure {
    border-radius: 22px;
  }

  .camps-orb-large {
    right: -80px;
  }

  .camps-model-section,
  .camps-types-section,
  .camps-process-section,
  .camps-info-row-section,
  .camps-final-cta {
    padding: 58px 16px;
  }

  .camps-section-container {
    width: 100%;
  }

  .camps-section-head {
    margin-bottom: 26px;
  }

  .camps-section-head p,
  .camps-calendar-panel p,
  .camps-final-cta p {
    font-size: 15px;
    line-height: 1.65;
  }

  .camps-card-grid-four,
  .camps-card-grid-five,
  .camps-type-grid,
  .camps-timeline {
    grid-template-columns: 1fr;
  }

  .camps-info-card,
  .camps-soft-card {
    min-height: 0;
  }

  .camps-type-card,
  .camps-calendar-panel,
  .camps-faq-panel {
    padding: 24px;
    border-radius: 18px;
  }

  .camps-type-card {
    min-height: 0;
  }

  .camps-calendar-panel .camps-primary,
  .camps-final-cta .camps-primary {
    width: 100%;
  }

  .camps-final-cta h2 {
    font-size: 32px;
  }

  .camps-types-section,
  .camps-process-section {
    padding-top: 26px;
    padding-bottom: 38px;
  }
}
