/* Public surfaces extras */
.sty-catalog__card { display: flex; flex-direction: column; }
.sty-catalog__media { height: 160px; overflow: hidden; background: var(--sty-bg); }
.sty-catalog__media img { width: 100%; height: 100%; object-fit: cover; }
.sty-catalog__media--flag {
  display: grid;
  place-items: center;
  font-size: 64px;
  height: 140px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(37,99,235,.12), transparent 60%),
    #f8fafc;
}
.sty-catalog__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sty-catalog__body h3 { font-size: 22px; margin: 0; }
.sty-catalog__body p { color: var(--sty-muted); margin: 0 0 8px; font-size: 14px; flex: 1; }

/* Country cards — Immigway style */
.sty-country-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.sty-country-card {
  background: #fff;
  border: 1px solid var(--sty-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(11, 20, 55, 0.06);
  transition: transform .25s, box-shadow .25s;
}
.sty-country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sty-shadow);
}
.sty-country-card__media {
  /* no overflow:hidden — flag must hang over the white body (full circle) */
  position: relative;
  height: 168px;
  background: #e8eef7;
  z-index: 1;
}
.sty-country-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s;
}
.sty-country-card:hover .sty-country-card__media img {
  transform: scale(1.05);
}
.sty-country-card__flag {
  position: absolute;
  left: 16px;
  bottom: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  border: 3px solid #fff;
  z-index: 3;
  /* soft ring + bottom-weighted shadow so white flags stay readable on white */
  box-shadow:
    0 0 0 1px rgba(11, 20, 55, 0.06),
    0 4px 8px rgba(11, 20, 55, 0.12),
    0 10px 20px -4px rgba(11, 20, 55, 0.28);
}
.sty-country-card__body {
  padding: 30px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sty-country-card__body h3 {
  font-family: var(--sty-display);
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--sty-navy);
}
.sty-country-card__body h4 {
  font-family: var(--sty-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--sty-blue) !important;
  margin: 0 0 12px !important;
  line-height: 1.35 !important;
}
.sty-country-card__body > p {
  font-size: 13.5px;
  color: var(--sty-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}
.sty-country-card__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.sty-country-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sty-navy);
  margin-bottom: 7px;
  font-weight: 500;
}
.sty-country-card__list li i {
  color: var(--sty-blue);
  font-size: 11px;
}
.sty-country-card__cta {
  margin-top: auto;
  width: 100%;
  border-radius: 8px !important;
  justify-content: center;
}
.sty-country-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sty-country-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.sty-country-card__body h3 a:hover {
  color: var(--sty-blue);
}
a.sty-country-card__media {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.sty-catalog__media {
  display: block;
}
.sty-catalog__body h3 a {
  color: inherit;
  text-decoration: none;
}

/* —— Detail pages (pays / université) —— */
.sty-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 18px 0 8px;
  font-size: 13px;
  color: var(--sty-muted);
}
.sty-breadcrumb a {
  color: var(--sty-blue);
  text-decoration: none;
  font-weight: 600;
}
.sty-detail__hero {
  position: relative;
  color: #fff;
  margin-bottom: 8px;
  min-height: 360px;
}
.sty-detail__hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sty-detail__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sty-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,20,55,.35) 0%, rgba(11,20,55,.82) 100%);
}
.sty-detail__hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
  max-width: 760px;
}
.sty-detail__flag {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  font-size: 28px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.sty-pill--light {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.sty-detail__hero h1 {
  font-family: var(--sty-display);
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0 14px;
  color: #fff;
}
.sty-detail__lead {
  font-size: 16px;
  line-height: 1.65;
  opacity: .92;
  margin: 0 0 22px;
  max-width: 640px;
}
.sty-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sty-btn--on-dark {
  background: transparent !important;
  border-color: rgba(255,255,255,.55) !important;
  color: #fff !important;
}
.sty-btn--on-dark:hover {
  background: rgba(255,255,255,.12) !important;
}
.sty-section--tight {
  padding-top: 12px;
  padding-bottom: 8px;
}
.sty-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.sty-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sty-navy);
}
.sty-highlights li i {
  color: var(--sty-blue);
  font-size: 12px;
}
.sty-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sty-benefit-card {
  background: #fff;
  border: 1px solid var(--sty-border);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(11, 20, 55, 0.04);
}
.sty-benefit-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--sty-blue);
  margin-bottom: 12px;
}
.sty-benefit-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--sty-navy);
}
.sty-benefit-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--sty-muted);
}
.sty-univ-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--sty-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 10px 28px rgba(11, 20, 55, 0.05);
}
.sty-univ-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sty-shadow);
}
.sty-univ-card__media {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #e8eef7;
}
.sty-univ-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sty-univ-card__logo {
  position: absolute;
  right: 12px;
  bottom: -18px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 6px 16px rgba(11,20,55,.15);
  overflow: hidden;
}
.sty-univ-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sty-univ-card__body {
  padding: 28px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.sty-univ-card__body h3 {
  margin: 0;
  font-size: 18px;
  color: var(--sty-navy);
}
.sty-univ-card__meta {
  margin: 0;
  font-size: 13px;
  color: var(--sty-muted);
}
.sty-univ-card__tag {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--sty-navy);
  opacity: .85;
}
.sty-univ-card__cta {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sty-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* University hero */
.sty-univ-hero {
  margin-bottom: 8px;
}
.sty-univ-hero__banner {
  height: 280px;
  overflow: hidden;
  background: #132743;
}
.sty-univ-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sty-univ-hero__panel {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}
.sty-univ-hero__logo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--sty-border);
  box-shadow: 0 12px 28px rgba(11,20,55,.12);
  overflow: hidden;
  flex-shrink: 0;
  padding: 8px;
}
.sty-univ-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sty-univ-hero__text {
  background: #fff;
  border: 1px solid var(--sty-border);
  border-radius: 14px;
  padding: 20px 22px;
  flex: 1;
  box-shadow: 0 12px 28px rgba(11,20,55,.06);
}
.sty-univ-hero__text h1 {
  font-family: var(--sty-display);
  font-size: clamp(26px, 4vw, 36px);
  margin: 10px 0 6px;
  color: var(--sty-navy);
}
.sty-univ-hero__tagline {
  margin: 0 0 14px;
  color: var(--sty-muted);
  font-size: 15px;
}
.sty-univ-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.sty-prose p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--sty-navy);
  margin: 0;
}
.sty-program-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sty-program-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--sty-border);
  border-radius: 12px;
  padding: 16px 18px;
}
.sty-program-row h3 {
  margin: 8px 0 4px;
  font-size: 17px;
  color: var(--sty-navy);
}
.sty-program-row__meta {
  margin: 0;
  font-size: 13px;
  color: var(--sty-muted);
}
.sty-program-row__desc {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--sty-muted);
}
.sty-univ-aside__card {
  padding: 22px;
  position: sticky;
  top: 24px;
}
.sty-univ-aside__card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.sty-univ-aside__card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--sty-muted);
}
.sty-empty p {
  margin: 0 0 14px;
  color: var(--sty-muted);
}

