:root {
  --color-text: #17130f;
  --color-muted: #6b6f68;
  --color-background: #f7f5ef;
  --color-surface: #ffffff;
  --color-primary: #0f963d;
  --color-primary-dark: #06702c;
  --color-forest: #07351d;
  --color-mint: #e8f5ec;
  --color-gold: #c7962e;
  --color-coral: #b75d35;
  --color-border: #dfdacd;
  --shadow-soft: 0 28px 80px rgba(23, 19, 15, 0.14);
  --shadow-card: 0 18px 46px rgba(23, 19, 15, 0.1);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    linear-gradient(90deg, rgba(199, 150, 46, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 150, 61, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf6 0%, var(--color-background) 42%, #f1f5ee 100%);
  background-size: 36px 36px, 36px 36px, auto;
  font-family: Arial, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-version-badge {
  position: fixed;
  right: 8px;
  bottom: 6px;
  z-index: 1000;
  color: rgba(23, 19, 15, 0.42);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.site-header,
.hero-heading,
.hero,
.exam-logo-section,
.trust-strip,
.trust-photo-section,
.pathway-section,
.diagnostic-section,
.section,
.feature-row,
.proof-section,
.teachers-section,
.testimonials-section,
.faq-section,
.blog-section,
.video-section,
.contact-section,
.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  padding-block: 22px;
}

.site-header::after {
  position: absolute;
  right: 24px;
  bottom: 8px;
  width: 124px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(199, 150, 46, 0.75));
}

.brand,
.hero-actions,
.hero-checklist,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: auto;
  height: 92px;
  max-width: min(400px, calc(100vw - 112px));
  object-fit: contain;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(223, 218, 205, 0.78);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(23, 19, 15, 0.06);
  backdrop-filter: blur(12px);
}

.top-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--color-muted);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.top-nav a::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(199, 150, 46, 0.12);
}

.top-nav a:hover {
  color: var(--color-primary);
  background: var(--color-mint);
  transform: translateY(-1px);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 19, 15, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(199, 150, 46, 0.72);
  box-shadow: 0 16px 34px rgba(23, 19, 15, 0.12);
  transform: translateY(-1px);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% - 8px);
  right: 24px;
  z-index: 10;
  display: grid;
  width: min(300px, calc(100vw - 48px));
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 241, 0.96));
  border: 1px solid rgba(199, 150, 46, 0.22);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.site-header.is-menu-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav {
  display: grid;
  gap: 6px;
  font-size: 0.93rem;
}

.site-nav a,
.nav-button {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 8px 10px;
  color: var(--color-muted);
  border-radius: 7px;
}

.site-nav a::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  color: var(--color-primary);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 236, 0.92));
  border: 1px solid rgba(15, 150, 61, 0.2);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:nth-child(1)::before {
  content: "01";
  color: var(--color-primary);
  border-color: rgba(15, 150, 61, 0.24);
}

.site-nav a:nth-child(2)::before {
  content: "02";
  color: var(--color-coral);
  border-color: rgba(183, 93, 53, 0.24);
  border-radius: 50%;
}

.site-nav a:nth-child(3)::before {
  content: "03";
  color: #135e96;
  border-color: rgba(19, 94, 150, 0.24);
  border-radius: 999px;
}

.site-nav a:nth-child(4)::before {
  content: "04";
  color: var(--color-gold);
  border-color: rgba(199, 150, 46, 0.34);
}

.site-nav a:nth-child(5)::before {
  content: "05";
  color: #313042;
  border-color: rgba(49, 48, 66, 0.24);
  border-radius: 10px 3px 10px 3px;
}

.site-nav a:hover {
  background: var(--color-mint);
  color: var(--color-primary);
}

