@import url('../webfonts/montserrat/montserrat.css');

/* -------------------------------------------------------------------------
   Audio trening — stranica (bez hedera/futera)
   ------------------------------------------------------------------------- */

:root {
  --at-color-primary: #055839;
  --at-color-cta-bg: #055839;
  --at-color-cta-text: #ffffff;
  --at-color-cta-hover-text: #055839;
  --at-color-cta-border: #055839;

  --at-font-family: 'Montserrat', system-ui, -apple-system, sans-serif;

  --at-font-h1-size: 52px;
  --at-font-h1-lh: 60px;
  --at-font-h1-weight: 600;

  --at-font-h2-size: 32px;
  --at-font-h2-lh: 40px;
  --at-font-h2-weight: 600;

  --at-font-body-size: 20px;
  --at-font-body-lh: 28px;
  --at-font-body-weight: 400;

  --at-font-features-size: 20px;
  --at-font-features-lh: 24px;
  --at-font-features-weight: 700;

  --at-font-price-size: 28px;
  --at-font-price-weight: 600;

  --at-font-cta-size: 20px;
  --at-font-cta-weight: 600;

  --at-cta-width: 311px;
  --at-cta-height: 64px;

  --at-info-cta-width: 440px;

  --at-space-block: 40px;
  --at-hero-height: 925px;
  --at-hero-logo-top: 44px;
  --at-hero-bottom-pad: 40px;
  --at-content-max: 1035px;

  --at-stres-col-left: 630px;
  --at-stres-text-narrow: 561px;
  --at-stres-gap: 133px;
  --at-stres-section-pad-y: 90px;
  --at-stres-section-pad-y-mobile: 40px;

  --at-stres-h2-size: 32px;
  --at-stres-h2-lh: 40px;
  --at-stres-h2-weight: 600;

  --at-section-gap-y: 40px;
  --at-info-text-width: 880px;
  --at-audio-info-bg: #E6EEEB;
  --at-audio-info-pad-y: 115px;
  --at-audio-info-pad-y-mobile: 40px;

  /* ----------------------------------------------------------------------- */
  /* Sekcija: kartice (benefiti)                                            */
  /* ----------------------------------------------------------------------- */
  --at-cards-pad-y: 120px;
  --at-cards-pad-y-mobile: 40px;
  --at-cards-heading-width: 353px;
  --at-cards-heading-size: 40px;
  --at-cards-heading-lh: 48px;

  --at-cards-gap-x: 7px;
  --at-cards-card-width: 391px;

  --at-cards-title-size: 24px;
  --at-cards-title-lh: 24px;
  --at-cards-elements-gap: 20px;
}

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

.audio-trening-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--at-font-family);
  color: var(--at-color-primary);
  background: #fff;
}

.audio-trening-page a {
  color: inherit;
}