/* —— Exam cards (premium) —— */
.sty-exam-list {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(37, 99, 235, 0.06), transparent 50%),
    #f8fafc;
}
.sty-exam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sty-exam-card {
  --exam-accent: #2563eb;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  background:
    linear-gradient(165deg, #ffffff 0%, #ffffff 55%, color-mix(in srgb, var(--exam-accent) 5%, #fff) 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  padding: 28px 26px 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 2px 4px rgba(11, 20, 55, 0.03),
    0 18px 40px -20px rgba(11, 20, 55, 0.22);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}
.sty-exam-card__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--exam-accent) 28%, transparent), transparent 68%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  transition: opacity .35s ease, transform .35s ease;
}
.sty-exam-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--exam-accent), color-mix(in srgb, var(--exam-accent) 25%, #fff));
  z-index: 1;
}
.sty-exam-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--exam-accent) 28%, rgba(15, 23, 42, 0.08));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 8px 16px rgba(11, 20, 55, 0.04),
    0 28px 56px -18px rgba(11, 20, 55, 0.32);
}
.sty-exam-card:hover .sty-exam-card__glow {
  opacity: 1;
  transform: scale(1.12);
}
.sty-exam-card__top,
.sty-exam-card__kicker,
.sty-exam-card__title,
.sty-exam-card__excerpt,
.sty-exam-card__cta {
  position: relative;
  z-index: 1;
}
.sty-exam-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.sty-exam-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--exam-accent);
  background: color-mix(in srgb, var(--exam-accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--exam-accent) 18%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.sty-exam-card__ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(145deg, color-mix(in srgb, var(--exam-accent) 88%, #fff), color-mix(in srgb, var(--exam-accent) 55%, #0b1437));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 14px 28px -10px color-mix(in srgb, var(--exam-accent) 75%, transparent);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.sty-exam-card:hover .sty-exam-card__ico {
  transform: translateY(-2px) rotate(-3deg);
}
.sty-exam-card__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--exam-accent);
  opacity: 0.9;
}
.sty-exam-card__title {
  font-family: var(--sty-display);
  font-size: clamp(26px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: #0b1437;
  letter-spacing: -0.02em;
}
.sty-exam-card__excerpt {
  margin: 0 0 28px;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
  max-width: 34ch;
}
.sty-exam-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% + 52px);
  margin: auto -26px 0;
  padding: 16px 26px;
  border-radius: 0;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff !important;
  text-decoration: none !important;
  background: #0b1437;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .25s ease, letter-spacing .25s ease;
}
.sty-exam-card__cta i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), background .25s;
}
.sty-exam-card:hover .sty-exam-card__cta {
  background: linear-gradient(90deg, #0b1437, color-mix(in srgb, var(--exam-accent) 85%, #0b1437));
  letter-spacing: 0.04em;
}
.sty-exam-card:hover .sty-exam-card__cta i {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.2);
}
.sty-exam-list__foot {
  margin-top: 40px;
  text-align: center;
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--sty-border);
}
.sty-exam-list__foot p {
  margin: 0 0 14px;
  color: var(--sty-muted);
  font-size: 15px;
}

