@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

select {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

:root {
  --app-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  font-weight: 500;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

svg, video, canvas, iframe {
  max-width: 100%;
}

select,
button,
input[type=text],
input[type=email],
input[type=password],
textarea {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

strong,
b {
  font-weight: 900;
}

/*1199, 1366*/
.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  body {
    overflow-x: clip;
  }
  p, h1, h2, h3, h4, h5, h6, li, a, span, div {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.site-header {
  position: relative;
  z-index: 30;
}

.topbar {
  background: #002a73;
  color: #fff;
  font-size: 14px;
}

.topbar__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  min-width: 0;
}
.topbar__item span {
  white-space: normal;
}
.topbar__item svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.mainnav {
  background: #fff;
  box-shadow: 0 2px 8px rgba(2, 20, 55, 0.06);
}

.mainnav__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  max-height: 56px;
  width: auto;
}

.menu {
  position: relative;
}
.menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu li {
  position: relative;
}
.menu a {
  color: #062149;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 8px 0;
  transition: color 0.25s ease;
}
.menu li:hover > a,
.menu li.active > a,
.menu li:focus-within > a {
  color: #e02020;
}
.menu .menu-apply a {
  background: #d71920;
  color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.menu .menu-apply:hover > a,
.menu .menu-apply.active > a {
  color: #fff;
  background: #bf1118;
}

.submenu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 300px;
  padding: 12px;
  border: 1px solid #e6edf7;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
  box-shadow: 0 24px 60px rgba(4, 18, 40, 0.14);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 10;
  overflow: hidden;
}
.submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #e6edf7;
  border-top: 1px solid #e6edf7;
  transform: rotate(45deg);
}
.submenu li {
  width: 100%;
}
.submenu a {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: #12305d;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.submenu a:hover {
  background: #eef4fb;
  color: #d71920;
  transform: translateX(4px);
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.navbtn {
  width: 42px;
  height: 42px;
  border: 1px solid #d8e1ef;
  border-radius: 8px;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}
.navbtn span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #062149;
  display: block;
}

@media (max-width: 1140px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .topbar__left,
  .topbar__right {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .topbar__item {
    align-items: flex-start;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .mainnav__inner {
    min-height: 74px;
    gap: 12px;
  }
  .navbtn {
    display: inline-flex;
  }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eef2f8;
    box-shadow: 0 12px 20px rgba(4, 18, 40, 0.08);
    padding: 12px 20px;
    display: none;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .menu li {
    width: 100%;
    border-bottom: 1px solid #edf2fa;
  }
  .menu li:last-child {
    border-bottom: 0;
  }
  .menu a {
    width: 100%;
    padding: 12px 0;
  }
  .menu .menu-apply {
    border-bottom: 0;
    padding-top: 10px;
  }
  .menu .menu-apply a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
  }
  .menu.is-open {
    display: block;
  }
  .submenu {
    position: static;
    display: none;
    box-shadow: none;
    min-width: 100%;
    padding: 0 0 8px 12px;
    border-radius: 0;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
  }
  .submenu::before {
    display: none;
  }
  .submenu a {
    padding: 8px 0;
    font-size: 14px;
    border-radius: 0;
  }
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    display: block;
  }
}
@media (max-width: 640px) {
  .topbar {
    font-size: 12px;
  }
  .topbar__left,
  .topbar__right {
    gap: 8px;
  }
  .topbar__item {
    gap: 6px;
    font-size: 12px;
    line-height: 1.45;
  }
  .brand img {
    max-height: 48px;
  }
  .mainnav__inner {
    min-height: 68px;
  }
  .navbtn {
    width: 40px;
    height: 40px;
  }
}
:root {
  --ef-primary: #002b5c;
  --ef-primary-dark: #001f3f;
  --ef-red: #d71920;
  --ef-white: #ffffff;
  --ef-bg: #f7f9fc;
  --ef-border: #e5eaf0;
  --ef-text: #102033;
  --ef-whatsapp: #25d366;
}

.home-page {
  background: var(--ef-bg);
  color: var(--ef-text);
}

.home-hero {
  width: 100%;
  background: #f4f6fb;
  padding: 18px 0 0;
  overflow: hidden;
  border-bottom: 1px solid #e8edf3;
}

.hero-inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: #f7f9fc;
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px 24px 22px;
  padding-left: 0;
  position: relative;
  z-index: 2;
}