.site-nav a:hover::before,
.site-nav a.is-active::before {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-color: rgba(15, 150, 61, 0.58);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  background: var(--color-mint);
  box-shadow: inset 3px 0 0 var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 7px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(15, 150, 61, 0.25);
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav-button::after {
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-panel .nav-button {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 46px;
  min-height: 650px;
  position: relative;
  padding-block: 26px 44px;
}

.hero-heading {
  padding-block: 36px 4px;
}

.hero-heading h1 {
  max-width: none;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  line-height: 1.02;
  white-space: nowrap;
}

.hero-copy {
  max-width: 620px;
}

.hero-status-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 430px;
  margin-bottom: 16px;
  justify-items: start;
}

.hero-status-logos img {
  width: 100%;
  max-width: 210px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(23, 19, 15, 0.08));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 9px 13px;
  color: var(--color-forest);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(232, 245, 236, 0.78));
  border: 1px solid rgba(15, 150, 61, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(15, 150, 61, 0.08);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.eyebrow::before {
  width: 8px;
  min-width: 8px;
  height: 8px;
  content: "";
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(15, 150, 61, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 5.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 3rem;
  line-height: 1.08;
}

.hero-course-title {
  font-size: 3.75rem;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-actions .button {
  min-width: 200px;
  min-height: 68px;
  padding: 18px 32px;
  font-size: 1.16rem;
  font-weight: 600;
}

.button-arrow,
.button-calendar {
  gap: 14px;
}

.button-arrow::after {
  width: 11px;
  height: 11px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button-calendar::after {
  width: 23px;
  height: 23px;
  content: "";
  background-color: currentColor;
  mask:
    url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1.5A2.5 2.5 0 0 1 22 6.5v12A2.5 2.5 0 0 1 19.5 21h-15A2.5 2.5 0 0 1 2 18.5v-12A2.5 2.5 0 0 1 4.5 4H6V3a1 1 0 0 1 1-1Zm12.5 8h-15v8.5a.5.5 0 0 0 .5.5h14.5a.5.5 0 0 0 .5-.5V10ZM5 6a.5.5 0 0 0-.5.5V8h15V6.5A.5.5 0 0 0 19 6H5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1.5A2.5 2.5 0 0 1 22 6.5v12A2.5 2.5 0 0 1 19.5 21h-15A2.5 2.5 0 0 1 2 18.5v-12A2.5 2.5 0 0 1 4.5 4H6V3a1 1 0 0 1 1-1Zm12.5 8h-15v8.5a.5.5 0 0 0 .5.5h14.5a.5.5 0 0 0 .5-.5V10ZM5 6a.5.5 0 0 0-.5.5V8h15V6.5A.5.5 0 0 0 19 6H5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 18px 34px rgba(15, 150, 61, 0.26);
}

.button-primary:hover,
.nav-button:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 20px 42px rgba(15, 150, 61, 0.28);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.72);
  border-color: #cfd6e4;
}

.button-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 14px 28px rgba(23, 19, 15, 0.08);
  transform: translateY(-1px);
}

.button-consultation {
  color: #ffffff;
  background: linear-gradient(135deg, #ef8f22 0%, #d86818 100%);
  border-color: rgba(216, 104, 24, 0.72);
  box-shadow: 0 18px 34px rgba(216, 104, 24, 0.24);
}

.button-consultation:hover {
  color: #ffffff;
  background: #d86818;
  box-shadow: 0 20px 42px rgba(216, 104, 24, 0.28);
  transform: translateY(-1px);
}

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

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 9px 14px 9px 10px;
  color: var(--color-muted);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 245, 236, 0.88));
  border: 1px solid rgba(15, 150, 61, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(15, 150, 61, 0.12);
  font-size: 0.86rem;
}

.hero-rating strong {
  color: var(--color-forest);
}

.rating-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(15, 150, 61, 0.18);
  font-size: 0.92rem;
}

.rating-stars {
  color: var(--color-gold);
  font-size: 0.82rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-checklist li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: #2c372f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-checklist li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(15, 150, 61, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(199, 150, 46, 0.24);
  border-radius: 0 0 0 120px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86) 0%, rgba(232, 245, 236, 0.92) 42%, rgba(7, 53, 29, 0.12) 100%),
    #f9f7ef;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 53, 29, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%, rgba(7, 53, 29, 0.2));
  z-index: 2;
  pointer-events: none;
}

.hero-visual::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(199, 150, 46, 0.34);
  border-radius: 0 0 0 96px;
  z-index: 3;
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03) brightness(0.98);
  z-index: 1;
}

.score-card {
  position: absolute;
  z-index: 4;
  width: 144px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 218, 205, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 19, 15, 0.14);
  backdrop-filter: blur(10px);
}

.exam-score-badge {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
}

