/* =========================================================
   AUTOŠKOLA SEMAFOR — PODSTRANICE
   Zajednički stilovi za O nama, Info, Cijene i Tim.
   ========================================================= */

/* BANNER */
.page-banner { position: relative; min-height: clamp(440px, 47vw, 650px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; background: var(--navy-900); }
.page-banner__image, .page-banner__overlay { position: absolute; inset: 0; }
.page-banner__image { z-index: -3; background: url("../assets/images/placeholders/banner-o-nama.jpg") center/cover no-repeat; transform: scale(1.02); }
.page-banner__overlay { z-index: -2; background: linear-gradient(90deg, rgba(3,10,20,.98) 0%, rgba(4,13,27,.84) 38%, rgba(5,15,29,.25) 70%, rgba(3,9,18,.28) 100%), linear-gradient(180deg, rgba(3,9,18,.72) 0%, rgba(3,9,18,.04) 42%, rgba(3,9,18,.92) 100%); }
.page-banner__content { padding-top: calc(var(--header-height) + 90px); padding-bottom: clamp(62px, 7vw, 100px); }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb i { color: var(--gold-400); font-size: .7rem; }
.page-banner__eyebrow { display: block; margin-bottom: 13px; color: var(--gold-400); font-size: .74rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.page-banner h1 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; line-height: .95; letter-spacing: -.055em; text-shadow: 0 12px 45px rgba(0,0,0,.36); }
.page-banner p { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.3vw, 1.25rem); }