.hero-image {
  height: 100%;
  min-height: 500px;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14%;
  height: 100%;
  background: linear-gradient(90deg, rgba(247, 249, 252, 0.86) 0%, rgba(247, 249, 252, 0.32) 55%, rgba(247, 249, 252, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section {
  padding: 32px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  color: var(--ef-primary);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.btn {
  border: 0;
  border-radius: 12px;
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  gap: 10px;
}

.btn--primary {
  background: var(--ef-red);
  color: var(--ef-white);
}

.btn--whatsapp {
  background: var(--ef-white);
  color: #1a8f47;
  border: 1px solid var(--ef-border);
}

.btn-icon,
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg,
.btn-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}

.btn--primary .btn-icon,
.btn--primary .btn-arrow {
  color: currentColor;
}

.btn--whatsapp .btn-arrow {
  color: currentColor;
}

.btn--whatsapp .btn-icon svg {
  width: 22px;
  height: 22px;
}

.home-hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 3.6vw, 56px);
}

.home-hero__title-blue {
  color: var(--ef-primary);
  font-weight: 800;
}

.home-hero__title-red {
  color: var(--ef-red);
  font-weight: 800;
}

.home-hero__text {
  margin: 14px 0 0;
  max-width: 520px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.4;
  font-weight: 400;
}

.home-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 20px;
}

.home-hero__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
}

.home-trust-inline {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 225, 239, 0.8);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-trust-inline__item {
  border-radius: 0;
  border: 0;
  border-right: 1px solid #d9e1ea;
  background: transparent;
  min-height: 36px;
  padding: 0 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  font-size: 15px;
  color: var(--ef-primary);
}

.home-trust-inline__item:last-child {
  border-right: 0;
}

.badge-icon {
  color: #d71920;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 10px;
}

.badge-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.badge-text {
  color: #002b5c;
  line-height: 1.2;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: var(--ef-white);
  border: 1px solid var(--ef-border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.05);
}

.card--trust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  min-height: 92px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.trust-card__body {
  min-width: 0;
}

.card--trust h3 {
  margin: 0 0 4px;
  color: #002b5c;
  font-size: 18px;
  line-height: 1.2;
}

.card--trust p {
  margin: 0;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.35;
}

.trust-card__icon {
  color: #d71920;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 34px;
  margin-top: 2px;
}

.trust-card__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.card__link {
  margin-top: 14px;
  display: inline-block;
  color: var(--ef-primary);
  text-decoration: none;
  font-weight: 700;
}

.section-head--programs {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--ef-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head__lead {
  margin: 12px auto 0;
  max-width: 780px;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.65;
}

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

.program-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(229, 234, 240, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 31, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 32, 0.18);
  box-shadow: 0 26px 56px rgba(0, 31, 63, 0.12);
}

.program-card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: #dfe6ef;
  overflow: hidden;
}

.program-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 43, 92, 0) 40%, rgba(0, 31, 63, 0.72) 100%);
  pointer-events: none;
}

.program-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card__image {
  transform: scale(1.04);
}

.program-card__badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--ef-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.program-card__title {
  margin: 0 0 10px;
  color: var(--ef-primary-dark);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
}

.program-card__text {
  margin: 0;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.65;
}

.program-card__points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.program-card__points li {
  position: relative;
  padding-left: 26px;
  color: var(--ef-text);
  line-height: 1.45;
}

.program-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ef-red), #ff7b80);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.08);
}

.program-card__footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.program-card__cta,
.program-card__ghost {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.program-card__cta {
  background: linear-gradient(135deg, var(--ef-red), #ff4c57);
  color: var(--ef-white);
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.24);
}

.program-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(215, 25, 32, 0.28);
}

.program-card__ghost {
  border: 1px solid var(--ef-border);
  background: #fff;
  color: var(--ef-primary);
}

.program-card__ghost:hover {
  transform: translateY(-1px);
  background: #f6f8fc;
}

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: center;
}

.why-layout__media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--ef-border);
  display: block;
}