.score-card span,
.score-card small {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.score-card strong {
  display: block;
  margin: 4px 0 2px;
  color: #111111;
  font-size: 2rem;
  line-height: 1;
}

.score-card .score-exam {
  color: var(--color-primary);
  font-size: 1.48rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.score-card .score-exam-ielts {
  color: #d8132f;
}

.score-card .score-exam-toefl {
  color: #1269b0;
}

.score-card .score-exam-gmat {
  color: #0f963d;
}

.score-card-top {
  top: 70px;
  left: 54px;
}

.score-card-left {
  top: 236px;
  left: 70px;
}

.score-card-bottom {
  right: 70px;
  bottom: 72px;
}

.trust-strip {
  position: relative;
  padding-block: 24px 28px;
  margin-bottom: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 238, 0.92));
  border: 1px solid rgba(223, 218, 205, 0.95);
  border-top: 4px solid var(--color-primary);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(23, 19, 15, 0.08);
}

.exam-logo-section {
  padding-block: 28px 42px;
}

.section-heading-center {
  max-width: none;
  margin-bottom: 26px;
  text-align: center;
}

.section-heading-center h2 {
  color: #579642;
  font-size: clamp(1.75rem, 2.7vw, 3rem);
  white-space: nowrap;
}

.cambridge-qualification-badge {
  display: inline-flex;
  max-width: 236px;
  margin-top: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(223, 218, 205, 0.8);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(23, 19, 15, 0.07);
}

.cambridge-qualification-badge img {
  width: 100%;
  height: auto;
}

.exam-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 16px;
  align-items: start;
}

.exam-logo-card {
  position: relative;
  display: grid;
  gap: 10px;
  color: #006a27;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.exam-logo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(23, 19, 15, 0.16);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 9px rgba(23, 19, 15, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.exam-logo-card:hover img {
  background: #fffdf7;
  border-color: rgba(15, 150, 61, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 5px 12px rgba(23, 19, 15, 0.18),
    0 0 0 3px rgba(15, 150, 61, 0.06);
  transform: translateY(-1px);
}

.exam-logo-card span {
  min-height: 32px;
  text-transform: uppercase;
}

.trust-strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.trust-kicker,
.trust-card strong,
.trust-card span {
  display: block;
}

.trust-kicker {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-strip h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.05;
}

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

.trust-card {
  position: relative;
  min-height: 126px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 218, 205, 0.9);
  border-radius: 8px;
  overflow: hidden;
}

.trust-card::after {
  position: absolute;
  right: 10px;
  bottom: 6px;
  color: rgba(15, 150, 61, 0.07);
  content: attr(data-index);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.trust-card:nth-child(1)::after {
  content: "01";
}

.trust-card:nth-child(2)::after {
  content: "02";
}

.trust-card:nth-child(3)::after {
  content: "03";
}

.trust-card:nth-child(4)::after {
  content: "04";
}

.trust-card:nth-child(5)::after {
  content: "05";
}

.trust-strip .trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--color-primary);
  background: rgba(15, 150, 61, 0.08);
  border: 1px solid rgba(15, 150, 61, 0.14);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-card strong {
  margin-bottom: 4px;
  color: var(--color-forest);
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  line-height: 1;
}

.trust-card span {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.trust-photo-section {
  position: relative;
  margin-bottom: 42px;
  padding: 0 32px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(94, 55, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf9ff 0%, #ffffff 54%, #fbfaf6 100%);
  border: 1px solid rgba(223, 218, 205, 0.9);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(23, 19, 15, 0.12);
}

.trust-photo-hero {
  position: relative;
  min-height: 520px;
  margin-inline: -32px;
  overflow: hidden;
  border-radius: 18px 18px 50% 50% / 18px 18px 12% 12%;
}

.trust-photo-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.03);
}

.trust-photo-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(94, 55, 216, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 48%);
}

.trust-photo-icons {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 30px;
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.94);
}

.trust-photo-icons span {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

.trust-photo-icon-share::before,
.trust-photo-icon-share::after,
.trust-photo-icon-share {
  border-color: currentColor;
}

.trust-photo-icon-share::before {
  position: absolute;
  inset: 8px 9px 9px 9px;
  content: "";
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(-30deg);
}

.trust-photo-icon-share::after {
  position: absolute;
  inset: 4px;
  content: "";
  background:
    radial-gradient(circle at 8px 10px, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 30px 7px, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 30px 31px, currentColor 0 4px, transparent 5px);
}

.trust-photo-icon-sliders {
  background:
    linear-gradient(currentColor 0 0) 8px 10px / 28px 4px no-repeat,
    linear-gradient(currentColor 0 0) 8px 20px / 28px 4px no-repeat,
    linear-gradient(currentColor 0 0) 8px 30px / 28px 4px no-repeat,
    radial-gradient(circle at 16px 12px, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 28px 22px, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 20px 32px, currentColor 0 4px, transparent 5px);
}

.trust-photo-icon-search::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  content: "";
  border: 5px solid currentColor;
  border-radius: 50%;
}