.audio-trening-hero {
  min-height: var(--at-hero-height);
  background-color: #e8f0ec;
  background-image: url('../assets/images/audio_trening/audio_trening_hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.audio-trening-hero__inner {
  max-width: calc(var(--at-content-max) + 48px);
  margin: 0 auto;
  padding: var(--at-hero-logo-top) 24px var(--at-hero-bottom-pad);
  min-height: calc(var(--at-hero-height) - var(--at-hero-logo-top));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.audio-trening-hero__logo {
  display: block;
  width: 352px;
  height: 90px;
  object-fit: contain;
  margin: 0 0 var(--at-space-block);
}

.audio-trening-hero__title {
  margin: 0 0 var(--at-space-block);
  max-width: var(--at-content-max);
  font-family: var(--at-font-family);
  font-size: var(--at-font-h1-size);
  font-weight: var(--at-font-h1-weight);
  line-height: var(--at-font-h1-lh);
  color: var(--at-color-primary);
}

.audio-trening-hero__subtitle {
  margin: 0 0 var(--at-space-block);
  max-width: var(--at-content-max);
  font-family: var(--at-font-family);
  font-size: var(--at-font-h2-size);
  font-weight: var(--at-font-h2-weight);
  line-height: var(--at-font-h2-lh);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--at-color-primary);
}

.audio-trening-hero__text {
  margin: 0 0 var(--at-space-block);
  max-width: var(--at-content-max);
  font-family: var(--at-font-family);
  font-size: var(--at-font-body-size);
  font-weight: var(--at-font-body-weight);
  line-height: var(--at-font-body-lh);
  color: var(--at-color-primary);
}

.audio-trening-hero__features {
  margin: 0 0 var(--at-space-block);
  max-width: var(--at-content-max);
  font-family: var(--at-font-family);
  font-size: var(--at-font-features-size);
  font-weight: var(--at-font-features-weight);
  line-height: var(--at-font-features-lh);
  color: var(--at-color-primary);
  text-align: center;
}

.audio-trening-hero__price {
  margin: 0 0 var(--at-space-block);
  font-family: var(--at-font-family);
  font-size: var(--at-font-price-size);
  font-weight: var(--at-font-price-weight);
  line-height: 1.2;
  color: var(--at-color-primary);
}

.audio-trening-hero__cta {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--at-cta-width);
  min-width: var(--at-cta-width);
  height: var(--at-cta-height);
  padding: 0 12px;
  margin: 0;
  font-family: var(--at-font-family);
  font-size: var(--at-font-cta-size);
  font-weight: var(--at-font-cta-weight);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background-color: var(--at-color-cta-bg);
  border: 2px solid var(--at-color-cta-bg);
  border-radius: 9999px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.audio-trening-hero__cta:hover,
.audio-trening-hero__cta:focus-visible {
  background-color: transparent;
  color: var(--at-color-cta-hover-text) !important;
  border-color: var(--at-color-cta-border);
}

.audio-trening-hero__cta:focus-visible {
  outline: 2px solid var(--at-color-primary);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Sekcija: stres (dve kolone)
   ------------------------------------------------------------------------- */

.audio-trening-stres {
  background: #fff;
}

.audio-trening-stres__inner {
  box-sizing: border-box;
  max-width: calc(var(--at-stres-col-left) + var(--at-stres-gap) + 630px);
  margin: 0 auto;
  padding: var(--at-stres-section-pad-y) 24px;
  display: grid;
  grid-template-columns: minmax(0, var(--at-stres-col-left)) minmax(0, 1fr);
  column-gap: var(--at-stres-gap);
  row-gap: 0;
  align-items: center;
}

.audio-trening-stres__col--text {
  max-width: var(--at-stres-col-left);
}

.audio-trening-stres__title {
  margin: 0 0 var(--at-space-block);
  max-width: var(--at-stres-col-left);
  font-family: var(--at-font-family);
  font-size: var(--at-stres-h2-size);
  font-weight: var(--at-stres-h2-weight);
  line-height: var(--at-stres-h2-lh);
  color: var(--at-color-primary);
}

.audio-trening-stres__text {
  margin: 0 0 var(--at-space-block);
  max-width: var(--at-stres-text-narrow);
  font-family: var(--at-font-family);
  font-size: var(--at-font-body-size);
  font-weight: var(--at-font-body-weight);
  line-height: var(--at-font-body-lh);
  color: var(--at-color-primary);
}

.audio-trening-stres__text:last-child {
  margin-bottom: 0;
}

.audio-trening-stres__col--media {
  min-width: 0;
}

.audio-trening-stres__img {
  display: block;
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------------------------
   Sekcija: audio trening (informacije)
   ------------------------------------------------------------------------- */

.audio-trening-info {
  background: var(--at-audio-info-bg);
  margin-top: var(--at-section-gap-y);
  padding: var(--at-audio-info-pad-y) 24px;
}

.audio-trening-info__content {
  max-width: var(--at-info-text-width);
  margin: 0 auto;
  text-align: center;
}

.audio-trening-info__content .audio-trening-hero__cta {
  width: var(--at-info-cta-width);
  min-width: var(--at-info-cta-width);
}

.audio-trening-info__lead {
  margin: 0 0 40px;
  font-family: var(--at-font-family);
  font-size: var(--at-font-body-size);
  font-weight: 700;
  line-height: var(--at-font-body-lh);
  color: var(--at-color-primary);
}

.audio-trening-info__text {
  margin: 0 0 40px;
  font-family: var(--at-font-family);
  font-size: var(--at-font-body-size);
  font-weight: var(--at-font-body-weight);
  line-height: var(--at-font-body-lh);
  color: var(--at-color-primary);
}

/* Tablet */
@media screen and (max-width: 1024px) {
  :root {
    --at-font-h1-size: 40px;
    --at-font-h1-lh: 48px;
    --at-font-h2-size: 26px;
    --at-font-h2-lh: 34px;
    --at-font-body-size: 18px;
    --at-font-body-lh: 26px;
    --at-font-features-size: 18px;
    --at-font-features-lh: 22px;
    --at-font-price-size: 24px;
    --at-hero-height: auto;
    --at-min-hero: 780px;
    --at-stres-h2-size: 28px;
    --at-stres-h2-lh: 34px;
  }

  .audio-trening-hero {
    min-height: var(--at-min-hero);
  }

  .audio-trening-hero__logo {
    width: min(352px, 80vw);
    height: auto;
    max-height: 90px;
  }

  .audio-trening-stres__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 40px;
    max-width: 100%;
  }

  .audio-trening-stres__col--text {
    max-width: 100%;
  }

  .audio-trening-stres__title {
    max-width: 100%;
  }

  .audio-trening-stres__text {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --at-stres-section-pad-y: var(--at-stres-section-pad-y-mobile);
    --at-audio-info-pad-y: var(--at-audio-info-pad-y-mobile);
    --at-cards-pad-y: var(--at-cards-pad-y-mobile);
  }

  /* Na 992px i ispod: ukidamo vertikalni razmak između sekcija */
  .audio-trening-info {
    margin-top: 0;
  }
}

/* Mobilni (480px i manje) */
@media screen and (max-width: 480px) {
  :root {
    --at-font-h1-size: 28px;
    --at-font-h1-lh: 34px;
    --at-font-h2-size: 18px;
    --at-font-h2-lh: 24px;
    --at-font-body-size: 16px;
    --at-font-body-lh: 24px;
    --at-font-features-size: 15px;
    --at-font-features-lh: 20px;
    --at-font-price-size: 22px;
    --at-font-cta-size: 17px;
    --at-space-block: 28px;
    --at-hero-logo-top: 32px;
    --at-hero-bottom-pad: 32px;
    --at-min-hero: auto;
    --at-stres-h2-size: 22px;
    --at-stres-h2-lh: 28px;
    --at-audio-info-pad-y: var(--at-audio-info-pad-y-mobile);
  }

  .audio-trening-hero__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .audio-trening-hero__features {
    /* text-align: left; */
    align-self: stretch;
  }

  .audio-trening-hero__cta {
    width: min(var(--at-cta-width), 100%);
    min-width: 0;
    height: var(--at-cta-height);
  }

  .audio-trening-info__content .audio-trening-hero__cta {
    width: min(var(--at-info-cta-width), 100%);
    min-width: 0;
  }

  .audio-trening-stres__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .audio-trening-info {
    padding-left: 16px;
    padding-right: 16px;
  }

  .audio-trening-cards {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* -------------------------------------------------------------------------
   Sekcija: kartice (benefiti)
   ------------------------------------------------------------------------- */

.audio-trening-cards {
  background: transparent;
  margin-top: var(--at-section-gap-y);
  padding: var(--at-cards-pad-y) 24px;
}

.audio-trening-cards__inner {
  max-width: calc(var(--at-cards-card-width) * 3 + var(--at-cards-gap-x) * 2);
  margin: 0 auto;
  text-align: center;
}

.audio-trening-cards__heading {
  margin: 0 auto 42px;
  font-family: var(--at-font-family);
  font-size: var(--at-cards-heading-size);
  font-weight: 600;
  line-height: var(--at-cards-heading-lh);
  max-width: var(--at-cards-heading-width);
  color: var(--at-color-primary);
}

.audio-trening-cards__list {
  display: flex;
  justify-content: center;
  gap: var(--at-cards-gap-x);
}

.audio-trening-card {
  width: var(--at-cards-card-width);
  background: var(--at-audio-info-bg);
  padding: 32px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--at-cards-elements-gap);
  text-align: center;
}

.audio-trening-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.audio-trening-card__title {
  margin: 0;
  font-family: var(--at-font-family);
  font-size: var(--at-cards-title-size);
  font-weight: 700;
  line-height: var(--at-cards-title-lh);
  color: var(--at-color-primary);
  text-align: center;
}

.audio-trening-card__text {
  margin: 0;
  font-family: var(--at-font-family);
  font-size: 16px;
  font-weight: var(--at-font-body-weight);
  line-height: 18px;
  color: var(--at-color-primary);
  text-align: center;
}

/* Širine teksta po karticama (po specifikaciji) */
.audio-trening-card--one .audio-trening-card__title {
  max-width: 240px;
}
.audio-trening-card--one .audio-trening-card__text {
  max-width: 280px;
}

.audio-trening-card--two .audio-trening-card__title {
  max-width: 240px;
}
.audio-trening-card--two .audio-trening-card__text {
  max-width: 280px;
}

.audio-trening-card--three .audio-trening-card__title {
  max-width: 333px;
}
.audio-trening-card--three .audio-trening-card__text {
  max-width: 333px;
}

/* Responsive: na <=992 px kartice se slažu */
@media screen and (max-width: 992px) {
  .audio-trening-cards {
    padding: var(--at-cards-pad-y) 16px;
  }

  .audio-trening-cards__inner {
    max-width: 100%;
    padding: 0;
  }

  .audio-trening-cards__list {
    flex-direction: column;
    align-items: center;
    gap: var(--at-cards-elements-gap);
  }

  .audio-trening-card {
    width: min(var(--at-cards-card-width), 100%);
  }
}

/* -------------------------------------------------------------------------
   Sekcija: ukljuceno
   ------------------------------------------------------------------------- */

.audio-trening-ukljuceno {
  padding: 0 24px 40px;
}

.audio-trening-ukljuceno__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 586px) minmax(0, 1fr);
  column-gap: 154px;
  align-items: start;
}

.audio-trening-ukljuceno__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.audio-trening-ukljuceno__title {
  position: relative;
  margin: 0;
  max-width: 475px;
  font-family: var(--at-font-family);
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  color: var(--at-color-primary);
}

.audio-trening-ukljuceno__title::before {
  content: "UKLJUCENO";
  position: absolute;
  left: 0;
  top: -52px;
  font-family: var(--at-font-family);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(74, 108, 41, 0.08);
  pointer-events: none;
}

.audio-trening-ukljuceno__text {
  margin: 0;
  max-width: 586px;
  font-family: var(--at-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--at-color-primary);
}

.audio-trening-ukljuceno__image {
  display: block;
  width: min(498px, 100%);
  height: auto;
}

.audio-trening-ukljuceno__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.audio-trening-ukljuceno__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--at-color-primary);
}