.why-layout__content h2 {
  margin: 0 0 12px;
  color: var(--ef-primary);
  font-size: clamp(30px, 3.2vw, 48px);
}

.feature-box {
  background: var(--ef-white);
  border: 1px solid var(--ef-border);
  border-radius: 14px;
  padding: 16px;
}

.feature-box h3 {
  margin: 0 0 8px;
  color: var(--ef-primary-dark);
  font-size: 22px;
}

.feature-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps li {
  background: var(--ef-white);
  border: 1px solid var(--ef-border);
  border-radius: 14px;
  padding: 16px;
}

.process-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ef-primary);
  font-size: 21px;
}

.process-steps span {
  font-size: 16px;
  line-height: 1.45;
}

.cta-band {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ef-primary), var(--ef-primary-dark));
  color: var(--ef-white);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 50px);
}

.cta-band p {
  margin: 8px 0 0;
  font-size: 18px;
}

.seo-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
}

.seo-layout h2 {
  color: var(--ef-primary);
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 48px);
}

.seo-layout p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.faq {
  background: var(--ef-white);
  border: 1px solid var(--ef-border);
  border-radius: 16px;
  padding: 20px;
}

.faq details {
  border-top: 1px solid var(--ef-border);
  padding: 12px 0;
}

.faq details:first-of-type {
  border-top: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ef-primary-dark);
}

.faq p {
  margin-top: 10px;
  font-size: 16px;
}

.apply-box {
  background: var(--ef-white);
  border: 1px solid var(--ef-border);
  border-radius: 16px;
  padding: 24px;
}

.apply-box h2 {
  margin: 0 0 14px;
  color: var(--ef-primary);
  font-size: clamp(28px, 2.6vw, 40px);
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  color: var(--ef-primary-dark);
}

.field input,
.field select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--ef-border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 15px;
  color: var(--ef-text);
  background: #fff;
}

.apply-form__row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkbox {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .hero-content {
    padding: 22px 16px 22px 20px;
  }
  .home-hero__text {
    font-size: 16px;
  }
  .card h3 {
    font-size: 20px;
  }
  .card p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    order: 1;
    height: auto;
    padding: 22px 0 18px;
    background: #f7f9fc;
  }
  .hero-image {
    order: 2;
    min-height: 320px;
    height: 320px;
  }
  .hero-image::before {
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.8) 0%, rgba(247, 249, 252, 0.24) 70%, rgba(247, 249, 252, 0) 100%);
  }
  .section {
    padding: 24px 0;
  }
  .home-hero__text {
    font-size: 15px;
  }
  .home-hero__actions .btn {
    width: auto;
    flex: 1 1 0;
  }
  .home-trust-inline,
  .grid--4,
  .process-steps,
  .apply-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card--trust {
    min-height: auto;
  }
  .home-trust-inline__item {
    border-right: 0;
    border-radius: 10px;
    border: 1px solid #d9e1ea;
    background: #fff;
    justify-content: center;
    padding: 0 10px;
  }
  .home-trust-inline {
    margin-top: 22px;
    padding-top: 14px;
  }
  .badge-text {
    font-size: 13px;
  }
  .grid--2,
  .program-grid,
  .why-layout,
  .seo-layout {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .apply-form__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .apply-form__row .btn {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .hero-content {
    padding: 18px 0 14px;
  }
  .home-hero__title {
    font-size: clamp(24px, 8vw, 38px);
  }
  .home-hero__text {
    max-width: none;
    font-size: 14px;
    line-height: 1.55;
  }
  .home-hero__actions {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }
  .home-hero__actions .btn {
    width: 100%;
    min-height: 50px;
  }
  .home-trust-inline {
    grid-template-columns: 1fr;
  }
  .home-trust-inline__item {
    min-height: 52px;
    padding: 12px 14px;
    border-right: 0;
    border: 1px solid #d9e1ea;
    border-radius: 14px;
    background: #fff;
    justify-content: flex-start;
    gap: 12px;
    box-shadow: 0 10px 22px rgba(0, 31, 63, 0.04);
  }
  .badge-icon {
    width: 28px;
    margin-right: 0;
    flex-shrink: 0;
  }
  .badge-icon svg {
    width: 24px;
    height: 24px;
  }
  .badge-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.15;
  }
  .home-trust-inline,
  .grid--4,
  .process-steps,
  .apply-form__grid {
    grid-template-columns: 1fr;
  }
  .card--trust {
    padding: 16px;
  }
  .section-head__lead {
    font-size: 15px;
  }
  .program-card__body {
    padding: 18px;
  }
  .program-card__footer {
    gap: 10px;
  }
  .home-trust-inline {
    margin-top: 18px;
    padding-top: 12px;
  }
  .program-card__cta,
  .program-card__ghost {
    width: 100%;
  }
}
.plain-page__hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 36px;
  background: linear-gradient(180deg, rgba(0, 21, 45, 0.58), rgba(0, 21, 45, 0.78)), var(--plain-page-hero-bg) center/cover no-repeat;
}

