: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%);
}

body.not-found-page {
  background: rgba(255, 255, 255, 0.94);
}

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: var(--green-deep);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  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(4, minmax(0, 1fr));
  gap: 12px;
  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(3, minmax(0, 1fr));
  gap: 16px;
}

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

.camps-type-card-academic {
  align-content: start;
}

.camps-type-card-sports {
  align-content: start;
}

.camps-type-card-nature {
  align-content: start;
}

.camps-type-card-academic .camps-feature-list {
  margin-top: 18px;
}

.camps-type-card-sports .camps-feature-list {
  margin-top: 18px;
}

.camps-type-card-nature .camps-feature-list {
  margin-top: 18px;
}

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

.camps-type-card h3 {
  font-size: 18px;
  line-height: 1.24;
}

.camps-type-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.58;
}

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

.camps-feature-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(1, 48, 36, 0.78);
  font-size: 12px;
  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: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.camps-programs-layout {
  display: grid;
  gap: 28px;
}

.camps-programs-head {
  max-width: 900px;
  margin-bottom: 0;
}

.camp-program-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 22px;
  align-items: stretch;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(1, 48, 36, 0.08);
}

.camp-program-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.camp-program-kicker,
.camp-program-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(69, 162, 103, 0.16);
  border-radius: 8px;
  background: rgba(69, 162, 103, 0.1);
  color: var(--green-deep);
  font-weight: 800;
}

.camp-program-kicker {
  min-height: 38px;
  padding: 0 12px;
  font-size: 14px;
}

.camp-program-kicker svg,
.camp-program-date svg,
.camp-program-tags svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.camp-program-card h3 {
  margin: 20px 0 0;
  color: var(--green-deep);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.camp-program-card strong {
  margin-top: 10px;
  color: #9d7620;
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 800;
  line-height: 1.25;
}

.camp-program-date {
  min-height: 44px;
  margin: 16px 0 0;
  padding: 0 14px;
  font-size: 15px;
}

.camp-program-card p:not(.camp-program-date) {
  margin: 14px 0 0;
  color: rgba(16, 26, 42, 0.86);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

.camp-program-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(46, 77, 69, 0.12);
  list-style: none;
}

.camp-program-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(69, 162, 103, 0.16);
  border-radius: 10px;
  background: #ffffff;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.camp-program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.camp-program-primary,
.camp-program-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.camp-program-primary {
  flex: 1 1 220px;
  background: linear-gradient(135deg, var(--green-deep), #007a58);
  color: #ffffff;
}

.camp-program-secondary {
  flex: 0.8 1 190px;
  border: 1px solid rgba(1, 48, 36, 0.28);
  color: var(--green-deep);
  background: #ffffff;
}

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

.camp-program-secondary:hover {
  border-color: var(--green-deep);
}

.camp-program-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f4efe4;
}

.camp-program-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.lgs-camp-page {
  overflow: hidden;
  background: #fffdf8;
}

.lgs-camp-detail-page .header-shell {
  background: #fffdf8;
}

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

.lgs-camp-hero {
  padding: 24px 24px 42px;
  background: linear-gradient(180deg, #fffdf8 0%, #f4f7f1 100%);
}

.lgs-camp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.lgs-camp-hero-copy {
  min-width: 0;
}

.lgs-camp-badge,
.lgs-camp-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(69, 162, 103, 0.16);
  border-radius: 8px;
  background: rgba(69, 162, 103, 0.1);
  color: var(--green-deep);
  font-weight: 800;
}

.lgs-camp-badge {
  min-height: 38px;
  padding: 0 12px;
  font-size: 14px;
}

.lgs-camp-badge svg,
.lgs-camp-date svg,
.lgs-camp-mini-grid svg,
.lgs-day-card svg,
.lgs-subject-title svg,
.lgs-fit-grid svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.lgs-camp-hero h1 {
  margin: 18px 0 0;
  color: var(--green-deep);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.lgs-camp-subtitle {
  margin: 10px 0 0;
  color: #9d7620;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}

.lgs-camp-hero-actions {
  display: flex;
  width: min(100%, 520px);
  max-width: 100%;
  margin-top: 18px;
  align-items: center;
  gap: 12px;
}

.lgs-camp-date {
  min-height: 48px;
  width: auto;
  margin: 0;
  padding: 0 18px;
  justify-content: center;
  font-size: 16px;
  white-space: nowrap;
}

.lgs-camp-register-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  width: auto;
  flex: 1 1 auto;
  min-width: 142px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-deep), #007a58);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 28px rgba(1, 48, 36, 0.12);
}

.lgs-camp-register-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(1, 48, 36, 0.16);
}

.lgs-camp-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(16, 26, 42, 0.84);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.62;
}

.lgs-camp-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.lgs-camp-mini-grid div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(1, 48, 36, 0.05);
}

.lgs-camp-mini-grid div {
  min-height: 70px;
  padding: 12px;
}

.lgs-camp-mini-grid svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 9px;
  background: rgba(69, 162, 103, 0.1);
  color: var(--green-deep);
}