.audio-trening-ukljuceno__item img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.audio-trening-ukljuceno__item p {
  margin: 0;
  font-family: var(--at-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--at-color-primary);
}

.audio-trening-ukljuceno__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .audio-trening-ukljuceno__inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  .audio-trening-ukljuceno {
    padding: 40px 16px 40px;
  }

  .audio-trening-ukljuceno__inner {
    justify-items: center;
  }

  .audio-trening-ukljuceno__left {
    align-items: center;
    text-align: center;
  }

  .audio-trening-ukljuceno__right {
    width: min(480px, 100%);
  }

  .audio-trening-ukljuceno__title::before {
    font-size: 42px;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
  }
}

@media screen and (max-width: 480px) {
  .audio-trening-ukljuceno__title {
    max-width: 100%;
    font-size: 28px;
    line-height: 34px;
  }

  .audio-trening-ukljuceno__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  .audio-trening-ukljuceno__item p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* -------------------------------------------------------------------------
   Sekcija: CTA
   ------------------------------------------------------------------------- */

.audio-trening-bonus-cta {
  margin-top: 25px;
  padding: 0 24px;
}

.audio-trening-bonus-cta__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 65px 24px;
  background: #e6eeeb;
  border: 1px solid #9fb59a;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.audio-trening-bonus-cta__title {
  margin: 0;
  max-width: 790px;
  font-family: var(--at-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  color: var(--at-color-primary);
}

.audio-trening-bonus-cta__text {
  margin: 0;
  max-width: 790px;
  font-family: var(--at-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  color: #000;
}

.audio-trening-bonus-cta__inner .audio-trening-hero__cta {
  width: auto;
  min-width: 0;
  padding: 0 28px;
}

@media screen and (max-width: 992px) {
  .audio-trening-bonus-cta {
    padding: 0 16px;
  }

  .audio-trening-bonus-cta__inner {
    padding: 40px 16px;
  }
}

@media screen and (max-width: 480px) {
  .audio-trening-bonus-cta__title {
    font-size: 24px;
    line-height: 32px;
  }

  .audio-trening-bonus-cta__text {
    font-size: 16px;
    line-height: 20px;
  }
}

/* -------------------------------------------------------------------------
   Sekcija: Vas vodic
   ------------------------------------------------------------------------- */

.audio-trening-vas-vodic {
  padding: 120px 24px 40px;
}

.audio-trening-vas-vodic__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 424px) minmax(0, 600px);
  column-gap: 133px;
  align-items: center;
  justify-content: space-between;
}