.plain-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 32%), radial-gradient(circle at 85% 0%, rgba(215, 25, 32, 0.25), transparent 28%);
  pointer-events: none;
}

.plain-page__hero .container {
  position: relative;
  z-index: 1;
}

.plain-page__hero-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 32px 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  color: var(--ef-white);
}

.plain-page__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plain-page__title {
  margin: 0;
  color: var(--ef-white);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.plain-page__lead {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.plain-page__breadcrumbs {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.plain-page__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.plain-page__breadcrumbs a:hover {
  color: var(--ef-white);
  text-decoration: underline;
}

.plain-page__breadcrumbs .is-current {
  color: var(--ef-white);
  font-weight: 700;
}

.plain-page__content {
  padding: 28px 0 38px;
}

.plain-page__layout {
  display: grid;
  gap: 24px;
}

.plain-page__layout--with-sidebar {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.plain-page__layout--single {
  grid-template-columns: 1fr;
}

.plain-page__article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ef-border);
  border-radius: 24px;
  background: var(--ef-white);
  box-shadow: 0 16px 34px rgba(0, 31, 63, 0.06);
}

.plain-page__article-head {
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ef-border);
}

.plain-page__article-head h2 {
  margin: 0;
  color: var(--ef-primary);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
}

.plain-page__body {
  color: var(--ef-text);
  font-size: 16px;
  line-height: 1.8;
}

.plain-page__body > :first-child {
  margin-top: 0;
}

.plain-page__body > :last-child {
  margin-bottom: 0;
}

.plain-page__body h2,
.plain-page__body h3,
.plain-page__body h4 {
  color: var(--ef-primary-dark);
  line-height: 1.25;
  margin-top: 1.6em;
  margin-bottom: 0.75em;
}

.plain-page__body p {
  margin: 0 0 1em;
  color: #30465f;
}

.plain-page__body ul,
.plain-page__body ol {
  margin: 0 0 1.1em;
  padding-left: 1.25em;
}

.plain-page__body li {
  margin-bottom: 0.45em;
}

.plain-page__body a {
  color: var(--ef-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.plain-page__body a:hover {
  color: var(--ef-red);
}

.plain-page__body img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 18px 0;
}

.plain-page__body blockquote {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--ef-red);
  background: #f7f9fc;
  border-radius: 16px;
  color: #32485f;
}

.plain-page__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 16px;
}

.plain-page__body th,
.plain-page__body td {
  padding: 14px 16px;
  border: 1px solid var(--ef-border);
  text-align: left;
  vertical-align: top;
}

.plain-page__sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 0;
}

.plain-page-nav {
  border: 1px solid var(--ef-border);
  border-radius: 20px;
  background: var(--ef-white);
  box-shadow: 0 14px 30px rgba(0, 31, 63, 0.05);
}

.plain-page-nav {
  padding: 10px;
}

.plain-page-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.plain-page-nav__item {
  position: relative;
}

.plain-page-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f7f9fc;
  color: var(--ef-primary-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.plain-page-nav__link:hover {
  background: #eef3fa;
  color: var(--ef-red);
  transform: translateX(2px);
}

.plain-page-nav__item.is-active > .plain-page-nav__link {
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.12), rgba(0, 43, 92, 0.08));
  color: var(--ef-red);
}

.plain-page-nav__link-icon {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
  flex-shrink: 0;
}

.plain-page-nav__sublist {
  margin-top: 6px;
  padding-left: 10px;
  border-left: 1px dashed rgba(0, 43, 92, 0.18);
}

