/*
Theme Name: AUB Banking Theme
Theme URI: https://aub.org.ua
Author: AUB
Description: Асоціація Українських Банків — корпоративний шаблон з підтримкою Customizer та ACF
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aub-theme
Tags: banking, corporate, ukrainian
*/

:root {
  --clr-primary: #0f3d2e;
  --clr-primary-dark: #0b2d22;
  --clr-primary-light: #eaf5ef;
  --clr-secondary: #1f7a63;
  --clr-accent: #3ddc97;

  --clr-text: #163126;
  --clr-text-dark: #10271e;
  --clr-text-muted: #6e8b7c;

  --clr-bg: #ffffff;
  --clr-bg-gray: #f4fbf7;
  --clr-bg-dark: #0b1f17;
  --clr-bg-section: #10271e;

  --clr-border: rgba(31, 122, 99, 0.14);

  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --radius: 12px;
  --shadow: 0 10px 30px rgba(7, 28, 20, 0.10);
  --shadow-lg: 0 20px 50px rgba(7, 28, 20, 0.16);
  --transition: 0.25s ease;
  --container: 1200px;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
color: #fff;
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
background:#1c1c1c;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 23, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  padding: 10px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 72px; */
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--clr-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.site-logo .logo-text {
  line-height: 1.15;
}
.site-logo .logo-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
}

.site-logo .logo-text span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.65);
}

.site-header {
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-logo img {
  width: 220px; /* початковий розмір */
  max-width: 100%;
  height: auto;
  transition: width 0.3s ease;
}

.site-header.is-scrolled .custom-logo-link img {
  width: 150px;
}

.main-nav { display: flex; align-items: center; gap: 32px; margin-top: 10px;}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: color var(--transition), border-color var(--transition);
  border-bottom: 2px solid transparent;
  padding: 7px 10px 5px;
}


.main-nav a:hover,
.main-nav a.active {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}
.header-cta,
.btn-primary {
 background: linear-gradient(135deg, var(--clr-accent), #6f9e6b);
  color: #0b1f17 !important;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(61, 220, 151, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #4be3a4, #2fc485);
  transform: translateY(-2px);
}
.header-cta:hover { background: var(--clr-primary-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
    background: #ffffff;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #081711 0%, #0f3d2e 55%, #1f7a63 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 23, 17, 0.88) 22%, rgba(8, 23, 17, 0.55) 56%, rgba(8, 23, 17, 0.2) 100%);
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #62c734;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--clr-accent);
}
.btn-primary:hover { background: var(--clr-primary-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,.4);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.hero-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hero-badge small { display: block; font-size: 11px; opacity: .65; }

.hero-discount {

  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 15px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== EVENT INFO ===== */
.event-info-bar {
 background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(31, 122, 99, 0.10);
  box-shadow: 0 20px 50px rgba(7, 28, 20, 0.12);
  padding: 28px 0;
  max-width: 730px;
  margin: -61px auto 0;
  border-radius: 25px;
  position: relative;
}

.event-info-bar .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.event-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-items: center;
}

.event-info-item:first-child{
	border-right: 1px solid #d2d2d2;
	
}
.event-info-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary-light);
  color: var(--clr-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.event-info-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
color: #769c87;

  margin-bottom: 4px;
}
.event-info-value {
  font-size: 15px;
  font-weight: 600;
color: #fff;

  line-height: 1.5;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 60px 0;
}

/* Заголовки */
.section-eyebrow {
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    color: #adadad;
    margin-bottom: 0px;
	text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* CARD */
.stat-card {
    display: flex;
  align-items: flex-start;
  gap: 14px;
background: rgba(20, 70, 35, 0.72);
  border-radius: 12px;
  padding: 20px;
  min-height: 124px;
  align-items:center;
}

/* ICON */
.stat-card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
   
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon span {
    font-size: 22px;
}

/* CONTENT */
.stat-content {
    flex: 1;
}

.stat-number {
font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
} 

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #081711 0%, #0f2f24 45%, #14503d 100%);
  color: #ffffff;
  padding: 70px 0 40px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text strong { color: #375d47; }
.footer-brand .logo-text span { color: rgba(255,255,255,.4); }
.footer-tagline { font-size: 13px; margin-top: 16px; opacity: .6; line-height: 1.6; }
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: #375d47; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  opacity: .5;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
  }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .event-info-bar .container { grid-template-columns: 1fr; }
  .hero-discount { position: static; margin-top: 24px; display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 0; }
}



/* Про програму*/

.about-prog {
    padding: 80px 0;
    background: #000;
}

.about-prog .section-eyebrow {
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #62c734;
    margin: 0 0 12px;
}

.about-prog .section-title {
    text-align: center;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #1d2d44;
    max-width: 820px;
    margin: 0 auto 48px;
}

.about-prog__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 470px);
    gap: 48px;
    align-items: start;
}