.trust-photo-icon-search::after {
  position: absolute;
  right: 4px;
  bottom: 5px;
  width: 18px;
  height: 5px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}

.trust-photo-content {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 44px;
  align-items: center;
  padding-top: 42px;
}

.trust-photo-copy {
  max-width: 620px;
}

.trust-photo-copy h2 {
  margin-bottom: 22px;
  color: #101522;
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  line-height: 0.95;
}

.trust-photo-copy h2 span {
  display: block;
  color: #5e37d8;
}

.trust-photo-eyebrow {
  margin-bottom: 18px;
  color: #5e37d8;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-photo-copy p:not(.trust-photo-eyebrow) {
  max-width: 520px;
  color: #3e4441;
  font-size: 1.12rem;
}

.trust-photo-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-photo-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2f352f;
  font-weight: 700;
}

.trust-photo-list li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  content: "✓";
  color: #ffffff;
  background: #5e37d8;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.trust-photo-stats article {
  min-height: 118px;
  padding: 22px 24px 18px;
  background: #ffffff;
  border: 1px solid rgba(223, 218, 205, 0.82);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(23, 19, 15, 0.08);
}

.trust-photo-stats strong,
.trust-photo-stats span {
  display: block;
}

.trust-photo-stats strong {
  color: #101522;
  font-size: 2.05rem;
  line-height: 1;
}

.trust-photo-stats span {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.trust-photo-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.trust-photo-actions .button {
  min-height: 64px;
}

.pathway-section {
  padding-top: 42px;
}

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

.step-card {
  min-height: 220px;
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-forest), var(--color-primary));
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(15, 150, 61, 0.22);
}

.step-card h3,
.diagnostic-card h3,
.teacher-card h3,
.testimonial-card h3 {
  font-size: 1.18rem;
}

.diagnostic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 14px;
  padding-block: 42px;
  background:
    linear-gradient(135deg, rgba(7, 53, 29, 0.98), rgba(15, 150, 61, 0.86)),
    var(--color-forest);
  border: 1px solid rgba(199, 150, 46, 0.34);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.diagnostic-section .eyebrow {
  color: #f1d79a;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(241, 215, 154, 0.34);
  box-shadow: none;
}

.diagnostic-section .eyebrow::before,
.exam-detail-dark .eyebrow::before,
.exam-detail-purple .eyebrow::before {
  background: var(--color-gold);
  box-shadow: 0 0 0 5px rgba(199, 150, 46, 0.16);
}

.exam-detail-dark .eyebrow,
.exam-detail-purple .eyebrow {
  color: #f1d79a;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(241, 215, 154, 0.28);
  box-shadow: none;
}

.diagnostic-copy h2,
.diagnostic-copy p {
  color: #ffffff;
}

.diagnostic-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

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

.diagnostic-section .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.diagnostic-section .button-secondary:hover {
  color: #ffffff;
  border-color: rgba(241, 215, 154, 0.82);
}

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

.diagnostic-card {
  min-height: 220px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.7);
}

.diagnostic-card strong,
.diagnostic-card span {
  display: block;
}

.diagnostic-card strong {
  margin-bottom: 12px;
  color: var(--color-forest);
  font-size: 2.2rem;
  line-height: 1;
}

.diagnostic-card span {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 24px 42px;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.section,
.feature-row,
.image-showcase,
.proof-section,
.pathway-section,
.diagnostic-section,
.teachers-section,
.testimonials-section,
.faq-section,
.blog-section,
.video-section,
.contact-section {
  padding-block: 56px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
}

.benefit-panel {
  display: grid;
  gap: 16px;
}

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

.benefit-panel article,
.exam-card,
.feature-row article,
.proof-grid article,
.step-card,
.diagnostic-card,
.teacher-card,
.testimonial-card,
.blog-card,
.video-card,
.price-card,
.content-card,
.consultation-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(23, 19, 15, 0.07);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.benefit-panel article::before,
.exam-card::before,
.feature-row article::before,
.proof-grid article::before,
.step-card::before,
.diagnostic-card::before,
.teacher-card::before,
.testimonial-card::before,
.blog-card::before,
.video-card::before,
.price-card::before,
.content-card::before,
.consultation-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  opacity: 0.64;
}