@media (max-width: 992px) {
  .plain-page__layout--with-sidebar {
    grid-template-columns: 1fr;
  }
  .plain-page__hero-card {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .plain-page__hero {
    padding: 28px 0 22px;
  }
  .plain-page__hero-card {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .plain-page__title {
    font-size: clamp(28px, 8vw, 42px);
  }
  .plain-page__lead {
    font-size: 15px;
  }
  .plain-page__content {
    padding: 20px 0 28px;
  }
  .plain-page__article {
    padding: 20px;
    border-radius: 20px;
  }
  .plain-page__body {
    font-size: 15px;
  }
  .plain-page__sidebar {
    position: static;
  }
  .plain-page-nav {
    border-radius: 20px;
  }
}
.urunlerimiz-page__layout {
  grid-template-columns: 1fr;
}

.urunlerimiz-page__article {
  padding: 30px;
}

.urunlerimiz-page__article-head {
  margin-bottom: 26px;
}

.urunlerimiz-page__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.urunlerimiz-page__eyebrow {
  margin: 0 0 10px;
  color: var(--ef-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urunlerimiz-page__article-head h2 {
  margin: 0;
  color: var(--ef-primary);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.urunlerimiz-page__count {
  min-width: 112px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.1), rgba(0, 43, 92, 0.06));
  border: 1px solid rgba(215, 25, 32, 0.12);
  text-align: center;
}

.urunlerimiz-page__count strong {
  display: block;
  color: var(--ef-primary);
  font-size: 28px;
  line-height: 1;
}

.urunlerimiz-page__count span {
  display: block;
  margin-top: 4px;
  color: #5f6b7a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.urunlerimiz-page__card {
  position: relative;
}

.urunlerimiz-page__card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.96));
  border: 1px solid rgba(229, 234, 240, 0.95);
  box-shadow: 0 18px 42px rgba(0, 31, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.urunlerimiz-page__card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.16);
  box-shadow: 0 26px 54px rgba(0, 31, 63, 0.12);
}

.urunlerimiz-page__card-media {
  position: relative;
  min-height: 150px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: radial-gradient(circle at top right, rgba(215, 25, 32, 0.28), transparent 36%), linear-gradient(135deg, #002b5c, #0f4a8a);
}

.urunlerimiz-page__card-media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.55;
}

.urunlerimiz-page__card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  color: var(--ef-white);
  flex-shrink: 0;
}