/* MOVING STRIP */
.power-ticker { position: relative; z-index: 4; overflow: hidden; border-top: 1px solid rgba(201,161,74,.52); border-bottom: 1px solid rgba(201,161,74,.34); background: linear-gradient(180deg, #0a1727, #050e19); box-shadow: 0 18px 45px rgba(0,0,0,.3); }
.power-ticker::before, .power-ticker::after { content: ""; position: absolute; top: 0; bottom: 0; z-index: 2; width: 120px; pointer-events: none; }
.power-ticker::before { left: 0; background: linear-gradient(90deg, #050e19, transparent); }
.power-ticker::after { right: 0; background: linear-gradient(-90deg, #050e19, transparent); }
.power-ticker__track { width: max-content; display: flex; animation: ticker 32s linear infinite; }
.power-ticker:hover .power-ticker__track { animation-play-state: paused; }
.power-ticker__group { display: flex; align-items: center; flex-shrink: 0; }
.power-ticker__group span { min-height: 78px; display: inline-flex; align-items: center; gap: 12px; padding: 0 36px; color: rgba(255,255,255,.86); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.power-ticker__group span::after { content: ""; width: 5px; height: 5px; margin-left: 36px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 14px rgba(224,188,104,.6); }
.power-ticker__group i { color: var(--gold-400); font-size: 1.15rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* CARDS */
.about-cards { position: relative; overflow: hidden; padding: clamp(90px, 9vw, 150px) 0; background: radial-gradient(circle at 75% 10%, rgba(201,161,74,.075), transparent 35%), linear-gradient(180deg, #040b15 0%, #081523 50%, #040b16 100%); }
.about-cards::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(201,161,74,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(201,161,74,.024) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent); pointer-events: none; }
.about-cards .container { position: relative; z-index: 2; }

.about-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(15px, 1.5vw, 23px); }
.about-card { position: relative; min-height: 400px; overflow: hidden; border: 1px solid rgba(201,161,74,.52); border-radius: 11px; background: #07111f; box-shadow: 0 25px 55px rgba(0,0,0,.26); isolation: isolate; transition: transform 420ms cubic-bezier(.2,.8,.2,1), border-color 320ms ease, box-shadow 420ms ease; }
.about-card__image, .about-card__shade { position: absolute; inset: 0; pointer-events: none; }
.about-card__image { z-index: -3; background-image: var(--card-image), linear-gradient(135deg, #152a43, #050b14); background-position: center; background-size: cover; transform: scale(1.015); filter: saturate(.88) contrast(1.04) brightness(.9); transition: transform 850ms cubic-bezier(.18,.72,.2,1), filter 500ms ease; }
.about-card__shade { z-index: -2; background: linear-gradient(180deg, rgba(2,7,14,.04) 0%, rgba(2,7,14,.16) 33%, rgba(2,7,14,.97) 100%), linear-gradient(90deg, rgba(2,7,14,.55), transparent 75%); }
.about-card__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: clamp(23px, 2.3vw, 34px); }
.about-card__icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 18px; color: var(--gold-400); border: 1px solid rgba(201,161,74,.75); border-radius: 50%; background: rgba(4,11,22,.65); backdrop-filter: blur(10px); transition: color 300ms ease, background 300ms ease, transform 300ms ease; }
.about-card__icon i { font-size: 1.25rem; }
.about-card h3 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(1.35rem, 1.65vw, 1.78rem); line-height: 1.15; }
.about-card p { max-width: 360px; margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.6; }
.about-card__more { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 0; color: var(--gold-400); border: 0; background: transparent; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.about-card__more i { transition: transform 300ms ease; }
.about-card:hover { z-index: 3; border-color: rgba(242,217,141,.94); box-shadow: 0 35px 75px rgba(0,0,0,.43), 0 0 34px rgba(201,161,74,.13); transform: translateY(-8px); }
.about-card:hover .about-card__image { transform: scale(1.075); filter: saturate(1.03) contrast(1.06) brightness(.98); }
.about-card:hover .about-card__icon { color: #07111f; background: var(--gold-400); transform: translateY(-3px); }
.about-card:hover .about-card__more i { transform: translateX(5px); }
.about-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(18px, 2vw, 28px); padding: 22px 15px; border: 1px solid rgba(201,161,74,.5); border-radius: 11px; background: rgba(6,17,30,.82); box-shadow: 0 24px 55px rgba(0,0,0,.24); }
.about-stats > div { min-height: 78px; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 12px; padding: 0 24px; }
.about-stats > div + div { border-left: 1px solid rgba(201,161,74,.25); }
.about-stats i { color: var(--gold-400); font-size: 2rem; }
.about-stats strong { color: var(--gold-300); font-family: "Manrope", sans-serif; font-size: 2rem; }
.about-stats span { color: rgba(255,255,255,.76); font-size: .82rem; line-height: 1.35; }


.cards-section {
  position: relative; overflow: hidden; padding: clamp(88px, 9vw, 148px) 0;
  background: radial-gradient(circle at 75% 10%, rgba(201,161,74,.08), transparent 35%), linear-gradient(180deg, #040b15 0%, #081523 50%, #040b16 100%);
}
.cards-section::before {
  content: ""; position: absolute; inset: 0; opacity: .28;
  background-image: linear-gradient(rgba(201,161,74,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(201,161,74,.024) 1px, transparent 1px);
  background-size: 70px 70px; mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.cards-section .container { position: relative; z-index: 2; }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading--compact { margin-top: 70px; }
.section-heading__label {
  display: inline-block; margin-bottom: 12px; color: var(--gold-400);
  font-size: .75rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
}
.section-heading h2 {
  margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: .98; letter-spacing: -.05em;
}
.section-heading p { margin: 18px auto 0; color: var(--text-soft); line-height: 1.75; max-width: 720px; }


/* =========================================================
   GRID KARTICA
   ========================================================= */

.cards-grid {
  display: grid;
  gap: clamp(16px, 1.7vw, 24px);
}


/* =========================================================
   KATEGORIJE — 2 ŠIROKE + 3 STANDARDNE
   ========================================================= */

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

/* Prvi red — B kategorije */
.cards-grid--five .info-card:nth-child(1) {
  grid-column: 1 / 4;
}

.cards-grid--five .info-card:nth-child(2) {
  grid-column: 4 / 7;
}

/* Drugi red — A, A1 i C */
.cards-grid--five .info-card:nth-child(3) {
  grid-column: 1 / 3;
}

.cards-grid--five .info-card:nth-child(4) {
  grid-column: 3 / 5;
}

.cards-grid--five .info-card:nth-child(5) {
  grid-column: 5 / 7;
}


/* Usluge */

.cards-grid--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}
.info-card {
  position: relative; min-height: 400px; overflow: hidden; border: 1px solid rgba(201,161,74,.52);
  border-radius: 14px; background: #07111f; box-shadow: 0 25px 55px rgba(0,0,0,.26);
  isolation: isolate; transition: transform 420ms cubic-bezier(.2,.8,.2,1), border-color 320ms ease, box-shadow 420ms ease;
}
.info-card__image, .info-card__shade { position: absolute; inset: 0; pointer-events: none; }
.info-card__image {
  z-index: -3; background-image: var(--card-image), linear-gradient(135deg, #152a43, #050b14);
  background-position: center; background-size: cover; transform: scale(1.015);
  filter: saturate(.9) contrast(1.03) brightness(.9); transition: transform 850ms cubic-bezier(.18,.72,.2,1), filter 500ms ease;
}
.info-card__shade {
  z-index: -2;
  background: linear-gradient(180deg, rgba(2,7,14,.04) 0%, rgba(2,7,14,.18) 33%, rgba(2,7,14,.97) 100%), linear-gradient(90deg, rgba(2,7,14,.55), transparent 75%);
}
.info-card__content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: clamp(22px, 2.2vw, 32px);
}
.info-card__icon {
  width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 16px;
  color: var(--gold-400); border: 1px solid rgba(201,161,74,.75); border-radius: 50%;
  background: rgba(4,11,22,.65); backdrop-filter: blur(10px); transition: .3s ease;
}
.info-card__icon i { font-size: 1.25rem; }
.info-card__meta {
  display: inline-flex; align-items: center; padding: 7px 12px; margin-bottom: 14px;
  border-radius: 999px; border: 1px solid rgba(201,161,74,.32); background: rgba(4,11,22,.58);
  color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.info-card h3 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(1.34rem, 1.65vw, 1.76rem); line-height: 1.12; }
.info-card p { max-width: 360px; margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.65; }
.info-card__more {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 0;
  color: var(--gold-400); border: 0; background: transparent; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
}
.info-card__more i { transition: transform 300ms ease; }
.info-card:hover {
  z-index: 3; border-color: rgba(242,217,141,.94);
  box-shadow: 0 35px 75px rgba(0,0,0,.43), 0 0 34px rgba(201,161,74,.13);
  transform: translateY(-8px);
}
.info-card:hover .info-card__image { transform: scale(1.075); filter: saturate(1.03) contrast(1.06) brightness(.98); }
.info-card:hover .info-card__icon { color: #07111f; background: var(--gold-400); transform: translateY(-3px); }
.info-card:hover .info-card__more i { transform: translateX(5px); }
.info-card--service { min-height: 420px; }


/* =========================================================
   KONTAKT KOMPONENTA — BEZ PARALLAXA NA PODSTRANICAMA
   ========================================================= */

.ns-contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #030912;
  scroll-margin-top: 88px;
  isolation: isolate;
}

.ns-contact-content {
  position: relative;
  z-index: 1;
  padding: clamp(95px, 10vw, 165px) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 161, 74, 0.08), transparent 34%),
    linear-gradient(180deg, #030912 0%, #06101e 55%, #030912 100%);
  isolation: isolate;
}

.ns-contact-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(201, 161, 74, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 161, 74, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.ns-contact-content::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: -1;
  width: min(620px, 48vw);
  height: min(620px, 48vw);
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.08);
  filter: blur(130px);
  pointer-events: none;
}

.ns-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.ns-contact-intro__label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ns-contact-intro h2 {
  max-width: 650px;
  margin: 0;
  font-family: "Inter", Georgia, serif;
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.ns-contact-intro > p {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.75;
}

.ns-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 38px;
}

.ns-contact-details a {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  color: var(--white);
  transition: color 300ms ease, transform 300ms ease;
}

.ns-contact-details a > span {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--gold-400);
  border: 1px solid rgba(201, 161, 74, 0.55);
  border-radius: 50%;
  background: rgba(5, 14, 26, 0.58);
  backdrop-filter: blur(10px);
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

.ns-contact-details a div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ns-contact-details small {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ns-contact-details strong {
  color: inherit;
  font-size: 0.98rem;
  font-weight: 600;
}

.ns-contact-details a:hover {
  color: var(--gold-400);
  transform: translateX(5px);
}

.ns-contact-details a:hover > span {
  color: #06101e;
  border-color: var(--gold-500);
  background: var(--gold-500);
}

.ns-contact-card {
  padding: clamp(27px, 3vw, 48px);
  border: 1px solid rgba(201, 161, 74, 0.52);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(12, 27, 46, 0.88), rgba(4, 12, 23, 0.78));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
}

.ns-contact-card__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.ns-contact-card__heading > span {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #06101e;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 28px rgba(201, 161, 74, 0.24);
}

.ns-contact-card__heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
}

.ns-contact-card__heading p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.ns-contact-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.ns-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.ns-form-group { min-width: 0; }

.ns-form-group label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
}

.ns-form-control { position: relative; }

.ns-form-control > i {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 2;
  color: rgba(201, 161, 74, 0.82);
  transform: translateY(-50%);
  pointer-events: none;
}

.ns-form-control--textarea > i {
  top: 18px;
  transform: none;
}

.ns-form-control input,
.ns-form-control select,
.ns-form-control textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  outline: none;
  background: rgba(2, 9, 17, 0.62);
  font: inherit;
  transition: border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.ns-form-control input,
.ns-form-control select {
  height: 54px;
  padding: 0 45px 0 48px;
}

.ns-form-control textarea {
  min-height: 135px;
  padding: 16px 18px 16px 48px;
  line-height: 1.55;
  resize: vertical;
}

.ns-form-control input::placeholder,
.ns-form-control textarea::placeholder { color: rgba(255, 255, 255, 0.37); }

.ns-form-control select {
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-500) 50%),
    linear-gradient(135deg, var(--gold-500) 50%, transparent 50%);
  background-position: calc(100% - 21px) 23px, calc(100% - 16px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.ns-form-control select option {
  color: var(--white);
  background: #071321;
}

.ns-form-control input:focus,
.ns-form-control select:focus,
.ns-form-control textarea:focus {
  border-color: rgba(201, 161, 74, 0.9);
  background-color: rgba(5, 15, 27, 0.86);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.1);
}

.ns-contact-submit {
  width: 100%;
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 5px;
  padding: 13px 24px;
  color: #06101e;
  border: 1px solid var(--gold-500);
  border-radius: 8px;
  background: linear-gradient(135deg, #f0d07b, #c9a14a, #a8832f);
  box-shadow: 0 14px 35px rgba(201, 161, 74, 0.2);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.ns-contact-submit:hover {
  filter: brightness(1.07);
  box-shadow: 0 18px 42px rgba(201, 161, 74, 0.3);
  transform: translateY(-3px);
}


/* =========================================================
   ZAJEDNIČKI RESPONSIVE ZA PODSTRANICE
   ========================================================= */

@media (max-width: 1100px) {
  .about-grid
  { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  

  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(201, 161, 74, 0.25); }
  .about-stats > div:nth-child(4) { border-top: 1px solid rgba(201, 161, 74, 0.25); }

  .ns-contact-layout { grid-template-columns: 1fr; }
  .ns-contact-card { width: 100%; max-width: 780px; }
}
/* =========================================================
   KATEGORIJE — RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

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

  /* Poništi desktop pozicioniranje */
  .cards-grid--five .info-card:nth-child(n) {
    grid-column: auto;
  }
}


@media (max-width: 760px) {

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

  /* Svaka kartica puna širina */
  .cards-grid--five .info-card:nth-child(n) {
    grid-column: 1 / -1;
    width: 100%;
  }
}


@media (max-width: 760px) {
  .page-banner { min-height: 500px; }
  .page-banner__content { padding-bottom: 55px; }
  .page-banner h1 { font-size: clamp(2.8rem, 14vw, 4.8rem); }

  .power-ticker::before,
  .power-ticker::after { width: 42px; }

  .power-ticker__group span {
    min-height: 66px;
    padding-inline: 24px;
    font-size: 0.7rem;
  }

  .power-ticker__group span::after { margin-left: 24px; }

  .about-cards,
  .cards-section { padding: 72px 0; }

  .section-heading { text-align: left; }
  .section-heading p { margin-left: 0; }

  .about-grid,
  .cards-grid--five,
  .cards-grid--services { grid-template-columns: 1fr; }

  .about-card,
  .info-card,
  .info-card--service { min-height: 390px; }

  .about-stats { grid-template-columns: 1fr; padding: 8px 18px; }
  .about-stats > div { grid-template-columns: 45px 48px 1fr; padding: 18px 5px; }
  .about-stats > div + div,
  .about-stats > div:nth-child(3),
  .about-stats > div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(201, 161, 74, 0.25);
  }

  .ns-contact-content { padding: 75px 0; }
  .ns-form-row { grid-template-columns: 1fr; }
  .ns-contact-card { padding: 25px 18px; }
  .ns-contact-intro h2 { font-size: clamp(2.35rem, 12vw, 3.55rem); }

  .modal { padding: 14px; }
}


/* =========================================================
   PODSTRANICA 4 — INFO ZA KANDIDATE
   ========================================================= */

.page-banner--info .page-banner__image {
  background-image: url("../assets/images/banner-info.jpg");
  background-position: center 48%;
}

.page-banner--info .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(3, 10, 20, 0.98) 0%, rgba(4, 13, 27, 0.88) 38%, rgba(5, 15, 29, 0.32) 72%, rgba(3, 9, 18, 0.24) 100%),
    linear-gradient(180deg, rgba(3, 9, 18, 0.76) 0%, rgba(3, 9, 18, 0.06) 42%, rgba(3, 9, 18, 0.94) 100%);
}

.info-overview,
.candidate-section {
  position: relative;
  padding: clamp(88px, 8vw, 132px) 0;
}

.info-overview {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 8%, rgba(201, 161, 74, 0.08), transparent 34%),
    linear-gradient(180deg, #040b15 0%, #081523 100%);
}

.info-overview::before,
.candidate-section--first-aid::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(201, 161, 74, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 161, 74, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.info-overview .container,
.candidate-section .container {
  position: relative;
  z-index: 1;
}

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

.info-jump-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(201, 161, 74, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 8%, rgba(201, 161, 74, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(10, 24, 41, 0.94), rgba(4, 12, 22, 0.98));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.info-jump-card__number {
  position: absolute;
  top: 10px;
  right: 18px;
  color: rgba(201, 161, 74, 0.12);
  font-family: "Manrope", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}

.info-jump-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(201, 161, 74, 0.5);
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.08);
  font-size: 1.25rem;
}

.info-jump-card h3 {
  margin: 48px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.info-jump-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.info-jump-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--gold-400);
}

.info-jump-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227, 196, 111, 0.88);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38), 0 0 30px rgba(201, 161, 74, 0.1);
}