.lgs-camp-mini-grid span {
  display: block;
  color: rgba(1, 48, 36, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lgs-camp-mini-grid strong {
  display: block;
  margin-top: 3px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.lgs-camp-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f3eee2;
  box-shadow: 0 22px 52px rgba(1, 48, 36, 0.1);
}

.lgs-camp-hero-media img {
  display: block;
  width: 100%;
  min-height: 500px;
  max-height: 560px;
  object-fit: cover;
}

.lgs-camp-flow,
.lgs-subject-section,
.lgs-fit-section {
  padding: 44px 24px;
}

.lgs-camp-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.lgs-camp-section-head-centered {
  max-width: none;
  text-align: center;
}

.lgs-camp-section-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9d7620;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lgs-camp-section-head h2 {
  margin: 0;
  color: #101a2a;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.16;
}

.lgs-camp-section-head p {
  margin: 10px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.lgs-camp-flow {
  background: #eef6f0;
}

.lgs-subject-section {
  background: #fff8ec;
}

.lgs-camp-weeks,
.lgs-subject-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.lgs-camp-week h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0 0 16px;
  border-radius: 8px;
  background: var(--green-deep);
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.lgs-day-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.lgs-day-card > div,
.lgs-day-card ul {
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 10px;
  background: #ffffff;
}

.lgs-day-card > div {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 112px;
  padding: 12px;
  color: var(--green-deep);
  text-align: center;
}

.lgs-day-card > div strong {
  margin-top: 8px;
  color: #101a2a;
  font-size: 15px;
  font-weight: 900;
}

.lgs-day-date-day {
  margin-top: 8px;
  color: var(--green-deep);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.lgs-day-date-month {
  margin-top: 2px;
  color: rgba(1, 48, 36, 0.66);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.lgs-day-card ul {
  margin: 0;
  padding: 10px 14px;
  list-style: none;
}

.lgs-day-card li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-radius: 8px;
  color: #101a2a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transition: background 160ms ease, color 160ms ease, padding 160ms ease;
}

.lgs-day-card li + li {
  border-top: 1px solid rgba(46, 77, 69, 0.09);
}

.lgs-day-card li span {
  color: #00855f;
  font-weight: 900;
}

.lgs-day-card li:hover {
  padding-right: 8px;
  padding-left: 8px;
  background: rgba(69, 162, 103, 0.12);
  color: var(--green-deep);
}

.lgs-day-card li:hover span {
  color: var(--green-deep);
}

.lgs-day-card-exam ul {
  background: linear-gradient(180deg, #fff3f5 0%, #ffffff 60%);
}

.lgs-day-card-exam li:first-child {
  color: #b22b63;
}

.lgs-fit-section {
  background: #fffdf8;
}

.lgs-subject-card,
.lgs-fit-grid article {
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(1, 48, 36, 0.07);
}

.lgs-subject-card {
  padding: 26px;
}

.lgs-subject-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lgs-subject-title svg {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 12px;
  background: #00855f;
  color: #ffffff;
}

.lgs-subject-card-turkish .lgs-subject-title svg {
  background: #c94b7e;
}

.lgs-subject-title h3 {
  margin: 0;
  color: #101a2a;
  font-size: 24px;
  font-weight: 900;
}

.lgs-subject-title h3 span {
  color: #00855f;
  font-size: 18px;
}

.lgs-subject-card-turkish .lgs-subject-title h3,
.lgs-subject-card-turkish .lgs-subject-title h3 span {
  color: #b22b63;
}

.lgs-subject-title p {
  margin: 4px 0 0;
  color: rgba(1, 48, 36, 0.66);
  font-weight: 700;
}

.lgs-subject-card dl {
  margin: 22px 0 0;
}

.lgs-subject-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(1, 48, 36, 0.28);
}

.lgs-subject-card dt,
.lgs-subject-card dd {
  margin: 0;
  color: #101a2a;
  font-size: 14px;
  font-weight: 800;
}

.lgs-subject-card dd {
  color: #00855f;
}

.lgs-subject-card-turkish dd {
  color: #b22b63;
}

.lgs-subject-note {
  margin: 20px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: rgba(69, 162, 103, 0.1);
  color: rgba(1, 48, 36, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.lgs-fit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.lgs-fit-grid article {
  min-height: 150px;
  padding: 20px;
}

.lgs-fit-grid svg {
  color: #00855f;
}

.lgs-fit-grid p {
  margin: 14px 0 0;
  color: #101a2a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.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;
}

.home-calendar-section {
  margin-top: 22px;
}

.home-calendar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.home-calendar-period {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 16px;
}

.home-calendar-period .calendar-period-card-main {
  max-width: 760px;
  text-align: left;
}

.home-calendar-period .calendar-eyebrow {
  min-height: 30px;
  padding: 5px 12px;
}

.home-calendar-period h2 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 3.1vw, 36px);
  line-height: 1.12;
  text-align: left;
}

.home-calendar-period p {
  max-width: 720px;
  line-height: 1.65;
}

.home-calendar-period .calendar-period-meta {
  margin-top: 18px;
}

.home-calendar-period .calendar-period-actions {
  min-width: 0;
}

.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-loading {
  padding: 18px 20px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(1, 48, 36, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.faq-loading {
  padding: 18px 20px;
  border: 1px solid rgba(1, 48, 36, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(1, 48, 36, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.guide-card {
  display: grid;
  grid-template-columns: 128px 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: 128px;
  height: 100%;
  min-height: 116px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #fff9ef;
}

.thumb-1 {
  object-position: center;
}

.thumb-2 {
  object-position: center;
}

.thumb-3 {
  object-position: center;
}

.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: -webkit-box;
  overflow: hidden;
  margin-bottom: 8px;
  color: rgba(1, 48, 36, 0.74);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.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);
  }

  .home-calendar-layout {
    grid-template-columns: 1fr;
  }

  .home-calendar-period {
    grid-template-columns: 1fr;
  }

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

  .not-found-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .not-found-visual {
    min-height: 260px;
  }

  .not-found-visual img {
    width: min(100%, 360px);
  }

  .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;
  }

  .not-found-section {
    padding: 50px 16px 28px;
  }

  .not-found-container {
    width: 100%;
  }

  .not-found-copy h1 {
    font-size: 40px;
  }

  .not-found-copy p {
    font-size: 16px;
  }

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

  .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: 96px minmax(0, 1fr);
    min-height: 104px;
  }

  .guide-thumb {
    width: 96px;
    min-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;
}

.not-found-section {
  position: relative;
  min-height: auto;
  padding: 50px 24px 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.not-found-section::before {
  display: none;
  content: none;
}

.not-found-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 64px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.not-found-copy {
  max-width: 720px;
}

.not-found-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 22px;
  padding: 0 18px;
  border: 1px solid rgba(0, 119, 73, 0.14);
  border-radius: 999px;
  background: rgba(235, 247, 240, 0.88);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
}

.not-found-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #101a2a;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
}

.not-found-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(1, 48, 36, 0.74);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found-actions .hero-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: var(--button-shadow);
}

.not-found-actions .hero-primary:hover {
  background: #003b2d;
  color: var(--white);
}

.not-found-actions .hero-secondary {
  border-color: rgba(0, 119, 73, 0.24);
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-deep);
}

.not-found-actions .hero-secondary:hover {
  border-color: rgba(0, 119, 73, 0.4);
  background: rgba(235, 247, 240, 0.96);
  color: var(--green-deep);
}

.not-found-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.not-found-visual img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

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

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

.about-page .program-faq-section .about-container {
  width: min(1200px, calc(100% - 48px));
}

.about-page .program-faq-section .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);
}

.about-page .program-faq-section .faq-list {
  max-width: none;
}

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

.program-calendar-section {
  padding-top: 28px;
  padding-bottom: 34px;
  background: #fff8ee;
}

.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: 0;
  }

  .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 {
    position: static;
    display: block;
    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;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-empty-item {
  padding: 18px 20px;
  border: 1px solid rgba(0, 119, 73, 0.14);
  border-radius: 8px;
  background: rgba(235, 247, 240, 0.62);
  color: rgba(1, 48, 36, 0.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .faq-text-item {
    padding: 16px;
  }

  .faq-text-item h3 {
    font-size: 14px;
  }

  .faq-text-item p,
  .faq-empty-item {
    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 {
  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: 18px;
}

.model-stop {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px 22px;
  border: 1px solid rgba(46, 77, 69, 0.1);
  border-radius: 18px;
  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;
}

.model-stop::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 5px;
  border-radius: 0 0 999px 0;
  background: #45a267;
  content: "";
}

.model-stop:nth-child(2)::before {
  background: #d7a83f;
}

.model-stop:nth-child(3)::before {
  background: #3b82c4;
}

.model-stop:nth-child(4)::before {
  background: #18a87d;
}

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

.model-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--green-deep);
}

.model-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.9;
}

.model-stop h3,
.why-grid h3 {
  margin: 0;
  color: #101a2a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
}

.model-stop p,
.why-grid p {
  margin: 12px 0 0;
  color: rgba(1, 48, 36, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.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: 16px;
  line-height: 1.3;
  text-align: center;
}

.why-grid p {
  max-width: 180px;
  margin: 10px auto 0;
  font-size: 13px;
  line-height: 1.55;
  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;
}

.page-title-section,
.contact-page-title-section {
  padding: 54px 24px 18px;
  background: #ffffff;
}

.page-title-section h1,
.contact-page-title-section h1 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.page-title-section p,
.contact-page-title-section p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(1, 48, 36, 0.76);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.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 a {
  color: inherit;
  text-decoration: none;
}

.contact-office-list a:hover {
  color: var(--sea-green);
}

.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;
  }
}

@media (max-width: 640px) {
  .contact-container {
    width: calc(100% - 48px);
  }

  .contact-hero {
    padding: 0 16px 18px;
  }

  .page-title-section,
  .contact-page-title-section {
    padding: 38px 16px 10px;
  }

  .page-title-section h1,
  .contact-page-title-section h1 {
    font-size: 34px;
  }

  .page-title-section p,
  .contact-page-title-section p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .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: 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: 0;
  }

  .founder-path {
    display: none;
  }

  .founder-handwrite {
    display: 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 {
    gap: 18px;
  }

  .model-stop,
  .why-grid article {
    min-height: 0;
  }

  .why-grid h3 {
    font-size: 18px;
  }

  .why-grid p {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.6;
  }

  .founder-note {
    padding: 54px 0;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .founder-note p {
    font-size: 16px;
  }

  .founder-aside {
    min-height: 0;
  }

  .founder-handwrite {
    display: none;
  }

  .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(34px, 4vw, 56px);
  }

  .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;
  }

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

  .camp-program-media img {
    position: static;
    height: auto;
    min-height: 360px;
  }

  .lgs-camp-hero-grid,
  .lgs-camp-weeks,
  .lgs-subject-grid {
    grid-template-columns: 1fr;
  }

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

  .lgs-camp-hero-media img {
    min-height: 390px;
    max-height: 450px;
  }

  .camps-types-section,
  .camps-process-section {
    padding-top: 30px;
    padding-bottom: 44px;
  }
}

@media (max-width: 640px) {
  .programs-hero .program-detail-visual {
    display: none;
  }

  .camps-hero {
    padding: 22px 16px 0;
  }

  .camps-hero h1 {
    font-size: 34px;
  }

  .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;
  }

  .about-page .program-faq-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .camps-section-container {
    width: 100%;
  }

  .about-page .program-faq-section .about-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;
  }

  .camp-program-card {
    padding: 18px;
    border-radius: 18px;
  }

  .camp-program-card h3 {
    font-size: 30px;
  }

  .camp-program-card strong {
    font-size: 20px;
  }

  .camp-program-date {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .camp-program-card p:not(.camp-program-date) {
    font-size: 15px;
    line-height: 1.58;
  }

  .camp-program-tags {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .camp-program-actions,
  .camp-program-primary,
  .camp-program-secondary {
    width: 100%;
  }

  .camp-program-media {
    border-radius: 16px;
  }

  .camp-program-media img {
    position: static;
    height: auto;
    min-height: 260px;
  }

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

  .lgs-camp-hero,
  .lgs-camp-flow,
  .lgs-subject-section,
  .lgs-fit-section {
    padding: 34px 16px;
  }

  .lgs-camp-hero {
    padding-top: 24px;
  }

  .lgs-camp-hero h1 {
    font-size: 36px;
    white-space: normal;
  }

  .lgs-camp-subtitle {
    font-size: 23px;
  }

  .lgs-camp-lead,
  .lgs-camp-section-head p {
    font-size: 15px;
    line-height: 1.65;
  }

  .lgs-camp-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .lgs-camp-register-button {
    width: 100%;
    margin-left: 0;
  }

  .lgs-camp-date {
    width: 100%;
    justify-content: center;
  }

  .lgs-camp-mini-grid,
  .lgs-fit-grid {
    grid-template-columns: 1fr;
  }

  .lgs-camp-hero-media {
    border-radius: 18px;
  }

  .lgs-camp-hero-media img {
    min-height: 290px;
    max-height: 350px;
  }

  .lgs-day-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lgs-day-card > div {
    display: grid;
    min-height: 96px;
    gap: 0;
    text-align: center;
  }

  .lgs-day-card > div strong {
    margin-top: 8px;
  }

  .lgs-day-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lgs-subject-card {
    padding: 22px;
  }

  .lgs-subject-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .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;
  }

  .about-page .program-faq-section .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;
  }
}
/* Academic calendar page */
.academic-calendar-page {
  color: #1b3031;
  background: #f7faf8;
}