.urunlerimiz-page__card-icon img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.urunlerimiz-page__card-icon-fallback {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.urunlerimiz-page__card-badge {
  position: relative;
  z-index: 1;
  margin-left: auto;
  align-self: flex-end;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.urunlerimiz-page__card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
}

.urunlerimiz-page__card-title {
  margin: 0;
  color: var(--ef-primary-dark);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
}

.urunlerimiz-page__card-text {
  margin: 12px 0 0;
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.7;
}

.urunlerimiz-page__card-action {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ef-primary);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.urunlerimiz-page__card-action i {
  transition: transform 0.2s ease;
}

.urunlerimiz-page__card-link:hover .urunlerimiz-page__card-action i {
  transform: translateX(4px);
}

.urunlerimiz-page__card-link:hover .urunlerimiz-page__card-title {
  color: var(--ef-red);
}

@media (max-width: 992px) {
  .urunlerimiz-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .urunlerimiz-page__head-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .urunlerimiz-page__count {
    min-width: 96px;
  }
}
@media (max-width: 640px) {
  .urunlerimiz-page__article {
    padding: 20px;
  }
  .urunlerimiz-page__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .urunlerimiz-page__card-media {
    min-height: 136px;
    padding: 16px;
  }
  .urunlerimiz-page__card-icon {
    width: 64px;
    height: 64px;
  }
  .urunlerimiz-page__card-body {
    padding: 18px;
  }
}
.iletisim-page__layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.iletisim-page__article {
  padding: 32px;
}

.iletisim-page__eyebrow {
  margin: 0 0 10px;
  color: var(--ef-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.iletisim-page__article-head {
  padding-bottom: 22px;
  margin-bottom: 24px;
}

.iletisim-page__article-head h2 {
  margin: 0;
  color: var(--ef-primary);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.iletisim-page__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.iletisim-page__pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.08), rgba(0, 43, 92, 0.06));
  border: 1px solid rgba(215, 25, 32, 0.1);
  color: var(--ef-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.iletisim-page__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.iletisim-page__action {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  color: var(--ef-white);
  background: linear-gradient(135deg, var(--ef-red), #ff4c57);
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.iletisim-page__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(215, 25, 32, 0.24);
}

.iletisim-page__action.is-secondary {
  color: var(--ef-primary);
  background: #fff;
  border: 1px solid var(--ef-border);
  box-shadow: none;
}

.iletisim-page__action.is-secondary:hover {
  background: #f7f9fc;
}

.iletisim-page__cards {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.iletisim-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--ef-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 12px 28px rgba(0, 31, 63, 0.05);
}

.iletisim-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ef-red), #ff7b80);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.16);
}

.iletisim-card__body {
  min-width: 0;
}

.iletisim-card__label {
  display: block;
  margin-bottom: 6px;
  color: #6a7584;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.iletisim-card__value {
  margin: 0;
  color: var(--ef-primary-dark);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
}

.iletisim-card__value:hover {
  color: var(--ef-red);
}

.iletisim-page__map {
  position: sticky;
  top: 16px;
}

.iletisim-map {
  overflow: hidden;
  border: 1px solid var(--ef-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 18px 40px rgba(0, 31, 63, 0.08);
}

.iletisim-map__head {
  padding: 22px 22px 18px;
}

.iletisim-map__eyebrow {
  margin: 0 0 10px;
  color: var(--ef-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.iletisim-map__head h3 {
  margin: 0;
  color: var(--ef-primary);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.iletisim-map__head p {
  margin: 10px 0 0;
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.7;
}

.iletisim-map__frame {
  position: relative;
  height: 467px;
  background: #dfe6ef;
}

.iletisim-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .iletisim-page__layout {
    grid-template-columns: 1fr;
  }
  .iletisim-page__map {
    position: static;
  }
  .iletisim-map__frame {
    min-height: 360px;
  }
}
@media (max-width: 640px) {
  .iletisim-page__article {
    padding: 20px;
  }
  .iletisim-page__cards {
    grid-template-columns: 1fr;
  }
  .iletisim-page__actions {
    gap: 10px;
  }
  .iletisim-page__action {
    width: 100%;
  }
  .iletisim-card {
    padding: 16px;
  }
  .iletisim-map__head {
    padding: 18px 18px 14px;
  }
  .iletisim-map__frame {
    min-height: 300px;
  }
}
.online-exam-hero,
.online-test-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 20, 43, 0.78), rgba(0, 20, 43, 0.64)), url("../img/page-hero.jpg") center/cover no-repeat;
}

.online-exam-hero {
  padding: 48px 0 38px;
}

.online-test-hero {
  padding: 42px 0 28px;
}

.online-exam-hero::before,
.online-test-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.12), transparent 30%), radial-gradient(circle at 85% 12%, rgba(215, 25, 32, 0.2), transparent 24%);
  pointer-events: none;
}

.online-exam-hero .container,
.online-test-hero .container,
.online-exam-list .container,
.online-test .container {
  position: relative;
  z-index: 1;
}

.online-exam-hero__card,
.online-test-hero__card,
.online-done__card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.online-test-hero__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 30px 34px;
  color: #fff;
}

.online-exam-hero__card {
  padding: 34px;
  color: #fff;
}

.online-test-hero__copy {
  min-width: 0;
}

.online-test-hero__stats {
  display: grid;
  gap: 12px;
  min-width: 190px;
}