.about-prog__content {
    color: #44556b;
    font-size: 17px;
    line-height: 1.8;
}

.about-prog__content p {
    margin: 0 0 22px;
}

.about-prog__content p:last-child {
    margin-bottom: 0;
}

.about-prog__video-col {
    display: flex;
    justify-content: center;
    position: sticky;
    top: 30px;
}

.about-video {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.about-video__circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 70px rgba(19, 39, 64, 0.16);
    background: #edf3ef;
}

.about-video__circle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 32, 55, 0.10) 0%,
        rgba(15, 32, 55, 0.25) 100%
    );
    pointer-events: none;
}

.about-video__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-video__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    color: #2e7d5b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-video__play svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

.about-video:hover .about-video__play {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

/* MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 28, 0.78);
}

.video-modal__dialog {
    position: relative;
    width: min(1000px, calc(100% - 32px));
    margin: 60px auto;
    z-index: 2;
}

.video-modal__close {
    position: absolute;
    right: 0;
    top: -48px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #1d2d44;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.video-modal__frame-wrap {
    position: relative;
    width: 100%;
    max-width: 420px; /* ширина як телефон */
    margin: 0 auto;
    aspect-ratio: 9 / 16; /* ВЕРТИКАЛЬНЕ ВІДЕО */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.video-modal__frame-wrap iframe {
    width: 100%;
    height: 100%;
}
/* RESPONSIVE */
@media (max-width: 1200px) {
    .about-video__circle {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 991px) {
    .about-prog {
        padding: 64px 0;
    }

    .about-prog .section-title {
        font-size: 34px;
        margin-bottom: 36px;
    }

    .about-prog__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-prog__video-col {
        position: static;
        order: -1;
    }

    .about-video__circle {
        width: 340px;
        height: 340px;
    }

    .about-prog__content {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width: 767px) {
    .about-prog .section-title {
        font-size: 28px;
    }

    .about-video__circle {
        width: 280px;
        height: 280px;
    }

    .about-video__play {
        width: 72px;
        height: 72px;
    }

    .about-video__play svg {
        width: 28px;
        height: 28px;
    }

    .video-modal__dialog {
        width: calc(100% - 20px);
        margin: 70px auto 20px;
    }

    .video-modal__close {
        top: -44px;
    }
}

@media (max-width: 480px) {
    .about-prog {
        padding: 52px 0;
    }

    .about-prog .section-title {
        font-size: 24px;
    }

    .about-prog__content {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-video__circle {
        width: 240px;
        height: 240px;
    }
}




.program-section {
    padding: 90px 0;
    
}

.program-section__head {
    margin-bottom: 36px;
}

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

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

.program-card {
   background: #000;
    border: 1px solid #000;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(24, 42, 33, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(24, 42, 33, 0.1);
}

.program-card__top {
    padding: 30px 32px 28px;
   background: linear-gradient(135deg, #29552f 0%, #111e10 100%);
    color: #fff;
}

.program-card__top--light {
   background: linear-gradient(135deg, #111e10 0%, #29552f 100%);
}

.program-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.program-card__title {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    max-width: 90%;
}

.program-card__body {
    padding: 28px 32px 32px;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.65;
    color: #334155;
}

.program-list li:last-child {
    margin-bottom: 0;
}

.program-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3c7b47;
}

.program-info {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: linear-gradient(180deg, #131413 0%, #2f5b35 100%);
  border: 1px solid #000;
  border-radius: 24px;
    padding: 28px;
}

.program-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.program-info__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: #ffffff;
    color: #357145;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(41, 85, 47, 0.08);
}

.program-info__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.program-info__item strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    color: #1d2d44;
    margin-bottom: 8px;
}

.program-info__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5d70;
}

@media (max-width: 1100px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-info {
        grid-template-columns: 1fr;
    }

    .program-card__title {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .program-section {
        padding: 60px 0;
    }

    .program-card {
        border-radius: 22px;
    }

    .program-card__top {
        padding: 24px 22px;
    }

    .program-card__body {
        padding: 22px;
    }

    .program-card__title {
        font-size: 24px;
    }

    .program-list li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .program-info {
        padding: 20px;
        border-radius: 20px;
    }

    .program-info__item strong {
        font-size: 16px;
    }

    .program-info__item p {
        font-size: 14px;
    }
}



.audience-section {
    padding: 90px 0;
    background: #000;
}

.audience-section__head {
    margin-bottom: 34px;
}

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

.audience-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 20px 45px rgba(24, 42, 33, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(24, 42, 33, 0.12);
}

.audience-card--dark {
    background: linear-gradient(135deg, #244d2a 0%, #2f6536 100%);
    color: #ffffff;
}

.audience-card--light {
    background: linear-gradient(135deg, #5a964f 0%, #76b266 100%);
    color: #ffffff;
}

.audience-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.audience-card__icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.audience-card__content {
    position: relative;
    z-index: 2;
    max-width: 88%;
}

.audience-card__title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: inherit;
}

.audience-card__text {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
}

.audience-card__bg-shape {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    z-index: 1;
}

.audience-card__bg-shape::before,
.audience-card__bg-shape::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.audience-card__bg-shape::before {
    width: 120px;
    height: 120px;
    left: -40px;
    top: -10px;
}

.audience-card__bg-shape::after {
    width: 70px;
    height: 70px;
    right: 120px;
    top: -30px;
}

@media (max-width: 1100px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 220px;
    }

    .audience-card__content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .audience-section {
        padding: 60px 0;
    }

    .audience-card {
        min-height: auto;
        border-radius: 22px;
        padding: 22px;
    }

    .audience-card__title {
        font-size: 22px;
    }

    .audience-card__text {
        font-size: 15px;
        line-height: 1.6;
    }

    .audience-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .audience-card__icon svg {
        width: 26px;
        height: 26px;
    }
}



.speakers-section {
    padding: 90px 0;
  
}

.speakers-section__head {
    margin-bottom: 38px;
}

.speakers-section__desc {
max-width: 840px;
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.7;
  color: #5b6b7d;
  text-align: center;
}

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

.speaker-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e7ece8;
    border-radius: 28px;
    padding: 28px 24px 24px;
    box-shadow: 0 18px 45px rgba(25, 42, 33, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(25, 42, 33, 0.1);
    border-color: #dfe9e2;
}

.speaker-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 153, 92, 0.12) 0%, rgba(92, 153, 92, 0) 70%);
    pointer-events: none;
}

.speaker-card__photo-wrap {
    position: relative;
    width: 132px;
    height: 132px;
    margin: 0 auto 22px;
}

.speaker-card__photo-wrap::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background:
        conic-gradient(
            from 180deg,
            rgba(53, 113, 69, 0.18),
            rgba(53, 113, 69, 0.02),
            rgba(53, 113, 69, 0.18)
        );
    z-index: 0;
}