.audio-trening-vas-vodic__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  justify-self: start;
}

.audio-trening-vas-vodic__title {
  position: relative;
  margin: 0;
  max-width: 369px;
  color: var(--at-color-primary);
  font-family: var(--at-font-family);
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
}

.audio-trening-vas-vodic__title::before {
  content: "Vaš vodič";
  position: absolute;
  left: 0;
  top: -22px;
  color: rgba(74, 108, 41, 0.08);
  font-family: var(--at-font-family);
  font-size: 40px;
  font-weight: 800;
  line-height: 44px;
  pointer-events: none;
}

.audio-trening-vas-vodic__name,
.audio-trening-vas-vodic__role,
.audio-trening-vas-vodic__text {
  margin: 0;
  color: #222;
  font-family: var(--at-font-family);
}

.audio-trening-vas-vodic__name {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.audio-trening-vas-vodic__role {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.audio-trening-vas-vodic__text {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  max-width: 424px;
  color: #222;
}

.audio-trening-vas-vodic__right {
  width: 100%;
  max-width: 600px;
  justify-self: end;
}

.audio-trening-vas-vodic__image {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .audio-trening-vas-vodic {
    padding-left: 16px;
    padding-right: 16px;
  }

  .audio-trening-vas-vodic__inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
    max-width: 600px;
    justify-items: center;
  }

  .audio-trening-vas-vodic__left {
    align-items: center;
    text-align: center;
  }

  .audio-trening-vas-vodic__title,
  .audio-trening-vas-vodic__text {
    max-width: 100%;
  }

  .audio-trening-vas-vodic__title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 992px) {
  .audio-trening-vas-vodic {
    padding-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .audio-trening-vas-vodic__title {
    font-size: 28px;
    line-height: 34px;
  }

  .audio-trening-vas-vodic__title::before {
    font-size: 30px;
    line-height: 34px;
    top: -17px;
  }

  .audio-trening-vas-vodic__name {
    font-size: 20px;
    line-height: 24px;
  }

  .audio-trening-vas-vodic__role,
  .audio-trening-vas-vodic__text {
    font-size: 16px;
    line-height: 22px;
  }
}

/* -------------------------------------------------------------------------
   Sekcija: Sadrzaj programa (accordion)
   Preuzeto iz psihosomatika sekcije i prilagodjeno za audio trening.
   ------------------------------------------------------------------------- */

.ciljevi_programa {
  margin-top: 40px;
}

.ciljevi_programa h2 {
  position: relative;
  margin: 0;
  padding-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  color: var(--at-color-primary);
  font-family: var(--at-font-family);
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
}

.ciljevi_programa h2::before {
  content: "PITANJA";
  position: absolute;
  left: 50%;
  top: -44px;
  transform: translateX(-50%);
  font-family: var(--at-font-family);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(74, 108, 41, 0.08);
  pointer-events: none;
}

.paddingX-20 {
  padding: 0 20px !important;
}

.nn-accordion {
  width: 882px;
  max-width: 100%;
  margin: 0 auto;
  background: var(--at-audio-info-bg);
  border-radius: 12px;
  padding: 8px;
}

.acc-item:not(:last-child) {
  border-bottom: 1px solid #97b8aa;
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
  color: #111;
  font-size: clamp(1rem, 0.4rem + 1vw, 1.25rem);
  line-height: 1.3;
  transition: color 0.25s ease, background 0.25s ease;
  border-radius: 12px;
}

.acc-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.acc-title {
  font-weight: 500;
}

.acc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 32px;
  transition: transform 0.25s ease;
}

.chev {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transform: rotate(0deg);
  color: #111;
  transition: transform 0.25s ease;
}

.acc-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.acc-panel__inner {
  padding: 18px 12px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--at-color-primary);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.acc-list {
  margin: 8px 0 0;
  padding-left: 1.1em;
}

.acc-list li {
  margin: 0.25em 0;
}

.acc-item.is-open {
  border-bottom-color: transparent;
}

.acc-item.is-open .acc-trigger {
  background: var(--at-color-primary);
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.acc-item.is-open .chev {
  transform: rotate(-180deg);
  color: #111;
}

.acc-item.is-open .acc-panel__inner {
  opacity: 1;
}

.acc-trigger:hover:not(.is-open),
.acc-trigger:focus-visible:not(.is-open) {
  background: var(--at-color-primary);
  color: #fff;
}

@media screen and (max-width: 480px) {
  .ciljevi_programa h2 {
    font-size: 28px;
    line-height: 34px;
    padding-bottom: 28px;
  }

  .ciljevi_programa h2::before {
    font-size: 42px;
    top: -30px;
  }

  .paddingX-20 {
    padding: 0 16px !important;
  }

  .acc-trigger {
    padding: 12px 10px;
    gap: 10px;
  }
}

/* -------------------------------------------------------------------------
   Sekcija: prijava forme
   ------------------------------------------------------------------------- */

.prijava {
  background: transparent;
  padding-top: 120px;
  padding-bottom: 40px; /* razmak izmedju forme i futera */
  margin-top: 40px;
}

.prijava h2 {
  position: relative;
  color: var(--at-color-primary);
  text-align: center;
}

.prijava h2::before {
  content: "PORUČITE";
  position: absolute;
  left: 50%;
  top: -44px;
  transform: translateX(-50%);
  font-family: var(--at-font-family);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(74, 108, 41, 0.08);
  pointer-events: none;
}

.prijava p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--at-color-primary);
  max-width: 700px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  text-align: center;
}