.online-test-hero__stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.online-test-hero__stat strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.online-test-hero__stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.online-exam-hero__eyebrow,
.online-test-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.online-exam-hero__title,
.online-test-hero__title,
.online-done__card h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.online-exam-hero__lead,
.online-test-hero__lead,
.online-done__card p {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.online-exam-hero__breadcrumbs,
.online-test-hero__breadcrumbs {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.online-exam-hero__breadcrumbs a,
.online-test-hero__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.online-exam-hero__breadcrumbs a:hover,
.online-test-hero__breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

.online-exam-hero__breadcrumbs .is-current,
.online-test-hero__breadcrumbs .is-current {
  color: #fff;
  font-weight: 700;
}

.online-exam-list,
.online-test,
.online-done {
  padding: 30px 0 44px;
}

.online-exam-list__head,
.online-test__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.online-exam-list__kicker,
.online-test__kicker {
  margin: 0 0 8px;
  color: var(--ef-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.online-exam-list__head h2,
.online-test__intro h2 {
  margin: 0;
  color: var(--ef-primary-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.online-exam-list__meta {
  min-width: 120px;
  padding: 16px 18px;
  border: 1px solid var(--ef-border);
  border-radius: 18px;
  background: var(--ef-white);
  box-shadow: 0 12px 30px rgba(0, 31, 63, 0.05);
  text-align: right;
}

.online-exam-list__meta strong {
  display: block;
  color: var(--ef-primary);
  font-size: 28px;
  line-height: 1;
}

.online-exam-list__meta span {
  display: block;
  margin-top: 6px;
  color: #60738a;
  font-size: 13px;
}

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

.online-exam-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--ef-border);
  border-radius: 24px;
  background: var(--ef-white);
  box-shadow: 0 16px 34px rgba(0, 31, 63, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.online-exam-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.18);
  box-shadow: 0 26px 44px rgba(0, 31, 63, 0.12);
}

.online-exam-card__media {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #eef3fb, #dfe8f7);
}

.online-exam-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.online-exam-card__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ef-primary);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.online-exam-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.online-exam-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #60738a;
  font-size: 13px;
  font-weight: 700;
}

.online-exam-card__topline small {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--ef-primary);
}

.online-exam-card__body h3,
.online-question__head h3,
.online-done__card h1 {
  margin: 0;
}

.online-exam-card__body h3 {
  color: var(--ef-primary-dark);
  font-size: 22px;
  line-height: 1.22;
}

.online-exam-card__body p {
  margin: 0;
  color: #4a617d;
  font-size: 15px;
  line-height: 1.7;
}

.online-exam-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.online-exam-card__btn,
.online-done__primary,
.online-done__secondary,
.online-test__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.online-exam-card__btn,
.online-test__submit,
.online-done__primary {
  background: linear-gradient(135deg, var(--ef-red), #ff5a5f);
  color: #fff;
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.22);
}

.online-exam-card__btn:hover,
.online-test__submit:hover,
.online-done__primary:hover {
  transform: translateY(-1px);
  color: #fff;
}

.online-exam-card__note {
  color: #67819c;
  font-size: 13px;
  font-weight: 700;
}

.online-exam-empty,
.online-test__empty {
  padding: 32px;
  border: 1px dashed var(--ef-border);
  border-radius: 24px;
  background: #fbfcfe;
  text-align: center;
}

.online-exam-empty h3,
.online-test__empty h3 {
  margin: 0 0 8px;
  color: var(--ef-primary-dark);
  font-size: 22px;
}

.online-exam-empty p,
.online-test__empty p {
  margin: 0;
  color: #60738a;
}

.online-test__form {
  padding: 24px;
  border: 1px solid var(--ef-border);
  border-radius: 28px;
  background: var(--ef-white);
  box-shadow: 0 18px 40px rgba(0, 31, 63, 0.06);
}

.online-test__intro-badge {
  padding: 12px 16px;
  border-radius: 16px;
  background: #f4f8fc;
  color: var(--ef-primary);
  font-weight: 800;
  white-space: nowrap;
}

.online-test__content {
  display: grid;
  gap: 16px;
}

.online-question {
  padding: 22px;
  border: 1px solid var(--ef-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.online-question.is-answered {
  border-color: rgba(215, 25, 32, 0.18);
  box-shadow: 0 14px 30px rgba(0, 31, 63, 0.05);
}

.online-question__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.online-question__index {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--ef-primary);
  font-weight: 800;
}

.online-question__head h3 {
  color: var(--ef-primary-dark);
  font-size: 20px;
  line-height: 1.35;
}

.online-question__answers {
  display: grid;
  gap: 10px;
}

.online-answer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ef-border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.online-answer:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 25, 32, 0.25);
  box-shadow: 0 12px 24px rgba(0, 31, 63, 0.06);
}