.candidate-section--first-aid {
  overflow: hidden;
  background: linear-gradient(180deg, #081523 0%, #040b15 100%);
}

.section-heading--left {
  max-width: 820px;
  margin-left: 0;
  text-align: left;
}

.section-heading--compact {
  margin-top: 68px;
}

.premium-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(201, 161, 74, 0.24);
  border-radius: 20px;
  background: rgba(6, 16, 29, 0.9);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
}

.premium-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.premium-table th,
.premium-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-table th {
  color: var(--gold-300);
  background: rgba(201, 161, 74, 0.07);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.premium-table td {
  color: rgba(255, 255, 255, 0.76);
}

.premium-table tbody tr:hover {
  background: rgba(201, 161, 74, 0.04);
}

.premium-table td:last-child span {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--gold-300);
  border: 1px solid rgba(201, 161, 74, 0.28);
  border-radius: 999px;
  background: rgba(201, 161, 74, 0.08);
  font-weight: 700;
}

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

.map-card {
  overflow: hidden;
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 18px;
  background: #06101d;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.map-card h3 {
  margin: 0;
  padding: 18px 20px;
  color: var(--gold-300);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
  filter: saturate(0.72) contrast(1.05);
}

.candidate-section--medical {
  background: linear-gradient(180deg, #040b15 0%, #07111f 100%);
}

.medical-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.medical-layout__image {
  overflow: hidden;
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.medical-layout__image img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.medical-layout__content > h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.medical-layout__content > p {
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.detail-stack {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.detail-panel {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(201, 161, 74, 0.18);
  border-radius: 18px;
  background: rgba(8, 21, 35, 0.66);
}

.detail-panel > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.1);
  font-size: 1.2rem;
}

.detail-panel h3 {
  margin: 0 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.detail-panel p,
.detail-panel li {
  color: var(--text-soft);
  line-height: 1.7;
}

.detail-panel p,
.detail-panel ul {
  margin: 0;
}

.detail-panel ul {
  padding-left: 18px;
}

.candidate-section--lectures {
  background:
    radial-gradient(circle at 20% 5%, rgba(28, 55, 94, 0.35), transparent 35%),
    linear-gradient(180deg, #07111f 0%, #040b15 100%);
}

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

.fact-card {
  padding: 28px;
  border: 1px solid rgba(201, 161, 74, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 24, 41, 0.88), rgba(5, 13, 24, 0.96));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.fact-card > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(201, 161, 74, 0.34);
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.08);
}

.fact-card strong {
  display: block;
  margin: 28px 0 8px;
  color: var(--gold-300);
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.fact-card h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.fact-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.wide-map {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 74, 0.22);
  border-radius: 22px;
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.3);
}

.wide-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.76) contrast(1.05);
}