.sty-exam-detail {
  max-width: 820px;
  margin: 0 auto;
}
.sty-exam-detail__card {
  --exam-accent: #2563eb;
  background: #fff;
  border: 1px solid var(--sty-border);
  border-radius: 18px;
  padding: 36px 34px;
  box-shadow: 0 18px 40px -24px rgba(11, 20, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.sty-exam-detail__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--exam-accent);
}
.sty-exam-detail__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--exam-accent);
  margin-bottom: 18px;
  font-size: 20px;
}
.sty-exam-detail__hr {
  border: 0;
  border-top: 1px solid var(--sty-border);
  margin: 28px 0;
}
.sty-exam-detail__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.sty-exam-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--sty-navy);
  font-size: 14.5px;
  font-weight: 500;
}
.sty-exam-detail__list i {
  color: var(--exam-accent);
  margin-top: 3px;
  font-size: 12px;
}
.sty-exam-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* —— ETS partner exams page —— */
.sty-ets-hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 102, 204, 0.35), transparent 55%),
    linear-gradient(135deg, #001a4d 0%, #003399 48%, #0052cc 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.sty-ets-hero__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.sty-ets-hero__partner {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}
.sty-ets-hero h1 {
  font-family: var(--sty-display);
  font-size: clamp(30px, 4.5vw, 46px);
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.sty-ets-hero h1 span {
  color: #93c5fd;
}
.sty-ets-hero p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
}
.sty-ets-hero p a {
  color: #bfdbfe;
  text-decoration: underline;
}
.sty-ets-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.sty-ets-hero__ext {
  color: #e2e8f0 !important;
  font-size: 13px;
  font-weight: 600;
  margin-left: 4px;
}
.sty-ets-hero__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 22px 22px 26px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 48px -28px rgba(0, 0, 0, 0.45);
}
.sty-ets-hero__panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.18), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.sty-ets-hero__mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 0 16px;
  padding: 22px 18px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 32px -18px rgba(0, 26, 77, 0.55);
}
.sty-ets-hero__mark img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
}
.sty-ets-hero__badge {
  position: relative;
  z-index: 1;
}
.sty-ets-hero__badge {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sty-ets-hero__badge span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bfdbfe;
}