.online-answer input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.online-answer__marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #c8d5e6;
  flex: 0 0 auto;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.online-answer input:checked + .online-answer__marker {
  border-color: var(--ef-red);
  background: radial-gradient(circle at center, var(--ef-red) 0 42%, transparent 44%);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}

.online-answer__text {
  color: #32465d;
  font-size: 15px;
  line-height: 1.6;
}

.online-test__footer {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.online-test__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #41576f;
  font-size: 14px;
  line-height: 1.6;
}

.online-test__check input {
  margin-top: 4px;
  accent-color: var(--ef-red);
}

.online-test__warn {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff6f6;
  color: #8c3a3d;
  font-size: 14px;
  line-height: 1.6;
}

.online-test__submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.online-done__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
  padding: 28px;
  overflow: hidden;
  color: var(--ef-primary-dark);
  background: radial-gradient(circle at top right, rgba(215, 25, 32, 0.08), transparent 30%), radial-gradient(circle at bottom left, rgba(0, 33, 71, 0.06), transparent 26%), #ffffff;
}

.online-done__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(214, 225, 237, 0.9);
  pointer-events: none;
}

.online-done__visual {
  position: relative;
  z-index: 1;
}

.online-done__visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.online-done__content {
  position: relative;
  z-index: 1;
}

.online-done__content h1 {
  margin: 0;
  color: var(--ef-primary-dark);
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.online-done__content p {
  margin: 14px 0 0;
  color: #41576f;
  font-size: 17px;
  line-height: 1.75;
}

.online-done__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--ef-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.online-done__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.online-done__list li {
  position: relative;
  padding-left: 24px;
  color: #41576f;
  font-size: 15px;
  line-height: 1.6;
}

.online-done__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ef-red), #ff5a5f);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
}

.online-done__actions {
  margin-top: 26px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.online-done__secondary {
  background: #f4f8fc;
  color: var(--ef-primary);
  border: 1px solid var(--ef-border);
}

.online-done__secondary:hover {
  color: var(--ef-primary);
}

@media (max-width: 1024px) {
  .online-exam-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .online-exam-hero,
  .online-test-hero {
    padding: 34px 0 24px;
  }
  .online-exam-hero__card,
  .online-test-hero__card,
  .online-test__form,
  .online-done__card {
    padding: 22px;
    border-radius: 22px;
  }
  .online-done__card {
    grid-template-columns: 1fr;
  }
  .online-done__visual {
    max-width: 320px;
    margin: 0 auto;
  }
  .online-test-hero__card {
    grid-template-columns: 1fr;
  }
  .online-test-hero__stats {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .online-exam-list__head,
  .online-test__intro {
    align-items: flex-start;
    flex-direction: column;
  }
  .online-exam-grid {
    grid-template-columns: 1fr;
  }
  .online-exam-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .online-test__check {
    font-size: 13px;
  }
}
.site-footer {
  margin-top: 28px;
  background: linear-gradient(140deg, #002b5c, #001f3f);
  color: #fff;
}

.site-footer__top {
  padding: 34px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr 1fr;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}
.site-footer__brand img {
  max-height: 52px;
  width: auto;
}

.site-footer__col h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.site-footer__col p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
  font-size: 15px;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.site-footer__menu-item {
  margin-bottom: 0;
}

.site-footer__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
}

.site-footer__menu-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
  flex-shrink: 0;
}

.site-footer__menu-sub {
  margin-top: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__menu-sub .site-footer__menu-list {
  gap: 6px;
}

.site-footer__menu-sub .site-footer__menu-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__menu-sub .site-footer__menu-link::before {
  width: 6px;
  height: 6px;
}

.site-footer__col li {
  margin-bottom: 8px;
}

.site-footer__col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.site-footer__col a:hover {
  color: #fff;
}

.site-footer__contact li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.site-footer__wa {
  border: 1px solid rgba(37, 211, 102, 0.8);
  border-radius: 12px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-footer__wa img {
  width: 28px;
  height: 28px;
}
.site-footer__wa span {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.site-footer__bottom {
  padding: 14px 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__legal a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

@media (max-width: 1140px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__legal {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}/*# sourceMappingURL=style.css.map */