.benefit-panel article:hover,
.exam-card:hover,
.feature-row article:hover,
.proof-grid article:hover,
.step-card:hover,
.diagnostic-card:hover,
.teacher-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.video-card:hover,
.price-card:hover,
.content-card:hover,
.consultation-card:hover {
  border-color: rgba(199, 150, 46, 0.38);
  box-shadow: 0 22px 52px rgba(23, 19, 15, 0.11);
  transform: translateY(-3px);
}

.benefit-panel article {
  padding: 26px;
}

.content-card {
  min-height: 180px;
  padding: 24px;
}

.content-card p {
  color: var(--color-muted);
}

.status-badge {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 236, 0.72));
  border: 1px solid rgba(199, 150, 46, 0.24);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(23, 19, 15, 0.08);
}

.status-badge img {
  width: min(100%, 330px);
  height: auto;
}

.status-badge span {
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-panel h3,
.content-card h3,
.teacher-card h3,
.consultation-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-panel h3::before,
.content-card h3::before,
.teacher-card h3::before,
.consultation-card h3::before {
  width: 8px;
  min-width: 8px;
  height: 24px;
  content: "";
  background: linear-gradient(180deg, var(--color-primary), var(--color-gold));
  border-radius: 999px;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: #ffffff;
  background: var(--color-coral);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.mini-label-positive {
  background: var(--color-primary);
}

.exam-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(23, 19, 15, 0.08);
}

.exam-card {
  min-height: 168px;
  padding: 20px 16px 18px;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

.exam-card p,
.feature-row p,
.proof-section p,
.proof-grid span,
.step-card p,
.diagnostic-section p,
.diagnostic-card p,
.teacher-card p,
.testimonial-card p,
.price-card p,
.contact-section p,
.consultation-card li,
.benefit-panel p {
  color: var(--color-muted);
}

.exam-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  margin-bottom: 16px;
  padding-inline: 6px;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 9px 18px rgba(23, 19, 15, 0.12);
}

.exam-card h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
}

.exam-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.exam-card::before {
  display: none;
}

.exam-card:hover {
  border-color: rgba(15, 150, 61, 0.28);
  box-shadow: 0 14px 28px rgba(23, 19, 15, 0.08);
}

.exam-card:hover h3 {
  color: var(--color-primary);
}

.exam-detail-hero,
.exam-detail-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}

.exam-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: end;
  min-height: 540px;
  margin-top: 28px;
  padding-block: 76px 54px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 245, 236, 0.82)),
    var(--color-surface);
  border: 1px solid rgba(199, 150, 46, 0.28);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.exam-detail-hero::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(199, 150, 46, 0.28);
  border-radius: 10px;
  pointer-events: none;
}

.exam-detail-hero::after {
  position: absolute;
  right: -30px;
  bottom: -58px;
  color: rgba(15, 150, 61, 0.06);
  content: "PREP";
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.exam-detail-hero > * {
  position: relative;
  z-index: 1;
}

.exam-detail-hero h1 {
  max-width: 780px;
  margin-top: 20px;
  font-size: 4.6rem;
}

.exam-detail-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.exam-score-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(223, 218, 205, 0.9);
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(23, 19, 15, 0.12);
  backdrop-filter: blur(12px);
}

.exam-score-panel span,
.exam-score-panel strong {
  display: block;
}

.exam-score-panel span {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.exam-score-panel strong {
  margin-bottom: 12px;
  color: var(--color-forest);
  font-size: 2rem;
  line-height: 1.08;
}

.exam-score-panel p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.exam-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-block: 32px 70px;
}

.exam-detail-red {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 226, 218, 0.86));
}

.exam-detail-blue {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(221, 237, 249, 0.88));
}

.exam-detail-dark {
  color: #ffffff;
  background: linear-gradient(135deg, #17130f, #07351d);
}

.exam-detail-purple {
  color: #ffffff;
  background: linear-gradient(135deg, #313042, #07351d);
}

.exam-detail-gold {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 237, 204, 0.9));
}