.candidate-section--exams {
  background: linear-gradient(180deg, #040b15 0%, #07111f 100%);
}

.exam-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 24px;
}

.exam-layout__image {
  overflow: hidden;
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 22px;
}

.exam-layout__image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.exam-layout__cards {
  display: grid;
  gap: 18px;
}

.exam-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 22, 38, 0.92), rgba(4, 12, 22, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.exam-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(201, 161, 74, 0.35);
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.08);
  font-size: 1.25rem;
}

.exam-card__tag {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 7px 11px;
  color: var(--gold-300);
  border: 1px solid rgba(201, 161, 74, 0.24);
  border-radius: 999px;
  background: rgba(201, 161, 74, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exam-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
}

.exam-card p {
  margin: 0 0 10px;
  color: var(--text-soft);
  line-height: 1.7;
}

.section-cta {
  margin-top: 32px;
  text-align: center;
}

.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  color: #06101d;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8c970, #c9a14a);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .info-overview__grid,
  .maps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .medical-layout,
  .exam-layout {
    grid-template-columns: 1fr;
  }

  .exam-layout__image img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .info-overview,
  .candidate-section {
    padding: 72px 0;
  }

  .info-overview__grid,
  .maps-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel,
  .exam-card {
    grid-template-columns: 1fr;
  }

  .wide-map iframe {
    height: 340px;
  }
}