.nn_form-wrapper .wpcf7-form {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin-top: 30px;
}

.nn_form-wrapper .wpcf7-text,
.nn_form-wrapper .wpcf7-email,
.nn_form-wrapper .wpcf7-tel {
  width: 100%;
  max-width: 520px;
  margin-bottom: 15px;
  font-size: 16px;
  height: 50px;
  padding-left: 10px;
  border-radius: 6px;
  border: 1px solid var(--at-color-primary);
  background: #fff;
  color: #222;
}

.nn_form-wrapper form br {
  display: none;
}

.nn_form-wrapper .wpcf7-submit {
  background: var(--at-color-primary);
  color: #fff !important;
  border: 1px solid var(--at-color-primary);
  border-radius: 9999px;
  padding: 12px 28px;
  font-family: var(--at-font-family);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nn_form-wrapper .wpcf7-submit:hover {
  background: transparent !important;
  color: var(--at-color-primary) !important;
}

/* Kontakt forma (CF7 markup sa nn_kontakt_* klasama) */
.nn_kontakt_omotac {
  max-width: 400px;
  margin: 0 auto;
}

.nn_kontakt_flex {
  text-align: center;
}

.nn_kontakt_flex label {
  display: block;
  font-size: 14px;
  color: var(--at-color-primary);
}

.nn_kontakt_flex .wpcf7-form-control {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 10px;
  border: 1px solid var(--at-color-primary);
  height: 40px;
  border-radius: 6px;
  padding: 0 10px;
}

.nn_kontakt_omotac .prihvati {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--at-color-primary);
  text-align: left;
}