.speaker-card__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 30px rgba(20, 40, 32, 0.12);
}

.speaker-card__badge {
    position: absolute;
    z-index: 2;
    right: -6px;
    bottom: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #2f6536;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(47, 101, 54, 0.25);
}

.speaker-card__content {
    text-align: center;
}

.speaker-card__name {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: #16324a;
}

.speaker-card__position {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    color: #2f6536;
	min-height: 75px;
}

.speaker-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #5b6b7d;
}

.speaker-card__socials {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.speaker-card__socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f2;
    color: #2f6536;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.speaker-card__socials a:hover {
    background: #2f6536;
    color: #ffffff;
    transform: translateY(-2px);
}

.speaker-card__socials svg {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

@media (max-width: 640px) {
    .speakers-section {
        padding: 60px 0;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .speaker-card {
        border-radius: 22px;
        padding: 24px 20px 20px;
    }

    .speaker-card__name {
        font-size: 24px;
    }

    .speaker-card__position,
    .speaker-card__text,
    .speakers-section__desc {
        font-size: 14px;
    }
}




.course-cta {
    position: relative;
    padding: 90px 0;
    background:
        linear-gradient(90deg, rgba(17, 28, 34, 0.82) 0%, rgba(17, 28, 34, 0.62) 45%, rgba(17, 28, 34, 0.72) 100%),
        url("assets/images/cta-bg.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.course-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(102, 187, 106, 0.15), transparent 35%);
    pointer-events: none;
}

.course-cta__wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 480px);
    gap: 42px;
    align-items: center;
}

.course-cta__content {
    color: #ffffff;
}

.course-cta__eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9fd0a4;
}