.page-banner--team .page-banner__image {
  background-image: url("../assets/images/banner-team.jpg");
  background-position: center 46%;
  filter: saturate(.75) contrast(1.08) brightness(.72);
}
.page-banner--team .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(3,10,20,.98) 0%, rgba(4,13,27,.88) 38%, rgba(5,15,29,.33) 72%, rgba(3,9,18,.3) 100%),
    linear-gradient(180deg, rgba(3,9,18,.78) 0%, rgba(3,9,18,.08) 42%, rgba(3,9,18,.95) 100%);
}
.team-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 145px) 0;
  background:
    radial-gradient(circle at 76% 8%, rgba(201,161,74,.08), transparent 35%),
    linear-gradient(180deg, #040b15 0%, #081523 52%, #040b16 100%);
}
.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(201,161,74,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,74,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 88%, transparent);
  pointer-events: none;
}
.team-section .container { position: relative; z-index: 1; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.team-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(201,161,74,.32);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10,24,41,.96), rgba(4,12,22,.98));
  box-shadow: 0 26px 58px rgba(0,0,0,.3);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), border-color 320ms ease, box-shadow 420ms ease;
}
.team-card:nth-last-child(2) { grid-column: 2 / span 2; }
.team-card:last-child { grid-column: 4 / span 2; }
.team-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #07111f;
}
.team-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4,11,20,.16) 72%, rgba(4,11,20,.72) 100%);
  pointer-events: none;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.86) contrast(1.04) brightness(.93);
  transition: transform 800ms cubic-bezier(.18,.72,.2,1), filter 420ms ease;
}
.team-card__category {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(201,161,74,.48);
  border-radius: 999px;
  color: var(--gold-300);
  background: rgba(4,11,20,.72);
  backdrop-filter: blur(12px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.team-card__body {
  position: relative;
  padding: 26px 26px 30px;
}
.team-card__icon {
  position: absolute;
  right: 24px;
  top: -25px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,161,74,.42);
  border-radius: 50%;
  color: var(--gold-400);
  background: #071321;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
  transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}
.team-card h3 {
  margin: 0;
  padding-right: 48px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.team-card p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.66);
  line-height: 1.65;
  font-size: .91rem;
}
.team-card:hover {
  transform: translateY(-9px);
  border-color: rgba(227,196,111,.82);
  box-shadow: 0 38px 80px rgba(0,0,0,.43), 0 0 32px rgba(201,161,74,.12);
}
.team-card:hover .team-card__photo img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.05) brightness(.98);
}
.team-card:hover .team-card__icon {
  color: #071321;
  background: var(--gold-400);
  transform: translateY(-3px);
}
.team-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: clamp(42px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(201,161,74,.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10,24,41,.92), rgba(4,12,22,.98));
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
}
.team-trust > div {
  min-height: 154px;
  padding: 28px;
  display: grid;
  grid-template-columns: 48px auto;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 16px;
}
.team-trust > div + div { border-left: 1px solid rgba(201,161,74,.16); }
.team-trust i {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--gold-400);
  font-size: 2rem;
}
.team-trust strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}
.team-trust span { color: var(--text-soft); font-size: .88rem; }

@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .team-card,
  .team-card:nth-last-child(2),
  .team-card:last-child { grid-column: auto; }
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card__photo { aspect-ratio: 4 / 4.8; }
  .team-trust { grid-template-columns: 1fr; }
  .team-trust > div + div { border-left: 0; border-top: 1px solid rgba(201,161,74,.16); }
}