.sty-ets-audiences {
  margin-top: -28px;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}
.sty-ets-audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sty-ets-aud {
  background: #fff;
  border: 1px solid var(--sty-border);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 16px 36px -22px rgba(11, 20, 55, 0.35);
}
.sty-ets-aud i {
  font-size: 22px;
  color: #003399;
  margin-bottom: 12px;
}
.sty-ets-aud h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--sty-navy);
}
.sty-ets-aud p {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: var(--sty-muted);
  line-height: 1.55;
}
.sty-ets-aud a {
  font-size: 13px;
  font-weight: 700;
  color: #003399 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sty-ets-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.sty-ets-product {
  --exam-accent: #003399;
  background:
    linear-gradient(160deg, #fff 0%, #fff 60%, color-mix(in srgb, var(--exam-accent) 6%, #fff) 100%);
  border: 1px solid rgba(0, 51, 153, 0.12);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 20px 44px -24px rgba(0, 26, 77, 0.38);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.sty-ets-product::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--exam-accent) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.sty-ets-product::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--exam-accent), color-mix(in srgb, var(--exam-accent) 40%, #001a4d));
}
.sty-ets-product:hover {
  transform: translateY(-7px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 28px 56px -20px rgba(0, 26, 77, 0.42);
}

.sty-ets-product__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sty-ets-product__ets {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 9px;
  background: #001a4d;
  color: #fff;
  border-radius: 4px;
}
.sty-ets-product__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--exam-accent);
}
.sty-ets-product__brand,
.sty-ets-product h3,
.sty-ets-product__tag,
.sty-ets-product__excerpt,
.sty-ets-product__actions {
  position: relative;
  z-index: 1;
}
.sty-ets-product h3 {
  font-family: var(--sty-display);
  font-size: clamp(28px, 3vw, 34px);
  margin: 0 0 8px;
  color: #0b1437;
  letter-spacing: -0.02em;
}
.sty-ets-product__tag {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--exam-accent);
}
.sty-ets-product__excerpt {
  margin: 0 0 22px;
  color: var(--sty-muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.sty-ets-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sty-ets-trust {
  margin-top: 40px;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  background: #f1f5f9;
  font-size: 13.5px;
  color: var(--sty-muted);
}
.sty-ets-trust a {
  color: #003399 !important;
  font-weight: 600;
}
.sty-ets-detail-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: #001a4d;
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sty-ets-detail-banner a {
  color: #93c5fd !important;
  font-weight: 600;
}
.sty-exam-detail .sty-exam-detail__card {
  border-radius: 0 0 18px 18px;
}

@media (max-width: 1100px) {
  .sty-country-grid { grid-template-columns: repeat(2, 1fr); }
  .sty-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .sty-univ-layout { grid-template-columns: 1fr; }
  .sty-univ-aside__card { position: static; }
  .sty-exam-grid { grid-template-columns: repeat(2, 1fr); }
  .sty-ets-audiences__grid { grid-template-columns: 1fr; }
  .sty-ets-featured { grid-template-columns: 1fr; }
  .sty-ets-hero__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sty-country-grid { grid-template-columns: 1fr; }
  .sty-benefit-grid { grid-template-columns: 1fr; }
  .sty-detail__hero-content { padding: 56px 0 40px; }
  .sty-univ-hero__banner { height: 200px; }
  .sty-univ-hero__panel { flex-direction: column; margin-top: -36px; }
  .sty-program-row { flex-direction: column; align-items: flex-start; }
  .sty-exam-grid { grid-template-columns: 1fr; }
  .sty-exam-detail__card { padding: 26px 20px; }
  .sty-ets-hero { padding: 40px 0 36px; }
}