.exam-detail-green {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 236, 0.94));
}

.exam-detail-dark p:not(.eyebrow),
.exam-detail-purple p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.exam-detail-dark .exam-score-panel,
.exam-detail-purple .exam-score-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.exam-detail-dark .exam-score-panel strong,
.exam-detail-purple .exam-score-panel strong {
  color: #ffffff;
}

.image-showcase {
  position: relative;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
}

.showcase-feature,
.showcase-card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(199, 150, 46, 0.24);
  border-radius: 10px;
  box-shadow: 0 22px 56px rgba(23, 19, 15, 0.11);
}

.showcase-feature {
  min-height: 520px;
}

.showcase-feature img,
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.01);
}

.showcase-card img.showcase-image-contain {
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(232, 245, 236, 0.92), rgba(255, 255, 255, 0.82));
  transform: none;
}

.showcase-feature::before,
.showcase-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 53, 29, 0.06), rgba(7, 53, 29, 0.72)),
    linear-gradient(90deg, rgba(15, 150, 61, 0.24), transparent 52%);
  z-index: 1;
}

.showcase-feature::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(199, 150, 46, 0.78), transparent);
  z-index: 2;
}

.showcase-overlay {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 28px;
  z-index: 3;
  max-width: 560px;
  color: #ffffff;
}

.showcase-overlay span,
.showcase-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f1d79a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-overlay h3 {
  margin-bottom: 10px;
  font-size: 2.25rem;
}

.showcase-overlay p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.showcase-stack {
  display: grid;
  gap: 18px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-height: 158px;
}

.showcase-card img {
  min-height: 158px;
}

.showcase-card div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 158px;
  padding: 18px;
  color: #ffffff;
}

.showcase-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.exam-red {
  background: #b75d35;
}

.exam-blue {
  background: #135e96;
}

.exam-dark {
  background: #17130f;
}

.exam-purple {
  background: #313042;
}

.exam-orange {
  background: var(--color-gold);
}

.exam-green {
  background: var(--color-primary);
}

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

.feature-row article {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--color-primary);
  background: rgba(232, 245, 236, 0.88);
  border: 1px solid rgba(15, 150, 61, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

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

.price-card {
  min-height: 210px;
  padding: 22px;
}

.price-card span,
.price-card strong {
  display: block;
}

.price-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card span::before {
  width: 8px;
  min-width: 8px;
  height: 8px;
  content: "";
  background: var(--color-gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

.price-card strong {
  margin-bottom: 12px;
  color: var(--color-forest);
  font-size: 1.8rem;
  line-height: 1.1;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  padding: 20px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 6px;
}

.proof-grid strong {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-grid strong::before {
  width: 20px;
  min-width: 20px;
  height: 20px;
  content: "";
  background:
    linear-gradient(135deg, rgba(15, 150, 61, 0.18), rgba(199, 150, 46, 0.18));
  border: 1px solid rgba(15, 150, 61, 0.34);
  border-radius: 6px;
  box-shadow: inset 0 0 0 5px #ffffff;
}

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

.teacher-card,
.testimonial-card {
  min-height: 260px;
  padding: 24px;
}

.teacher-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(199, 150, 46, 0.9), rgba(15, 150, 61, 0.95)),
    var(--color-primary);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(23, 19, 15, 0.16);
}

.teacher-card small {
  display: block;
  margin-top: 18px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
}

.testimonials-section {
  padding-top: 28px;
}

.testimonial-rating {
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0;
}

.testimonial-card p {
  min-height: 96px;
  font-size: 1.02rem;
}

.testimonial-card strong {
  display: block;
  color: var(--color-forest);
}

.faq-section {
  padding-top: 36px;
}

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

.faq-list details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 19, 15, 0.06);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  width: 8px;
  min-width: 8px;
  height: 8px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(199, 150, 46, 0.14);
}

.faq-list summary::after {
  margin-left: auto;
  content: "+";
  color: var(--color-primary);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--color-muted);
}

.blog-section {
  padding-top: 28px;
}

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

.blog-card,
.video-card {
  overflow: hidden;
}

.blog-card {
  min-height: 430px;
  padding: 0 0 22px;
}

.blog-visual,
.video-preview {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 53, 29, 0.94), rgba(15, 150, 61, 0.82));
}

.blog-visual::before,
.blog-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(241, 215, 154, 0.36);
  border-radius: 50%;
}