.academic-calendar-page main {
  overflow: clip;
}

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

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

.calendar-hero-section .legal-container > h1 {
  color: #101a2a;
  font-weight: 700;
}

.calendar-legal-hero {
  margin-bottom: 0;
}

.calendar-legal-hero .legal-hero-copy {
  grid-template-columns: 112px minmax(0, 1fr);
}

.calendar-legal-hero .calendar-eyebrow {
  margin-bottom: 12px;
}

.calendar-legal-note {
  margin-top: 18px;
  margin-bottom: 8px;
}

.calendar-legal-note strong {
  color: #101a2a;
  font-weight: 600;
}

.calendar-shell {
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
}

.calendar-hero {
  padding: 82px 0 38px;
}

.calendar-hero .calendar-shell {
  display: grid;
  gap: 22px;
}

.calendar-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(69, 162, 103, 0.22);
  border-radius: 999px;
  background: #eef8f2;
  color: #03683e;
  font-size: 13px;
  font-weight: 600;
}

.calendar-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #1b3031;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.calendar-hero p {
  max-width: 790px;
  margin: 0;
  color: rgba(27, 48, 49, 0.78);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.calendar-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-hero-meta li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #dde8e3;
  border-radius: 999px;
  background: #ffffff;
  color: #1b3031;
  font-size: 14px;
  font-weight: 600;
}

.calendar-section {
  padding: 28px 0;
}

.calendar-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.calendar-section-heading h2 {
  margin: 0;
  color: #1b3031;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: 0;
}

.calendar-section-heading p {
  max-width: 610px;
  margin: 8px 0 0;
  color: rgba(27, 48, 49, 0.72);
  line-height: 1.7;
}

.calendar-notice {
  padding: 0 0 18px;
}

.calendar-notice-box {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid #cfe6d7;
  border-radius: 18px;
  background: #eef8f2;
  box-shadow: 0 12px 28px rgba(1, 48, 36, 0.06);
}

.calendar-notice-box svg {
  width: 24px;
  height: 24px;
  color: #45a267;
}

.calendar-notice-box strong {
  display: block;
  margin-bottom: 6px;
  color: #1b3031;
  font-weight: 600;
}

.calendar-notice-box p {
  margin: 0;
  color: rgba(27, 48, 49, 0.78);
  line-height: 1.7;
}

.calendar-filter-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid #dde8e3;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(1, 48, 36, 0.06);
}

.calendar-inline-filter {
  margin-bottom: 18px;
}