.nn_kontakt_omotac .prihvati p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.nn_kontakt_omotac .prihvati input {
  width: 20px !important;
  margin-right: 0;
  margin-bottom: 0;
  flex: 0 0 20px;
}

.nn_kontakt_omotac .prihvati .wpcf7-list-item {
  margin: 0;
}

.nn_kontakt_omotac .check-message {
  display: inline;
  line-height: 1.4;
}

.nn_kontakt_omotac .wpcf7-submit {
  padding: 10px 30px;
  width: 100%;
}

.nn_footer {
  padding: 12px 16px 24px;
  text-align: center;
}

.nn_footer,
.nn_footer a {
  color: var(--at-color-primary);
}

@media screen and (max-width: 992px) {
  .prijava {
    padding-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .prijava h2::before {
    font-size: 42px;
    top: -30px;
  }
}

/* -------------------------------------------------------------------------
   Stranica: thank you audio trening
   ------------------------------------------------------------------------- */

.audio-trening-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.audio-trening-thankyou__box {
  width: min(740px, 100%);
  background: #e6eeeb;
  border-radius: 30px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.audio-trening-thankyou__icon {
  width: 42px;
  height: 42px;
}

.audio-trening-thankyou__content {
  max-width: 444px;
}

.audio-trening-thankyou__title {
  margin: 0 0 20px;
  font-family: var(--at-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: var(--at-color-primary);
}

.audio-trening-thankyou__text {
  margin: 0;
  font-family: var(--at-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--at-color-primary);
}