.blog-visual::before {
  inset: 24px;
}

.blog-visual::after {
  right: -36px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  background: rgba(241, 215, 154, 0.16);
}

.blog-visual span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 1;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.blog-visual-ielts {
  background:
    linear-gradient(135deg, rgba(130, 18, 34, 0.92), rgba(15, 150, 61, 0.84));
}

.blog-visual-score {
  background:
    linear-gradient(135deg, rgba(15, 150, 61, 0.95), rgba(199, 150, 46, 0.82));
}

.blog-visual-admission {
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.92), rgba(15, 150, 61, 0.82));
}

.blog-card time,
.blog-card h3,
.blog-card p,
.blog-card small,
.video-card h3,
.video-card p {
  margin-inline: 22px;
}

.blog-card time {
  display: block;
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h3,
.video-card h3 {
  font-size: 1.22rem;
}

.blog-card p,
.video-card p {
  color: var(--color-muted);
}

.blog-card small {
  display: block;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.video-section {
  padding-top: 22px;
}

.video-card {
  min-height: 360px;
  padding-bottom: 24px;
}

.video-preview {
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(23, 19, 15, 0.74), rgba(7, 53, 29, 0.82)),
    radial-gradient(circle at 72% 22%, rgba(241, 215, 154, 0.34), transparent 34%);
}

.video-preview::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(241, 215, 154, 0.32);
  border-radius: 8px;
}

.play-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: #ff2d20;
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(23, 19, 15, 0.28);
}

.play-icon::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  content: "";
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #ffffff;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  margin-bottom: 42px;
  background:
    linear-gradient(135deg, #ffffff 0%, #fbfaf6 54%, #eef7f0 100%);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(23, 19, 15, 0.08);
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), transparent);
}

.contact-copy {
  max-width: 720px;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.contact-actions span {
  color: var(--color-muted);
  font-size: 0.94rem;
}

.consultation-card {
  padding: 24px;
  background: #ffffff;
}

.consultation-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.consultation-card li {
  position: relative;
  padding-left: 20px;
}

.consultation-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--color-gold);
  border-radius: 999px;
}

.contact-list strong {
  color: var(--color-text);
}