.calendar-filter-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.calendar-filter-row > span {
  padding-top: 10px;
  color: rgba(27, 48, 49, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.calendar-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.calendar-filter-chip,
.calendar-clear-button,
.month-nav-button {
  min-height: 44px;
  border: 1px solid #dde8e3;
  border-radius: 999px;
  background: #ffffff;
  color: #1b3031;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.calendar-filter-chip {
  padding: 9px 14px;
}

.calendar-filter-chip:hover,
.calendar-filter-chip.is-active,
.month-nav-button:hover {
  border-color: rgba(69, 162, 103, 0.44);
  background: #eef8f2;
  color: #03683e;
}

.calendar-filter-chip.is-active {
  box-shadow: inset 0 0 0 1px rgba(69, 162, 103, 0.28);
}

.calendar-filter-meb {
  border-color: rgba(82, 122, 138, 0.28);
}

.calendar-filter-meb:hover,
.calendar-filter-meb.is-active {
  border-color: rgba(82, 122, 138, 0.44);
  background: rgba(236, 244, 247, 0.92);
  color: #2d5d6e;
}

.calendar-filter-lgs-yks {
  border-color: rgba(250, 181, 44, 0.34);
}

.calendar-filter-lgs-yks:hover,
.calendar-filter-lgs-yks.is-active {
  border-color: rgba(250, 181, 44, 0.54);
  background: rgba(255, 244, 216, 0.92);
  color: #755000;
}

.calendar-filter-international {
  border-color: rgba(126, 87, 194, 0.3);
}

.calendar-filter-international:hover,
.calendar-filter-international.is-active {
  border-color: rgba(126, 87, 194, 0.5);
  background: rgba(245, 239, 255, 0.92);
  color: #5e3fa3;
}

.calendar-filter-patika {
  border-color: rgba(3, 104, 62, 0.26);
}

.calendar-filter-patika:hover,
.calendar-filter-patika.is-active {
  border-color: rgba(3, 104, 62, 0.44);
  background: rgba(232, 246, 238, 0.94);
  color: var(--green-deep);
}

.calendar-filter-actions {
  display: flex;
  justify-content: flex-end;
}

.calendar-clear-button {
  padding: 9px 16px;
  background: #f7faf8;
}

.calendar-clear-button:hover {
  border-color: #45a267;
  color: #03683e;
}

.calendar-filter-chip:focus-visible,
.calendar-clear-button:focus-visible,
.month-nav-button:focus-visible,
.calendar-month-toggle:focus-visible,
.calendar-cta-button:focus-visible {
  outline: 3px solid rgba(250, 181, 44, 0.55);
  outline-offset: 3px;
}

.upcoming-date-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.upcoming-date-item {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 142px;
  padding: 16px;
  border: 1px solid #dde8e3;
  border-radius: 16px;
  background: #ffffff;
}

.upcoming-date-label {
  color: #03683e;
  font-size: 13px;
  font-weight: 650;
}

.upcoming-date-item strong {
  color: #1b3031;
  font-size: 15px;
  line-height: 1.35;
}

.upcoming-date-item span:last-child,
.calendar-event-head span,
.key-date-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.calendar-roadmap-section {
  padding-top: 18px;
}

.calendar-roadmap-layout {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.calendar-roadmap-content {
  min-width: 0;
}

.calendar-mobile-sticky-controls {
  display: none;
}

.calendar-month-sidebar {
  top: 124px;
}

.calendar-month-sidebar .month-nav {
  display: grid;
  gap: 5px;
  overflow: visible;
  padding: 0;
}

.calendar-month-sidebar .month-nav-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #101a2a;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.calendar-month-sidebar .month-nav-button:hover,
.calendar-month-sidebar .month-nav-button.is-active {
  background: #eef8f2;
  color: var(--green-deep);
}

.calendar-month-sidebar .month-nav-button.is-active::before {
  position: absolute;
  left: -26px;
  width: 3px;
  height: 22px;
  border-radius: 99px;
  background: var(--green-deep);
  content: "";
}

.calendar-month-sidebar .month-nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

.calendar-months {
  display: grid;
  gap: 14px;
}

.calendar-month {
  border: 1px solid #dde8e3;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(1, 48, 36, 0.055);
  scroll-margin-top: 132px;
}

.calendar-month-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 20px 22px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: #1b3031;
  text-align: left;
  cursor: pointer;
}

.calendar-month-toggle strong {
  display: block;
  margin-bottom: 9px;
  color: var(--green-deep);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 650;
  line-height: 1.2;
}

.calendar-month-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-month-summary span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f7faf8;
  color: rgba(16, 26, 42, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.calendar-month-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(27, 48, 49, 0.72);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.calendar-month-meta svg {
  width: 22px;
  height: 22px;
  color: #45a267;
}

.calendar-month-panel {
  padding: 0 22px 22px;
}

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

.calendar-group {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 18px 18px 18px 22px;
  border: 1px solid #dde8e3;
  border-radius: 18px;
  --program-tag-bg: #f7faf8;
  --program-tag-border: rgba(27, 48, 49, 0.1);
  --program-tag-color: rgba(27, 48, 49, 0.72);
  background: #fbfdfc;
}

.calendar-group::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 99px 99px 0;
  background: var(--green-deep);
  content: "";
}

.calendar-group-meb {
  --program-tag-bg: rgba(82, 122, 138, 0.1);
  --program-tag-border: rgba(82, 122, 138, 0.28);
  --program-tag-color: #2d5d6e;
  border-color: rgba(82, 122, 138, 0.32);
  background: linear-gradient(110deg, rgba(236, 244, 247, 0.82), rgba(255, 255, 255, 0.94));
}

.calendar-group-meb::before {
  background: #527a8a;
}

.calendar-group-lgs-yks {
  --program-tag-bg: rgba(250, 181, 44, 0.16);
  --program-tag-border: rgba(250, 181, 44, 0.38);
  --program-tag-color: #755000;
  border-color: rgba(250, 181, 44, 0.34);
  background: linear-gradient(110deg, rgba(255, 244, 216, 0.66), rgba(255, 255, 255, 0.94));
}

.calendar-group-lgs-yks::before {
  background: #fab52c;
}

.calendar-group-international {
  --program-tag-bg: rgba(126, 87, 194, 0.1);
  --program-tag-border: rgba(126, 87, 194, 0.3);
  --program-tag-color: #5e3fa3;
  border-color: rgba(126, 87, 194, 0.28);
  background: linear-gradient(110deg, rgba(245, 239, 255, 0.78), rgba(255, 255, 255, 0.94));
}

.calendar-group-international::before {
  background: #7e57c2;
}

.calendar-group-patika {
  --program-tag-bg: rgba(3, 104, 62, 0.08);
  --program-tag-border: rgba(3, 104, 62, 0.24);
  --program-tag-color: #03683e;
  border-color: rgba(3, 104, 62, 0.25);
  background: linear-gradient(110deg, rgba(232, 246, 238, 0.72), rgba(255, 255, 255, 0.94));
}

.calendar-group-patika::before {
  background: #03683e;
}

.calendar-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.calendar-group-title h3 {
  margin: 0;
  color: #101a2a;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
}

.calendar-group-patika .calendar-group-title h3 {
  color: var(--green-deep);
}

.calendar-group-meb .calendar-group-title h3 {
  color: #2d5d6e;
}

.calendar-group-lgs-yks .calendar-group-title h3 {
  color: #755000;
}

.calendar-group-international .calendar-group-title h3 {
  color: #5e3fa3;
}

.calendar-group-title span {
  color: rgba(27, 48, 49, 0.58);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.calendar-group ul,
.key-date-group ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-event {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(221, 232, 227, 0.9);
  border-radius: 14px;
  background: #ffffff;
}

.calendar-event-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.calendar-event time,
.key-date-row time {
  color: #03683e;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.calendar-event h4 {
  margin: 0;
  color: #1b3031;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.calendar-event p {
  margin: 0;
  color: rgba(27, 48, 49, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.calendar-program-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-program-tags li {
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--program-tag-border);
  border-radius: 999px;
  background: var(--program-tag-bg);
  color: var(--program-tag-color);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.calendar-source {
  font-size: 13px !important;
}

.calendar-source a,
.key-date-source a {
  color: #03683e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calendar-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
}

.status-official {
  background: #e3f4ea;
  color: #03683e;
}

.status-estimated {
  background: #fff4d8;
  color: #805500;
}

.status-variable {
  background: #eef1f0;
  color: #40504c;
}

.category-meb,
.category-patika {
  background: #eef8f2;
  color: #1b3031;
}

.category-lgs-yks {
  background: #fff4d8;
  color: #5b470c;
}

.category-international {
  background: #eef2f8;
  color: #203e68;
}

.calendar-empty {
  padding: 26px;
  border: 1px dashed rgba(69, 162, 103, 0.42);
  border-radius: 18px;
  background: #ffffff;
  color: rgba(27, 48, 49, 0.72);
  text-align: center;
  font-weight: 600;
}

.key-date-groups {
  display: grid;
  gap: 18px;
}

.key-date-group {
  padding: 20px;
  border: 1px solid #dde8e3;
  border-radius: 18px;
  background: #ffffff;
}

.key-date-group h3 {
  margin: 0 0 14px;
  color: #1b3031;
  font-size: 20px;
  font-weight: 650;
}

.key-date-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(260px, 1.8fr) minmax(190px, 1fr) minmax(130px, 0.8fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid #eef2ef;
}

.key-date-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.key-date-row:last-child {
  padding-bottom: 0;
}

.key-date-row strong {
  display: block;
  margin-bottom: 5px;
  color: #1b3031;
  font-weight: 600;
  line-height: 1.35;
}

.key-date-row p {
  margin: 0;
  color: rgba(27, 48, 49, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.key-date-source {
  color: rgba(27, 48, 49, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.calendar-sources-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid #dde8e3;
  border-radius: 20px;
  background: #ffffff;
}

.calendar-sources-panel p {
  margin: 0;
  color: rgba(27, 48, 49, 0.74);
  line-height: 1.75;
}

.calendar-sources-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-sources-list li {
  padding: 9px 12px;
  border: 1px solid #dde8e3;
  border-radius: 12px;
  background: #f7faf8;
  color: #1b3031;
  font-size: 14px;
  font-weight: 600;
}

.calendar-faq-section .calendar-section-heading {
  margin-bottom: 18px;
}

.calendar-faq-section .calendar-section-heading h2 {
  max-width: 860px;
}

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

.calendar-faq-grid .faq-text-item {
  background: #ffffff;
}

.calendar-link-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid #dde8e3;
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(238, 248, 242, 0.72), rgba(255, 255, 255, 0.94));
  box-shadow: 0 16px 34px rgba(1, 48, 36, 0.055);
}

.calendar-link-panel h2 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 650;
  line-height: 1.2;
}

.calendar-link-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(16, 26, 42, 0.74);
  line-height: 1.7;
}

.calendar-index-section {
  padding-top: 34px;
}

.calendar-index-heading {
  margin-bottom: 22px;
}

.calendar-period-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.calendar-period-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(3, 104, 62, 0.18);
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(238, 248, 242, 0.78), rgba(255, 255, 255, 0.96));
  box-shadow: 0 16px 34px rgba(1, 48, 36, 0.055);
}

.calendar-period-card-main {
  min-width: 0;
}

.calendar-period-card h2,
.calendar-period-card h3 {
  margin: 14px 0 10px;
  color: var(--green-deep);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 650;
  line-height: 1.18;
}

.calendar-period-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(16, 26, 42, 0.74);
  line-height: 1.7;
}

.calendar-period-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.calendar-period-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(3, 104, 62, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(27, 48, 49, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.calendar-period-meta svg {
  width: 16px;
  height: 16px;
  color: var(--green-deep);
}

.calendar-period-actions {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.calendar-link-button-secondary {
  border: 1px solid rgba(3, 104, 62, 0.24);
  background: rgba(255, 255, 255, 0.76);
  color: var(--green-deep);
  box-shadow: none;
}

.calendar-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-deep), var(--sea-green));
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(3, 104, 62, 0.18);
}

.calendar-hero-link {
  font-weight: 500;
}

.calendar-cta {
  padding-bottom: 68px;
}

.calendar-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background: #1b3031;
  color: #ffffff;
}

.calendar-cta-panel h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
}

.calendar-cta-panel p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.calendar-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.calendar-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.calendar-cta-button.primary {
  border-color: #fab52c;
  background: #fab52c;
  color: #1b3031;
}

.calendar-cta-button.secondary:hover,
.calendar-cta-button.primary:hover {
  transform: translateY(-2px);
}