.course-cta__title {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 700;
    color: #ffffff;
    max-width: 760px;
}

.course-cta__text {
    margin: 0 0 26px;
    max-width: 680px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.course-cta__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.course-cta__features span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    backdrop-filter: blur(6px);
}

.course-cta__panel {
    background: rgba(0, 0, 0, 0.96);
   border: 1px solid rgba(10, 91, 34, 0.9);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}

.course-price-card {
    padding: 24px;
    border-radius: 22px;
   background: linear-gradient(135deg, #000 0%, #055016 100%);
    border: 1px solid #dcebdd;
    margin-bottom: 20px;
}

.course-price-card__label {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
  color: #fff;
    margin-bottom: 10px;
}

.course-price-card__value {
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    color: #1d2d44;
    margin-bottom: 10px;
}

.course-price-card__value span {
    font-size: 22px;
    font-weight: 700;
    color: #2f6536;
}

.course-price-card__note {
    font-size: 14px;
    line-height: 1.5;
   color: #a9abaf;
}

.course-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.course-btn {
    min-height: 60px;
    padding: 0 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.course-btn svg {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 auto;
}

.course-btn--primary {
    background: #2f6536;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(47, 101, 54, 0.22);
}

.course-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(47, 101, 54, 0.28);
}

.course-btn--secondary {
    background: #f4f7f5;
    color: #1d2d44;
    border: 1px solid #dbe6dd;
}

.course-btn--secondary:hover {
    transform: translateY(-2px);
    background: #eef4ef;
}

.course-cta__hint {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

@media (max-width: 1100px) {
    .course-cta__wrap {
        grid-template-columns: 1fr;
    }

    .course-cta__title {
        font-size: 38px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .course-cta {
        padding: 60px 0;
    }

    .course-cta__title {
        font-size: 30px;
    }

    .course-cta__text {
        font-size: 16px;
    }

    .course-cta__panel {
        padding: 20px;
        border-radius: 22px;
    }

    .course-price-card {
        padding: 18px;
        border-radius: 18px;
    }

    .course-price-card__value {
        font-size: 38px;
    }

    .course-price-card__value span {
        font-size: 18px;
    }

    .course-btn {
        min-height: 54px;
        font-size: 15px;
        padding: 0 18px;
    }
}



.site-footer {
    position: relative;
    background: linear-gradient(135deg, #244d2a 0%, #2f6536 100%);
    color: #ffffff;
    padding: 70px 0 40px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(420px, 1.2fr) minmax(280px, 1fr);
    gap: 48px;
    align-items: start;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.site-footer__logo img {
    display: block;
    max-width: 220px;
    height: auto;
}

.site-footer__mission {
    max-width: 340px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer__socials {
    display: flex;
    gap: 12px;
}

.site-footer__socials a {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer__socials a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.16);
}

.site-footer__socials svg {
    width: 22px;
    height: 22px;
    display: block;
}

.site-footer__people {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.footer-person {
    text-align: center;
    min-width: 180px;
}

.footer-person__photo {
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.06));
}

.footer-person__photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.footer-person__name {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.footer-person__link {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.7;
    transition: opacity 0.2s ease;
}

.footer-person__link:hover {
    opacity: 0.8;
}

.site-footer__title {
    margin: 0 0 26px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__contact-item a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.site-footer__contact-item a:hover {
    text-decoration: underline;
}

.site-footer__icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 4px;
    color: #d6f0d6;
}

.site-footer__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.site-footer__to-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #6be08a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer__to-top:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.12);
}

.site-footer__to-top svg {
    width: 22px;
    height: 22px;
    display: block;
}

@media (max-width: 1200px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__brand,
    .site-footer__contacts {
        text-align: center;
    }

    .site-footer__mission {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__socials {
        justify-content: center;
    }

    .site-footer__contact-item {
        justify-content: center;
    }

    .site-footer__to-top {
        position: static;
        margin: 36px auto 0;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 56px 0 32px;
    }

    .site-footer__logo img {
        max-width: 180px;
    }

    .site-footer__mission {
        font-size: 16px;
    }

    .site-footer__title {
        font-size: 26px;
    }

    .footer-person__name {
        font-size: 20px;
    }

    .footer-person__link,
    .site-footer__contact-item {
        font-size: 15px;
    }

    .site-footer__people {
        gap: 26px;
    }

    .footer-person__photo {
        width: 100px;
        height: 100px;
    }
}


.about-prog .section-title,
.program-info__item strong,
.speaker-card__name,
.course-price-card__value {
color: #ffffffc2;
}

.about-prog__content,
.program-list li,
.speaker-card__text,
.course-cta__hint,
.program-info__item p {
color: #b5f0d1;
}


.speaker-card {
  position: relative;
 position: relative;
  background: #212121;
  border: 1px solid rgba(31, 122, 99, 0.12);
  border-radius: 28px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 45px rgba(7, 28, 20, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(7, 28, 20, 0.14);
  border-color: rgba(31, 122, 99, 0.18);
}

.speaker-card__badge {
  background: var(--clr-primary);
  color: #ffffff;
}

.speaker-card__position {
 color: #2f6536;
}


/* ===== POPUP REGISTER ===== */
.aub-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.aub-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.aub-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 16, 12, 0.72);
  backdrop-filter: blur(6px);
}

.aub-popup__dialog {
  position: relative;
  width: min(560px, calc(100% - 24px));
  margin: 60px auto;
  background: linear-gradient(135deg, #111e10 0%, #29552f 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  overflow: hidden;
  z-index: 2;
}

.aub-popup__inner {
  padding: 34px 30px 30px;
}

.aub-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.aub-popup__close:hover {
  background: rgba(255,255,255,.14);
  transform: scale(1.05);
}

.aub-popup__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #62c734;
  margin-bottom: 12px;
}

.aub-popup__title {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.aub-popup__text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.aub-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aub-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aub-form__group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

.aub-form__group input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.aub-form__group input::placeholder {
  color: rgba(255,255,255,.42);
}

.aub-form__group input:focus {
  border-color: #3ddc97;
  box-shadow: 0 0 0 3px rgba(61,220,151,.16);
  background: rgba(255,255,255,.08);
}

.aub-form__submit {
margin-top: 8px;
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.aub-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(61,220,151,.24);
}

.aub-form__submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.aub-form__message {
  min-height: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: #62c734;
}

.aub-form__message.is-error {
  color: #ffb4b4;
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .aub-popup__dialog {
    width: calc(100% - 16px);
    margin: 24px auto;
    border-radius: 20px;
  }

  .aub-popup__inner {
    padding: 26px 18px 22px;
  }

  .aub-popup__title {
    font-size: 24px;
  }
}



.about-video-card__sound {
    position: absolute;
   right: 65px;
    bottom: 14px;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
      background: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
    padding: 0;
}

.about-video-card__sound:hover {
    transform: scale(1.06);
    background:rgba(20, 70, 35, 0.72);
}

.about-video-card__sound span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.about-video-card__sound img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}