.site-footer {
  margin-bottom: 24px;
  padding: 34px;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(135deg, rgba(7, 53, 29, 0.98), rgba(15, 150, 61, 0.9));
  border: 1px solid rgba(241, 215, 154, 0.22);
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(23, 19, 15, 0.16);
  font-size: 0.95rem;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.footer-kicker {
  margin-bottom: 10px;
  color: #f1d79a;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  max-width: 660px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact-list a,
.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-list a:hover,
.footer-links a:hover {
  color: #f1d79a;
}

.footer-actions-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.footer-cta {
  display: grid;
  gap: 12px;
}

.footer-cta .button {
  width: 100%;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  background: rgba(241, 215, 154, 0.18);
  border-color: rgba(241, 215, 154, 0.56);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header {
    gap: 18px;
  }

  .hero,
  .split-section,
  .showcase-layout,
  .proof-section,
  .diagnostic-section,
  .exam-detail-hero,
  .contact-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .footer-actions-panel {
    max-width: 520px;
  }

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

  .hero-heading h1 {
    font-size: 2rem;
  }

  .brand-logo {
    height: 78px;
    max-width: min(340px, calc(100vw - 104px));
  }

  .top-nav {
    display: none;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

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

  .trust-strip,
  .trust-photo-section,
  .exam-logo-grid,
  .pathway-grid,
  .exam-grid,
  .diagnostic-grid,
  .price-grid,
  .page-grid,
  .teacher-grid,
  .testimonials-grid,
  .blog-grid,
  .video-grid,
  .exam-detail-grid,
  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-photo-content {
    grid-template-columns: 1fr;
  }

  .trust-photo-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-photo-actions {
    max-width: 720px;
  }

  .exam-detail-hero h1 {
    font-size: 4rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-heading,
  .page-hero,
  .exam-detail-hero,
  .exam-detail-grid,
  .hero,
  .exam-logo-section,
  .trust-strip,
  .trust-photo-section,
  .pathway-section,
  .diagnostic-section,
  .section,
  .feature-row,
  .proof-section,
  .teachers-section,
  .testimonials-section,
  .faq-section,
  .blog-section,
  .video-section,
  .contact-section,
  .site-footer {
    padding-inline: 18px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-header::after {
    display: none;
  }

  .brand-logo {
    height: 68px;
    max-width: min(285px, calc(100vw - 88px));
  }

  .menu-panel {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .nav-button,
  .button {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 62px;
    padding: 16px 20px;
    font-size: 1.06rem;
  }

  .site-footer {
    padding-block: 28px;
    border-radius: 12px;
  }

  .footer-contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-bottom {
    display: grid;
    gap: 14px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-heading {
    padding-block: 18px 0;
  }

  .hero-heading h1 {
    font-size: 1.55rem;
    line-height: 1.08;
    white-space: normal;
  }

  .hero-status-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-width: 240px;
    margin-bottom: 16px;
  }

  .hero-status-logos img {
    max-width: 116px;
  }

  .hero-course-title {
    font-size: 2.45rem;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 0 0 0 70px;
  }

  .hero-visual::before {
    inset: 14px;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .score-card {
    width: 118px;
    padding: 12px;
  }

  .score-card strong {
    font-size: 1.45rem;
  }

  .score-card-top {
    top: 24px;
    left: 14px;
  }

  .score-card-left {
    top: 136px;
    left: 12px;
  }

  .score-card-bottom {
    right: 14px;
    bottom: 24px;
  }

  .trust-strip,
  .trust-photo-section,
  .exam-logo-grid,
  .pathway-grid,
  .exam-grid,
  .diagnostic-grid,
  .price-grid,
  .page-grid,
  .teacher-grid,
  .testimonials-grid,
  .blog-grid,
  .video-grid,
  .exam-detail-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .exam-logo-grid,
  .pathway-grid,
  .exam-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .trust-strip-head {
    display: block;
    margin-bottom: 16px;
  }

  .trust-kicker {
    margin-bottom: 8px;
  }

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

  .trust-photo-section {
    padding: 0 18px 22px;
    border-radius: 12px;
  }

  .trust-photo-hero {
    min-height: 360px;
    margin-inline: -18px;
    border-radius: 12px 12px 42% 42% / 12px 12px 10% 10%;
  }

  .trust-photo-hero img {
    min-height: 360px;
  }

  .trust-photo-icons {
    top: 16px;
    right: 16px;
    gap: 14px;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .trust-photo-content {
    gap: 24px;
    padding-top: 28px;
  }

  .trust-photo-copy h2 {
    font-size: 3.15rem;
  }

  .trust-photo-copy p:not(.trust-photo-eyebrow) {
    font-size: 0.98rem;
  }

  .trust-photo-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .trust-photo-stats article {
    min-height: 104px;
    padding: 18px 14px;
  }

  .trust-photo-stats strong {
    font-size: 1.55rem;
  }

  .trust-photo-stats span {
    font-size: 0.84rem;
  }

  .trust-photo-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading-center h2 {
    white-space: normal;
  }

  .cambridge-qualification-badge {
    max-width: 190px;
    margin-top: 12px;
    padding: 6px;
  }

  .exam-logo-card {
    font-size: 0.78rem;
  }

  .exam-logo-card img {
    padding: 6px;
  }

  .trust-strip {
    margin-bottom: 28px;
  }

  .trust-card {
    min-height: 118px;
    padding: 16px 14px;
  }

  .trust-strip .trust-mark {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .trust-card strong {
    font-size: 1.42rem;
  }

  .trust-card span {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .trust-card::after {
    right: 10px;
    bottom: 8px;
    font-size: 3.2rem;
  }

  .step-card,
  .exam-card {
    min-height: 0;
    padding: 16px 12px;
  }

  .step-card span {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
  }

  .exam-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }

  .step-card h3,
  .exam-card h3 {
    font-size: 1rem;
  }

  .step-card p,
  .exam-card p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .exam-detail-hero {
    margin-top: 8px;
    padding-block: 48px 34px;
    border-radius: 10px;
  }

  .exam-detail-hero::before {
    inset: 14px;
  }

  .exam-detail-hero::after {
    right: 12px;
    bottom: -18px;
    font-size: 4.2rem;
  }

  .exam-detail-hero h1 {
    font-size: 2.85rem;
  }

  .diagnostic-section {
    border-radius: 10px;
  }

  .showcase-feature {
    min-height: 420px;
  }

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

  .showcase-card img {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