@media (max-width: 1020px) {
  .upcoming-date-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .upcoming-date-item {
    flex: 0 0 min(270px, 82vw);
  }

  .calendar-group-grid,
  .calendar-sources-panel,
  .calendar-faq-grid,
  .calendar-cta-panel,
  .calendar-period-grid,
  .calendar-period-card {
    grid-template-columns: 1fr;
  }

  .calendar-cta-actions {
    justify-content: flex-start;
  }

  .calendar-period-actions {
    min-width: 0;
  }

  .key-date-row {
    grid-template-columns: minmax(130px, 0.65fr) minmax(240px, 1.5fr);
  }

  .calendar-roadmap-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calendar-month-sidebar {
    position: static;
  }

  .calendar-month-sidebar .month-nav {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .calendar-month-sidebar .month-nav-button {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid #dde8e3;
    border-radius: 999px;
    background: #ffffff;
    white-space: nowrap;
  }

  .calendar-month-sidebar .month-nav-button.is-active::before {
    content: none;
  }
}

@media (max-width: 760px) {
  .calendar-shell {
    width: min(100% - 28px, 1220px);
  }

  .calendar-hero {
    padding: 54px 0 28px;
  }

  .calendar-filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .calendar-filter-row > span {
    padding-top: 0;
  }

  .calendar-filter-options {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .calendar-filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .calendar-notice-box {
    grid-template-columns: 1fr;
  }

  .calendar-section-heading {
    display: block;
  }

  .calendar-mobile-sticky-controls {
    position: sticky;
    top: 92px;
    z-index: 12;
    display: grid;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 0 12px;
    overflow: hidden;
    background: rgba(247, 250, 248, 0.96);
    backdrop-filter: blur(12px);
  }

  .calendar-month-sidebar-desktop,
  .calendar-inline-filter-desktop {
    display: none;
  }

  .calendar-mobile-filter {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 0;
    padding: 12px;
    overflow: hidden;
    border-radius: 16px;
  }

  .calendar-month-sidebar-mobile {
    min-width: 0;
    max-width: 100%;
    padding: 14px 12px;
    overflow: hidden;
    border-radius: 16px;
  }

  .calendar-mobile-filter .calendar-filter-options,
  .calendar-month-sidebar-mobile .month-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .calendar-mobile-filter .calendar-filter-options::-webkit-scrollbar,
  .calendar-month-sidebar-mobile .month-nav::-webkit-scrollbar {
    display: none;
  }

  .calendar-month-sidebar-mobile .month-nav-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .calendar-month-sidebar-mobile h2 {
    margin-bottom: 10px;
  }

  .calendar-roadmap-layout {
    display: block;
  }

  .calendar-month-toggle {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .calendar-month-meta {
    justify-content: space-between;
  }

  .calendar-month-panel {
    padding: 0 14px 14px;
  }

  .calendar-group {
    padding: 14px;
  }

  .calendar-event-head {
    display: grid;
  }

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

  .key-date-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px;
    border: 1px solid #eef2ef;
    border-radius: 14px;
  }

  .key-date-row + .key-date-row {
    margin-top: 10px;
  }

  .calendar-sources-panel,
  .calendar-cta-panel,
  .calendar-period-card {
    padding: 20px;
  }

  .calendar-cta-actions {
    display: grid;
  }

  .calendar-period-actions,
  .calendar-period-actions .calendar-link-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .calendar-hero-section {
    padding-top: 42px;
  }

  .calendar-legal-hero .legal-hero-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calendar-legal-hero .legal-hero-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .calendar-legal-hero .legal-hero-icon svg {
    width: 38px;
    height: 38px;
  }

  .calendar-legal-hero h2 {
    font-size: 21px;
  }

  .calendar-legal-note {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .calendar-filter-chip,
  .calendar-clear-button,
  .month-nav-button,
  .calendar-cta-button {
    transition: none;
  }
}

/* LGS TABAN PUANLARI PAGE: START */
body.lgs-results-page{--result-green:#063f35;--result-mint:#d8f2df;--result-cream:#f7f5ee;--result-yellow:#f6bd35;--result-ink:#16312b}
body.lgs-results-page *{box-sizing:border-box}body.lgs-results-page .results-container{width:min(1180px,calc(100% - 48px));margin:0 auto}body.lgs-results-page .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}body.lgs-results-page .mobile-menu-toggle{position:absolute;width:1px;height:1px;margin:-1px;overflow:hidden;clip:rect(0,0,0,0)}body.lgs-results-page .site-header>.mobile-panel{display:none}body.lgs-results-page .mobile-menu-toggle:checked~.mobile-panel{display:block}body.lgs-results-page .mobile-menu-toggle:focus-visible~.header-shell .menu-button{outline:3px solid rgba(69,162,103,.35);outline-offset:3px}
body.lgs-results-page .lgs-results-hero{position:relative;overflow:hidden;padding:58px 0 76px;background:linear-gradient(125deg,#dff2e5 0%,#b9dfc5 52%,#91cda5 100%);color:var(--result-green)}body.lgs-results-page .lgs-results-hero:before{position:absolute;top:-180px;left:-120px;width:450px;height:450px;border:1px solid rgba(6,63,53,.1);border-radius:50%;content:""}body.lgs-results-page .lgs-results-hero:after{position:absolute;right:-130px;bottom:-230px;width:560px;height:560px;border:105px solid rgba(255,255,255,.2);border-radius:50%;content:""}body.lgs-results-page .breadcrumbs{display:flex;gap:10px;align-items:center;margin-bottom:48px;color:rgba(6,63,53,.5);font-size:13px}body.lgs-results-page .breadcrumbs a{color:rgba(6,63,53,.72);text-decoration:none}body.lgs-results-page .hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:80px;align-items:center}body.lgs-results-page .eyebrow{display:inline-flex;align-items:center;gap:9px;color:#2f8050;font-size:13px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}body.lgs-results-page .eyebrow svg{width:18px}body.lgs-results-page .lgs-results-hero h1{max-width:770px;margin:18px 0;color:#083f35;font-size:clamp(38px,5.2vw,68px);font-weight:500;line-height:1.06;letter-spacing:-.045em}body.lgs-results-page .lgs-results-hero h1 em{display:block;color:#347f50;font-style:normal}body.lgs-results-page .hero-grid>div>p{max-width:680px;margin:0;color:rgba(6,63,53,.72);font-size:17px;line-height:1.75}body.lgs-results-page .hero-meta{display:flex;gap:28px;margin-top:30px}body.lgs-results-page .hero-meta span{display:flex;align-items:center;gap:8px;color:#275f4c;font-size:13px;font-weight:700}body.lgs-results-page .hero-meta svg{width:18px;color:#348755}body.lgs-results-page .hero-submark{position:relative;display:grid;place-items:center;min-height:350px}body.lgs-results-page .hero-submark:before{position:absolute;width:310px;height:310px;border-radius:50%;background:rgba(255,255,255,.24);box-shadow:0 28px 70px rgba(6,63,53,.08);content:""}body.lgs-results-page .hero-submark img{position:relative;width:300px;height:300px;filter:brightness(.43) saturate(1.05);opacity:.92}body.lgs-results-page .hero-submark-year{position:absolute;top:28px;right:8px;z-index:2;color:rgba(6,63,53,.56);font-size:12px;font-weight:800;letter-spacing:.18em}body.lgs-results-page .hero-submark-caption{position:absolute;right:4px;bottom:34px;z-index:2;color:rgba(6,63,53,.64);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
body.lgs-results-page .results-section{padding:78px 0 90px;background:var(--result-cream)}body.lgs-results-page .section-heading{display:flex;justify-content:space-between;align-items:end;margin-bottom:32px}body.lgs-results-page .section-kicker,body.lgs-results-page .panel-label{color:#409462;font-size:12px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}body.lgs-results-page .section-heading h2{margin:8px 0 0;color:var(--result-ink);font-size:38px;letter-spacing:-.035em}body.lgs-results-page .section-heading>p{max-width:420px;margin:0;color:#64736f;font-size:14px;line-height:1.65}body.lgs-results-page .tab-list{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;margin-bottom:16px}body.lgs-results-page .tab-button{position:relative;min-height:86px;padding:18px 42px 18px 19px;border:1px solid #dfe4df;border-radius:16px;background:#fff;color:#52635e;text-align:left;cursor:pointer;font:700 14px/1.35 Manrope,sans-serif;transition:.2s}body.lgs-results-page .tab-button:hover{border-color:#8db59b;transform:translateY(-2px)}body.lgs-results-page .tab-button span{display:block;margin-bottom:4px;color:#85918e;font-size:11px;text-transform:uppercase;letter-spacing:.08em}body.lgs-results-page .tab-button b{position:absolute;top:15px;right:15px;display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#eef3ef;color:#65736f;font-size:11px}body.lgs-results-page .tab-button.active{border-color:var(--result-green);background:var(--result-green);color:#fff;box-shadow:0 12px 28px rgba(6,63,53,.16)}body.lgs-results-page .tab-button.active span{color:var(--result-yellow)}body.lgs-results-page .tab-button.active b{background:var(--result-yellow);color:var(--result-green)}
body.lgs-results-page .static-tab-control{position:absolute;width:1px;height:1px;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}body.lgs-results-page .static-tab-panels .data-panel{display:none}body.lgs-results-page .static-tab-panels .data-panel+.data-panel{margin-top:22px}body.lgs-results-page #tab-all:checked~.static-tab-panels .data-panel,body.lgs-results-page #tab-istanbul-anadolu:checked~.static-tab-panels #panel-istanbul-anadolu,body.lgs-results-page #tab-istanbul-fen:checked~.static-tab-panels #panel-istanbul-fen,body.lgs-results-page #tab-ankara:checked~.static-tab-panels #panel-ankara,body.lgs-results-page #tab-izmir:checked~.static-tab-panels #panel-izmir{display:block}body.lgs-results-page #tab-all:checked~.tab-list label[for="tab-all"],body.lgs-results-page #tab-istanbul-anadolu:checked~.tab-list label[for="tab-istanbul-anadolu"],body.lgs-results-page #tab-istanbul-fen:checked~.tab-list label[for="tab-istanbul-fen"],body.lgs-results-page #tab-ankara:checked~.tab-list label[for="tab-ankara"],body.lgs-results-page #tab-izmir:checked~.tab-list label[for="tab-izmir"]{border-color:#45a267;background:#45a267;color:#fff;box-shadow:0 12px 28px rgba(69,162,103,.24)}body.lgs-results-page #tab-all:checked~.tab-list label[for="tab-all"] span,body.lgs-results-page #tab-istanbul-anadolu:checked~.tab-list label[for="tab-istanbul-anadolu"] span,body.lgs-results-page #tab-istanbul-fen:checked~.tab-list label[for="tab-istanbul-fen"] span,body.lgs-results-page #tab-ankara:checked~.tab-list label[for="tab-ankara"] span,body.lgs-results-page #tab-izmir:checked~.tab-list label[for="tab-izmir"] span{color:rgba(255,255,255,.78)}body.lgs-results-page #tab-all:checked~.tab-list label[for="tab-all"] b,body.lgs-results-page #tab-istanbul-anadolu:checked~.tab-list label[for="tab-istanbul-anadolu"] b,body.lgs-results-page #tab-istanbul-fen:checked~.tab-list label[for="tab-istanbul-fen"] b,body.lgs-results-page #tab-ankara:checked~.tab-list label[for="tab-ankara"] b,body.lgs-results-page #tab-izmir:checked~.tab-list label[for="tab-izmir"] b{background:#fff;color:#317748}body.lgs-results-page .static-tab-control:focus-visible~.tab-list label{outline-offset:3px}body.lgs-results-page .static-tab-control#tab-all:focus-visible~.tab-list label[for="tab-all"],body.lgs-results-page .static-tab-control#tab-istanbul-anadolu:focus-visible~.tab-list label[for="tab-istanbul-anadolu"],body.lgs-results-page .static-tab-control#tab-istanbul-fen:focus-visible~.tab-list label[for="tab-istanbul-fen"],body.lgs-results-page .static-tab-control#tab-ankara:focus-visible~.tab-list label[for="tab-ankara"],body.lgs-results-page .static-tab-control#tab-izmir:focus-visible~.tab-list label[for="tab-izmir"]{outline:3px solid rgba(69,162,103,.35)}
body.lgs-results-page .data-panel{overflow:hidden;border:1px solid #e1e5e1;border-radius:22px;background:#fff;box-shadow:0 18px 60px rgba(6,63,53,.07)}body.lgs-results-page .panel-head{display:flex;justify-content:space-between;align-items:center;padding:28px 30px;border-bottom:1px solid #edf0ed}body.lgs-results-page .panel-head h3{margin:6px 0 4px;color:var(--result-ink);font-size:24px}body.lgs-results-page .panel-head p{margin:0;color:#84908c;font-size:13px}body.lgs-results-page .panel-stat{display:flex;align-items:baseline;gap:6px}body.lgs-results-page .panel-stat span{color:var(--result-green);font-size:32px;font-weight:800}body.lgs-results-page .panel-stat small{color:#7e8b87}body.lgs-results-page .filters{display:grid;grid-template-columns:minmax(260px,1fr) 220px 260px;gap:12px;padding:20px 30px;background:#fafbf9}body.lgs-results-page .filters label{position:relative}body.lgs-results-page .filters input,body.lgs-results-page .filters select{width:100%;height:46px;border:1px solid #dce2dd;border-radius:11px;background:#fff;color:#354b45;font:600 13px Manrope,sans-serif;outline:none}body.lgs-results-page .filters input{padding:0 15px 0 43px}body.lgs-results-page .filters select{padding:0 34px 0 14px}body.lgs-results-page .filters input:focus,body.lgs-results-page .filters select:focus{border-color:#5ba475;box-shadow:0 0 0 3px rgba(69,162,103,.12)}body.lgs-results-page .search-field svg{position:absolute;top:14px;left:15px;width:18px;color:#6d7d78}body.lgs-results-page .table-wrap{overflow-x:auto}body.lgs-results-page table{width:100%;border-collapse:collapse}body.lgs-results-page th{padding:16px 14px;background:#eef4ef;color:#587068;font-size:10px;letter-spacing:.07em;text-align:left;text-transform:uppercase;white-space:nowrap}body.lgs-results-page th:first-child{padding-left:30px}body.lgs-results-page td{padding:18px 14px;border-top:1px solid #edf0ed;color:#51635d;font-size:12px;line-height:1.5;vertical-align:middle}body.lgs-results-page td:first-child{min-width:260px;padding-left:30px;color:var(--result-ink);font-size:13px;font-weight:700}body.lgs-results-page tbody tr:hover{background:#fbfcfa}body.lgs-results-page .school-district{display:block;margin-bottom:4px;color:#479263;font-size:9px;font-weight:800;letter-spacing:.08em}body.lgs-results-page .type-pill{display:inline-block;padding:5px 8px;border-radius:7px;background:#eef5ef;color:#3e6d50;font-size:10px;font-weight:700}body.lgs-results-page .vacancy{display:inline-grid;place-items:center;min-width:30px;height:30px;padding:0 8px;border-radius:8px;background:#edf3ef;color:#426050;font-weight:800}body.lgs-results-page .vacancy.has-space{background:#fff0ce;color:#8c5f00}body.lgs-results-page .score{color:var(--result-green);font-size:14px;font-weight:800;white-space:nowrap}body.lgs-results-page .empty-state{padding:60px 20px;text-align:center;color:#71807b}body.lgs-results-page .empty-state svg{width:38px;height:38px;margin-bottom:12px}body.lgs-results-page .empty-state strong{display:block;color:var(--result-ink)}body.lgs-results-page .empty-state p{font-size:13px}body.lgs-results-page .source-note{display:flex;gap:16px;margin-top:22px;padding:21px 24px;border:1px solid #dde5df;border-radius:16px;background:#f0f4ef;color:#65746f}body.lgs-results-page .source-note>svg,body.lgs-results-page .source-note>span{flex:none;width:20px;color:#43845b}body.lgs-results-page .source-note>span{font-size:20px;line-height:1}body.lgs-results-page .source-note strong{color:var(--result-ink);font-size:13px}body.lgs-results-page .source-note p{margin:5px 0 0;font-size:12px;line-height:1.65}body.lgs-results-page .source-note a{color:var(--result-green);font-weight:800}
body.lgs-results-page .simple-footer{padding:28px 0;background:#042f28;color:rgba(255,255,255,.62)}body.lgs-results-page .simple-footer .results-container{display:flex;align-items:center;justify-content:space-between;gap:24px}body.lgs-results-page .simple-footer img{width:140px;filter:brightness(0) invert(1)}body.lgs-results-page .simple-footer p{font-size:12px}body.lgs-results-page .simple-footer div div{display:flex;gap:18px}body.lgs-results-page .simple-footer a{color:rgba(255,255,255,.72);font-size:12px;text-decoration:none}body.lgs-results-page .whatsapp-float svg{fill:none}body.lgs-results-page .whatsapp-float>span{font-size:28px;font-weight:700;line-height:1}
@media(max-width:980px){body.lgs-results-page .hero-grid{grid-template-columns:1fr;gap:28px}body.lgs-results-page .hero-submark{min-height:260px}body.lgs-results-page .hero-submark:before{width:250px;height:250px}body.lgs-results-page .hero-submark img{width:240px;height:240px}body.lgs-results-page .hero-submark-year{right:calc(50% - 155px)}body.lgs-results-page .hero-submark-caption{right:calc(50% - 190px)}body.lgs-results-page .tab-list{grid-template-columns:1fr 1fr}body.lgs-results-page .filters{grid-template-columns:1fr 1fr}body.lgs-results-page .search-field{grid-column:1/-1}body.lgs-results-page .section-heading{align-items:flex-start;flex-direction:column;gap:14px}}
@media(max-width:640px){body.lgs-results-page .results-container{width:calc(100% - 32px)}body.lgs-results-page .lgs-results-hero{padding:34px 0 50px}body.lgs-results-page .breadcrumbs{margin-bottom:32px}body.lgs-results-page .lgs-results-hero h1{font-size:39px}body.lgs-results-page .hero-grid>div>p{font-size:15px}body.lgs-results-page .hero-meta{align-items:flex-start;flex-direction:column;gap:12px}body.lgs-results-page .hero-submark{min-height:210px}body.lgs-results-page .hero-submark:before{width:205px;height:205px}body.lgs-results-page .hero-submark img{width:195px;height:195px}body.lgs-results-page .hero-submark-year{top:14px;right:calc(50% - 126px)}body.lgs-results-page .hero-submark-caption{right:calc(50% - 145px);bottom:18px}body.lgs-results-page .results-section{padding:54px 0}body.lgs-results-page .section-heading h2{font-size:31px}body.lgs-results-page .tab-list{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:5px}body.lgs-results-page .tab-button{flex:0 0 220px;scroll-snap-align:start}body.lgs-results-page .panel-head{padding:22px 20px}body.lgs-results-page .panel-stat{display:none}body.lgs-results-page .filters{grid-template-columns:1fr;padding:16px 20px}body.lgs-results-page .search-field{grid-column:auto}body.lgs-results-page .table-wrap{overflow:visible;padding:0 16px 16px}body.lgs-results-page table,body.lgs-results-page tbody{display:block}body.lgs-results-page thead{display:none}body.lgs-results-page tbody tr{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:14px;padding:18px;border:1px solid #e3e8e4;border-radius:14px;background:#fff}body.lgs-results-page td,body.lgs-results-page td:first-child{display:block;min-width:0;padding:0;border:0;font-size:11px}body.lgs-results-page td:first-child{grid-column:1/-1;padding:0 0 12px;border-bottom:1px solid #edf0ed;font-size:13px}body.lgs-results-page td:before{display:block;margin-bottom:4px;color:#8a9692;font-size:8px;font-weight:800;letter-spacing:.07em;text-transform:uppercase}body.lgs-results-page td:nth-child(2):before{content:"Okul Türü"}body.lgs-results-page td:nth-child(3):before{content:"Eğitim"}body.lgs-results-page td:nth-child(4):before{content:"Pansiyon"}body.lgs-results-page td:nth-child(5):before{content:"Dil"}body.lgs-results-page td:nth-child(6):before{content:"Boş Kontenjan"}body.lgs-results-page td:nth-child(7):before{content:"Taban Puan"}body.lgs-results-page .simple-footer .results-container{align-items:flex-start;flex-direction:column}body.lgs-results-page .simple-footer p{margin:0}}

/* Kamplar sayfasıyla aynı kompozisyon ritmindeki LGS hero */
body.lgs-results-page .lgs-results-hero{padding:28px 24px 0;background:#fffdf8;color:var(--result-green)}
body.lgs-results-page .lgs-results-hero:before,body.lgs-results-page .lgs-results-hero:after{display:none}
body.lgs-results-page .lgs-results-hero-container{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,.46fr) minmax(500px,.54fr);align-items:center;gap:44px;width:min(1220px,100%);min-height:540px;margin:0 auto}
body.lgs-results-page .lgs-results-hero-copy{max-width:560px}
body.lgs-results-page .lgs-results-hero .breadcrumbs{margin-bottom:20px;color:rgba(1,48,36,.48)}
body.lgs-results-page .lgs-results-hero .breadcrumbs a{color:rgba(1,48,36,.68)}
body.lgs-results-page .lgs-results-hero-badge{display:inline-flex;align-items:center;gap:9px;min-height:40px;padding:0 18px;border-radius:32px;background:rgba(69,162,103,.12);color:var(--green-deep);font-size:14px;font-weight:800}
body.lgs-results-page .lgs-results-hero-badge svg{width:18px;height:18px}
body.lgs-results-page .lgs-results-hero h1{max-width:660px;margin:20px 0 0;color:var(--green-deep);font-size:clamp(34px,4vw,56px);font-weight:500;line-height:1.08;letter-spacing:0}
body.lgs-results-page .lgs-results-hero h1 span{display:block;color:#45a267}
body.lgs-results-page .lgs-results-hero-copy>p{max-width:610px;margin:28px 0 0;color:rgba(1,48,36,.78);font-size:16px;font-weight:500;line-height:2}
body.lgs-results-page .lgs-results-hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:24px}
body.lgs-results-page .lgs-results-primary,body.lgs-results-page .lgs-results-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;text-decoration:none;transition:background 180ms ease,color 180ms ease,border-color 180ms ease,transform 180ms ease}
body.lgs-results-page .lgs-results-primary{background:var(--green-deep);color:#fff}body.lgs-results-page .lgs-results-secondary{border:1px solid rgba(1,48,36,.18);background:transparent;color:var(--green-deep)}
body.lgs-results-page .lgs-results-primary:hover,body.lgs-results-page .lgs-results-secondary:hover{transform:translateY(-4px)}body.lgs-results-page .lgs-results-secondary:hover{border-color:var(--green-deep);background:#fff}
body.lgs-results-page .lgs-results-feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:24px}
body.lgs-results-page .lgs-results-feature-grid div{min-width:0}body.lgs-results-page .lgs-results-feature-grid span{display:grid;place-items:center;width:42px;height:42px;margin-bottom:12px;border:1px solid rgba(1,48,36,.08);border-radius:14px;background:#fff;color:var(--green-deep);box-shadow:0 10px 24px rgba(1,48,36,.06)}
body.lgs-results-page .lgs-results-feature-grid svg{width:22px;height:22px;stroke-width:1.9}body.lgs-results-page .lgs-results-feature-grid strong{display:block;color:#101a2a;font-size:13px;font-weight:800;line-height:1.25}body.lgs-results-page .lgs-results-feature-grid p{margin:6px 0 0;color:rgba(1,48,36,.66);font-size:12px;font-weight:600;line-height:1.4}
body.lgs-results-page .lgs-results-hero-visual{position:relative;min-height:460px}body.lgs-results-page .lgs-results-hero-visual figure{position:relative;z-index:1;display:grid;place-items:center;height:460px;margin:0;overflow:hidden;border-radius:32px;background:#45a267;box-shadow:0 30px 80px rgba(1,48,36,.16)}
body.lgs-results-page .lgs-results-hero-visual figure:after{position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(1,48,36,.08));content:"";pointer-events:none}
body.lgs-results-page .lgs-results-hero-visual img{position:relative;z-index:1;display:block;width:min(72%,390px);height:min(72%,390px);filter:brightness(.3) saturate(.85);opacity:.94}
body.lgs-results-page .lgs-results-visual-year,body.lgs-results-page .lgs-results-visual-caption{position:absolute;z-index:2;color:rgba(1,48,36,.68);font-weight:800;text-transform:uppercase}body.lgs-results-page .lgs-results-visual-year{top:28px;right:30px;font-size:12px;letter-spacing:.18em}body.lgs-results-page .lgs-results-visual-caption{right:30px;bottom:26px;font-size:11px;letter-spacing:.12em}
body.lgs-results-page .lgs-results-orb{position:absolute;border-radius:50%;background:#dff2e5;pointer-events:none}body.lgs-results-page .lgs-results-orb-large{top:-44px;right:-56px;width:250px;height:250px;opacity:.72}body.lgs-results-page .lgs-results-orb-small{right:64px;bottom:-34px;width:156px;height:156px;opacity:.62}
body.lgs-results-page .lgs-results-hero-divider{width:calc(100% + 48px);margin-left:-24px}body.lgs-results-page .lgs-results-hero-divider .wave{display:block;width:100%;height:120px;margin-bottom:-1px}
body.lgs-results-page .results-section{padding-top:58px}
@media(max-width:980px){body.lgs-results-page .lgs-results-hero{padding:24px 24px 0}body.lgs-results-page .lgs-results-hero-container{grid-template-columns:1fr;gap:38px;min-height:0}body.lgs-results-page .lgs-results-hero-copy{max-width:680px}body.lgs-results-page .lgs-results-hero h1{max-width:680px}body.lgs-results-page .lgs-results-hero-visual,body.lgs-results-page .lgs-results-hero-visual figure{min-height:0;height:360px}body.lgs-results-page .lgs-results-hero-visual img{width:250px;height:250px}body.lgs-results-page .lgs-results-hero-divider{width:calc(100% + 48px);margin-left:-24px}}
@media(max-width:640px){body.lgs-results-page .lgs-results-hero{padding:22px 16px 0}body.lgs-results-page .lgs-results-hero h1{font-size:34px}body.lgs-results-page .lgs-results-hero-copy>p{font-size:16px;line-height:1.8}body.lgs-results-page .lgs-results-hero-actions,body.lgs-results-page .lgs-results-primary,body.lgs-results-page .lgs-results-secondary{width:100%}body.lgs-results-page .lgs-results-feature-grid{grid-template-columns:1fr;gap:18px}body.lgs-results-page .lgs-results-feature-grid div{display:grid;grid-template-columns:42px minmax(0,1fr);column-gap:12px;align-items:center}body.lgs-results-page .lgs-results-feature-grid span{grid-row:span 2;margin-bottom:0}body.lgs-results-page .lgs-results-feature-grid p{margin-top:3px}body.lgs-results-page .lgs-results-hero-visual,body.lgs-results-page .lgs-results-hero-visual figure{height:280px}body.lgs-results-page .lgs-results-hero-visual figure{border-radius:22px}body.lgs-results-page .lgs-results-hero-visual img{width:190px;height:190px}body.lgs-results-page .lgs-results-orb-large{right:-80px}body.lgs-results-page .lgs-results-hero-divider{width:calc(100% + 32px);margin-left:-16px}body.lgs-results-page .lgs-results-hero-divider .wave{height:88px}}

/* Liste başlığı ve aktif sekme */
body.lgs-results-page .results-section .section-heading>div{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
body.lgs-results-page .results-section .section-kicker{display:block;line-height:1.3}
body.lgs-results-page .results-section .section-heading h2{display:block;margin:0;line-height:1.15}
body.lgs-results-page .results-section .section-heading h2:after{background:#45a267}
body.lgs-results-page .results-section .tab-button.active{border-color:#45a267;background:#45a267;color:#fff;box-shadow:0 12px 28px rgba(69,162,103,.24)}
body.lgs-results-page .results-section .tab-button.active span{color:rgba(255,255,255,.78)}
body.lgs-results-page .results-section .tab-button.active b{background:#fff;color:#317748}

/* Daha yatay ve kompakt hero */
body.lgs-results-page .lgs-results-hero{padding-top:18px}
body.lgs-results-page .lgs-results-hero-container{grid-template-columns:minmax(0,.58fr) minmax(380px,.42fr);gap:52px;min-height:440px}
body.lgs-results-page .lgs-results-hero-copy{max-width:700px}
body.lgs-results-page .lgs-results-hero .breadcrumbs{margin-bottom:14px}
body.lgs-results-page .lgs-results-hero-badge{min-height:36px;padding:0 16px;font-size:13px}
body.lgs-results-page .lgs-results-hero h1{max-width:720px;margin-top:14px;font-size:clamp(34px,3.7vw,52px)}
body.lgs-results-page .lgs-results-hero-copy>p{max-width:690px;margin-top:18px;line-height:1.75}
body.lgs-results-page .lgs-results-hero-actions{margin-top:18px}
body.lgs-results-page .lgs-results-feature-grid{max-width:650px;margin-top:20px}
body.lgs-results-page .lgs-results-feature-grid span{width:38px;height:38px;margin-bottom:9px;border-radius:12px}
body.lgs-results-page .lgs-results-feature-grid svg{width:20px;height:20px}
body.lgs-results-page .lgs-results-hero-visual{min-height:350px}
body.lgs-results-page .lgs-results-hero-visual figure{height:350px;border-radius:28px}
body.lgs-results-page .lgs-results-hero-visual img{width:230px;height:230px}
body.lgs-results-page .lgs-results-orb-large{top:-34px;right:-42px;width:200px;height:200px}
body.lgs-results-page .lgs-results-orb-small{right:54px;bottom:-26px;width:120px;height:120px}
body.lgs-results-page .lgs-results-hero-divider .wave{height:82px}
body.lgs-results-page .results-section{padding-top:46px}
@media(max-width:980px){body.lgs-results-page .lgs-results-hero{padding-top:20px}body.lgs-results-page .lgs-results-hero-container{grid-template-columns:1fr;gap:28px;min-height:0}body.lgs-results-page .lgs-results-hero-copy{max-width:760px}body.lgs-results-page .lgs-results-hero-visual,body.lgs-results-page .lgs-results-hero-visual figure{height:300px}body.lgs-results-page .lgs-results-hero-visual img{width:200px;height:200px}body.lgs-results-page .lgs-results-hero-divider .wave{height:72px}}
@media(max-width:640px){body.lgs-results-page .lgs-results-hero{padding-top:18px}body.lgs-results-page .lgs-results-hero h1{font-size:32px}body.lgs-results-page .lgs-results-hero-copy>p{margin-top:16px}body.lgs-results-page .lgs-results-hero-visual,body.lgs-results-page .lgs-results-hero-visual figure{height:230px}body.lgs-results-page .lgs-results-hero-visual img{width:150px;height:150px}body.lgs-results-page .lgs-results-visual-year{top:20px;right:22px}body.lgs-results-page .lgs-results-visual-caption{right:22px;bottom:20px}body.lgs-results-page .lgs-results-hero-divider .wave{height:64px}}

/* Hero ile liste arasında kompakt, düz geçiş */
body.lgs-results-page .lgs-results-hero{padding-bottom:28px}
body.lgs-results-page .results-section{padding-top:36px}
@media(max-width:980px){body.lgs-results-page .lgs-results-hero{padding-bottom:24px}body.lgs-results-page .results-section{padding-top:34px}}
@media(max-width:640px){body.lgs-results-page .lgs-results-hero{padding-bottom:20px}body.lgs-results-page .results-section{padding-top:30px}}

/* Öğretim şekli sütunu için mobil kart etiketleri */
@media(max-width:640px){body.lgs-results-page td:nth-child(2):before{content:"Okul Türü"}body.lgs-results-page td:nth-child(3):before{content:"Eğitim"}body.lgs-results-page td:nth-child(4):before{content:"Öğretim Şekli"}body.lgs-results-page td:nth-child(5):before{content:"Pansiyon"}body.lgs-results-page td:nth-child(6):before{content:"Dil"}body.lgs-results-page td:nth-child(7):before{content:"Boş Kontenjan"}body.lgs-results-page td:nth-child(8):before{content:"Taban Puan"}}
/* LGS mobil arayüz düzeltmeleri */
body.lgs-results-page .site-header>.mobile-panel:not([hidden]){display:block}
body.lgs-results-page .whatsapp-float svg{fill:currentColor}
body.lgs-results-page .lgs-results-hero-visual img{transform:translateX(-23%)}
@media(max-width:900px){body.lgs-results-page .menu-button{display:flex;flex:0 0 48px;align-items:center;justify-content:center;flex-direction:column;gap:5px;padding:0}body.lgs-results-page .menu-button span{width:22px;height:2px;margin:0}}
/* LGS TABAN PUANLARI PAGE: END */

/* Ana sayfa 2026 LGS rehber bannerı */
.home-lgs-banner {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 0 0 26px;
  background: #f1f3f2;
}

.home-lgs-banner + .programs-section {
  margin-top: 0;
}

.home-lgs-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: min(1220px, calc(100% - 48px));
  min-height: 148px;
  margin: 0 auto;
  padding: 22px 28px;
  overflow: hidden;
  border: 1px solid rgba(3, 104, 62, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.78) 0 88px, transparent 89px),
    linear-gradient(120deg, #ffffff 0%, #f0f8f2 54%, #dfeee4 100%);
  box-shadow: 0 18px 48px rgba(1, 48, 36, 0.09);
}

.home-lgs-banner-inner::after {
  position: absolute;
  right: 24%;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(69, 162, 103, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-lgs-banner-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
}

.home-lgs-banner-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(1, 48, 36, 0.12));
}

.home-lgs-banner-copy,
.home-lgs-banner-action {
  position: relative;
  z-index: 1;
}

.home-lgs-banner-copy > span {
  display: block;
  margin-bottom: 7px;
  color: #3c8d5b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-lgs-banner-copy h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(21px, 2.15vw, 29px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.home-lgs-banner-copy p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(1, 48, 36, 0.68);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.home-lgs-banner-action {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: 206px;
}

.home-lgs-banner-action > span {
  color: rgba(1, 48, 36, 0.65);
  font-size: 11px;
  font-weight: 700;
}

.home-lgs-banner-action > span strong {
  margin-right: 4px;
  color: var(--green-deep);
  font-size: 18px;
}

.home-lgs-banner-action > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--green-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(1, 48, 36, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-lgs-banner-action > a:hover {
  background: #04543e;
  box-shadow: 0 16px 30px rgba(1, 48, 36, 0.24);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .home-lgs-banner-inner {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
  }

  .home-lgs-banner-mark {
    width: 76px;
    height: 76px;
  }

  .home-lgs-banner-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(3, 104, 62, 0.1);
  }
}

@media (max-width: 600px) {
  .home-lgs-banner {
    padding-bottom: 22px;
  }

  .home-lgs-banner-inner {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    width: calc(100% - 28px);
    padding: 20px;
    border-radius: 18px;
  }

  .home-lgs-banner-mark {
    width: 60px;
    height: 60px;
  }

  .home-lgs-banner-mark img {
    width: 100%;
    height: 100%;
  }

  .home-lgs-banner-copy h2 {
    font-size: 19px;
  }

  .home-lgs-banner-copy p {
    font-size: 12px;
  }

  .home-lgs-banner-action {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-lgs-banner-action > a {
    width: 100%;
  }
}
