*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 140px; }
body { font-family: Arial, Helvetica, sans-serif; color: #4B5563; line-height: 1.6; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; } h1, h2, h3, h4 { font-family: 'Inter', sans-serif; color: #232D4B; line-height: 1.2; }
h1 { font-size: 60px; font-weight: 700; line-height: 75px; }
h2 { font-size: 48px; font-weight: 700; line-height: 60px; }
h3 { font-size: 18px; font-weight: 700; line-height: 28px; }
p { font-size: 16px; line-height: 24px; } .btn { display: inline-block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px; border-radius: 10px; transition: all 0.2s; cursor: pointer; border: none; }
.btn--primary { background: #81BD51; color: #fff; padding: 14px 32px; }
.btn--primary:hover { background: #6ea842; }
.btn--lg { padding: 16px 40px; font-size: 16px; }
.btn--outline { background: transparent; border: 2px solid #E5E7EB; color: #232D4B; padding: 14px 32px; }
.btn--outline:hover { background: #81BD51; border-color: #81BD51; color: #fff; }
.btn--text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px; color: #232D4B; text-decoration: underline; text-underline-offset: 4px; padding: 14px 0; }
.btn--text:hover { color: #81BD51; }
.btn--xl { height: 60px; font-size: 18px; padding: 16px 48px; display: inline-flex; align-items: center; justify-content: center; } .green-link { font-family: 'Inter', sans-serif; color: #81BD51; font-weight: 600; font-size: 15px; transition: color 0.2s; }
.green-link:hover { color: #6ea842; }
.green-link:hover svg { transform: translateX(4px); }
.green-link svg { width: 20px; height: 20px; vertical-align: middle; margin-left: 4px; stroke: currentColor; fill: none; transition: transform 0.2s; } .navy-link { font-family: 'Inter', sans-serif; color: #232D4B; font-weight: 600; font-size: 15px; transition: color 0.2s; }
.navy-link:hover { color: #81BD51; }
.navy-link:hover svg { transform: translateX(4px); }
.navy-link svg { width: 20px; height: 20px; vertical-align: middle; margin-left: 4px; stroke: currentColor; fill: none; transition: transform 0.2s; }  .header { background: #fff; }
.utility-bar { background: #fff; border-bottom: 1px solid rgba(35,45,75,0.1); }
.utility-bar .container { display: flex; justify-content: flex-end; }
.utility-bar__links { display: flex; align-items: center; gap: 16px; height: 41px; }
.utility-bar__links a { font-family: Arial, sans-serif; font-size: 12px; color: #4B5563; }
.utility-bar__links a:hover { color: #81BD51; }
.utility-bar__sep { color: #D1D5DC; font-size: 12px; }
.utility-bar__platform { display: flex; align-items: center; gap: 6px; color: #4B5563; }
.utility-bar__platform svg { color: #81BD51; } .utility-bar { position: fixed; top: 0; left: 0; width: 100%; z-index: 101; }
.nav { position: fixed; top: 41px; left: 0; width: 100%; z-index: 100; background: #232D4B; transition: box-shadow 0.3s; }
body { padding-top: 121px; }
.nav--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__logo { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__menu a { font-family: Arial, sans-serif; font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.9); transition: color 0.2s; }
.nav__menu a:hover { color: #81BD51; }
.nav__item--mobile-cta { display: none; } .nav__cta { font-family: Arial, sans-serif; background: #81BD51; color: #fff; padding: 10px 24px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: background 0.2s; box-shadow: 0px 10px 15px rgba(129,189,81,0.2), 0px 4px 6px rgba(129,189,81,0.2); }
.nav__cta:hover { background: #6ea842; }
.nav__menu a { display: inline-flex; align-items: center; gap: 4px; }
.nav__dropdown-icon { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); flex-shrink: 0; }
.nav__item { position: relative; }
.nav__item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav__sub { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 220px; background: #fff; border-radius: 0 0 12px 12px; padding: 8px 0; box-shadow: 0 12px 32px rgba(0,0,0,0.15); z-index: 200; list-style: none; border: 1px solid rgba(0,0,0,0.06); border-top: 2px solid #81BD51; }
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub.nav__item--open .nav__sub { display: block; }
.nav__item--has-sub::after { content: ''; position: absolute; left: -20px; right: -20px; top: 100%; height: 20px; background: transparent; }
.nav__sub li { }
.nav__sub a { display: block; padding: 10px 24px; font-size: 13px; color: #4B5563 !important; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav__sub a:hover { background: rgba(129,189,81,0.08); color: #81BD51 !important; }
.nav__item--has-sub > a .nav__dropdown-icon { transition: transform 0.2s; }
.nav__item--has-sub:hover > a .nav__dropdown-icon,
.nav__item--has-sub.nav__item--open > a .nav__dropdown-icon { transform: rotate(180deg); fill: #81BD51; }
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .nav__mega { display: none; position: fixed; left: 0; right: 0; top: 121px; background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.15); z-index: 200; padding: 32px 0; border-top: 2px solid #81BD51; }
.nav__item--mega::after { content: ''; position: absolute; left: -100vw; right: -100vw; top: 100%; height: 40px; background: transparent; }
.nav__item--mega:hover .nav__mega,
.nav__item--mega.nav__item--open .nav__mega { display: block; }
.nav__mega-cards { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nav__mega-card { border-radius: 16px; padding: 28px; }
.nav__mega-card--green { background: linear-gradient(135deg, rgba(129,189,81,0.08), rgba(129,189,81,0.15)); border: 1px solid rgba(129,189,81,0.2); }
.nav__mega-card--navy { background: linear-gradient(135deg, rgba(35,45,75,0.05), rgba(35,45,75,0.12)); border: 1px solid rgba(35,45,75,0.15); }
.nav__mega-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.nav__mega-card-head span, .nav__mega-card-title { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: #232D4B !important; }
.nav__mega-card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.nav__mega-card--green .nav__mega-card-icon { background: #81BD51; }
.nav__mega-card--navy .nav__mega-card-icon { background: #232D4B; }
.nav__mega-links { list-style: none; margin-bottom: 16px; }
.nav__mega-links li { padding: 4px 0; }
.nav__mega-links a { font-size: 14px; color: #4B5563 !important; transition: color 0.15s; }
.nav__mega-links a:hover { color: #81BD51 !important; }
.nav__mega-card-head span, .nav__mega-card-title { color: #232D4B !important; }
.nav__mega-cta { display: inline-flex; align-items: center; gap: 6px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav__mega-cta svg { transition: transform 0.2s; }
.nav__mega-cta:hover svg { transform: translateX(4px); }
.nav__mega-cta--green { color: #81BD51 !important; }
.nav__mega-cta--green:hover { color: #6ea842 !important; }
.nav__mega-cta--navy { color: #232D4B !important; }
.nav__mega-cta--navy:hover { color: #81BD51 !important; }
.nav__mega-footer { max-width: 1200px; margin: 16px auto 0; padding: 0 32px; text-align: center; font-size: 13px; color: #4B5563; } .hero { padding: 60px 0 40px; }
.hero__grid { display: grid; grid-template-columns: 55% 45%; gap: 40px; align-items: center; } .hero__title { font-size: 60px; font-weight: 700; color: #232D4B; line-height: 75px; margin-bottom: 16px; } .hero__subtitle { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 600; color: #81BD51; line-height: 75px; margin-bottom: 16px; }
.hero__tags { margin-bottom: 16px; }
.hero__tag { display: inline-block; background: #D2E5E1; color: #232D4B; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; padding: 6px 16px; border-radius: 20px; } .hero__desc { font-size: 20px; line-height: 32.5px; color: #4B5563; margin-bottom: 24px; max-width: 680px; }
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__images {
display: flex;
align-items: flex-end; justify-content: flex-end; width: 86%;
max-width: 600px;
margin: 0 40px 0 auto; }
.hero__img-back {
position: static; width: 76%; border-radius: 20px;
transform: scaleX(-1); } .trust-bar { background: #F6FAF9; padding: 12px 0; }
.trust-bar__items { display: flex; align-items: center; gap: 32px; }
.trust-bar__item { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 14px; color: #232D4B; font-weight: 500; }
.trust-bar__item svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; flex-shrink: 0; } .comparison { padding: 80px 0; }
.comparison__layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 64px; align-items: start; }
.comparison__heading { margin-bottom: 40px; }
.comparison__heading h2 { margin-bottom: 24px; } .comparison__heading p { font-size: 18px; line-height: 29.25px; color: #4B5563; max-width: 700px; } .comparison__video { background: linear-gradient(135deg, #232D4B, rgba(35,45,75,0.8)); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; align-self: stretch; min-height: 460px; box-shadow: 0px 25px 50px -12px rgba(0,0,0,0.25); }
.comparison__video-play { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.comparison__video-play svg { fill: #fff; }
.comparison__video-label { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.6); }
.comparison__video-title { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-top: 4px; }
.comparison__video--img { padding: 0; background: none; }
.comparison__video--img img { width: 100%; height: 100%; object-fit: cover; }
.comparison__video--clip { padding: 0; background: #232D4B; min-height: auto; }
.comparison__video--clip video { width: 100%; height: auto; border-radius: 0; }
.comparison__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.comparison__card { border-radius: 16px; padding: 24px; }
.comparison__card:nth-child(1) { background: rgba(210,229,225,0.3); }
.comparison__card:nth-child(2) { background: rgba(129,189,81,0.1); }
.comparison__card:nth-child(3) { background: rgba(35,45,75,0.05); }
.comparison__card h3 { font-size: 18px; margin-bottom: 12px; }
.comparison__card p { font-size: 14px; color: #4B5563; line-height: 1.7; }
.comparison__link-wrap { text-align: right; margin-top: 16px; }  .paths { padding: 80px 0; background: rgba(210,229,225,0.2); }
.paths__header { text-align: center; margin-bottom: 40px; }
.paths__header h2 { margin-bottom: 16px; }
.paths__header p { font-size: 16px; color: #4B5563; }
.paths__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; } .paths__card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 42px; display: flex; flex-direction: column; }
.paths__card--academic { background: linear-gradient(143.79deg, rgba(129,189,81,0.05), rgba(129,189,81,0.1)); border: 2px solid rgba(129,189,81,0.2); }
.paths__card--vocational { background: linear-gradient(143.79deg, rgba(35,45,75,0.05), rgba(35,45,75,0.1)); border: 2px solid rgba(35,45,75,0.2); } .paths__card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.paths__card-icon--green { background: #81BD51; }
.paths__card-icon--green svg { fill: #fff; }
.paths__card-icon--navy { background: #232D4B; }
.paths__card-icon--navy svg { fill: #fff; }
.paths__card-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.paths__card-subtitle { font-size: 15px; color: #4B5563; margin-bottom: 24px; }
.paths__card-features { margin-bottom: 32px; flex: 1; }
.paths__card-feat { display: flex; align-items: center; gap: 12px; padding: 6px 0; font-size: 15px; color: #4B5563; }
.paths__card-feat svg { width: 20px; height: 20px; stroke: #81BD51; fill: none; flex-shrink: 0; } .features { padding: 80px 0; }
.features__header { text-align: center; margin-bottom: 48px; }
.features__layout { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start; }
.features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.features__item { padding: 24px; }
.features__item-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.features__item-icon svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; }
.features__item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.features__item p { font-size: 14px; color: #4B5563; line-height: 1.6; } .features__image { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); aspect-ratio: 452/648; }
.features__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; transform: scaleX(-1); }
.features__link { margin-top: 24px; } .mentoring { padding: 80px 0; background: #232D4B; }
.mentoring h2, .mentoring h3, .mentoring h4 { color: #fff; }
.mentoring__header { margin-bottom: 12px; }
.mentoring__header h2 { margin-bottom: 20px; } .mentoring__header p { font-size: 18px; line-height: 29.25px; color: #D1D5DC; max-width: 700px; }
.mentoring__layout { display: grid; grid-template-columns: 452fr 701fr; gap: 48px; margin-top: 32px; align-items: start; }
.mentoring__image { border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); aspect-ratio: 452/547; }
.mentoring__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; transform: scaleX(-1); }
.mentoring__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .mentoring__card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 24px; }
.mentoring__card-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(129,189,81,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.mentoring__card-icon svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; }
.mentoring__card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.mentoring__card p { font-size: 14px; color: #D1D5DC; line-height: 1.6; }
.mentoring__link { margin-top: 24px; text-align: right; } .enrollment { padding: 80px 0; }
.enrollment__header { text-align: center; margin-bottom: 32px; }
.enrollment__header h2 { margin-bottom: 16px; } .enrollment__header p { font-size: 18px; line-height: 28px; color: #4B5563; max-width: 700px; margin: 0 auto; } .enrollment__banner { background: linear-gradient(174.1deg, rgba(129,189,81,0.1), rgba(129,189,81,0.05)); border: 2px solid rgba(129,189,81,0.3); border-radius: 16px; padding: 24px 32px; text-align: center; margin-bottom: 48px; }
.enrollment__banner-text { font-family: 'Inter', sans-serif; color: #232D4B; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.enrollment__banner-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: #4B5563; } .enrollment__steps { display: flex; justify-content: center; gap: 32px; position: relative; margin-bottom: 56px; }
.enrollment__steps::before { content: ''; position: absolute; top: 32px; left: 15%; right: 15%; height: 2px; background: #E5E7EB; z-index: 0; }
.enrollment__step { text-align: center; flex: 1; position: relative; z-index: 1; }
.enrollment__step-num { width: 64px; height: 64px; border-radius: 50%; background: #81BD51; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 700; color: #fff; } .enrollment__step h4 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #232D4B; margin-bottom: 8px; }
.enrollment__step p { font-size: 13px; color: #4B5563; line-height: 1.6; max-width: 300px; margin: 0 auto; } .enrollment__faq-wrap { background: rgba(153,161,175,0.1); border-radius: 16px; padding: 40px 32px; margin-bottom: 32px; }
.enrollment__faq-title { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; color: #232D4B; text-align: center; margin-bottom: 24px; }
.enrollment__faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.enrollment__faq-item .q { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #232D4B; margin-bottom: 6px; }
.enrollment__faq-item .a { font-size: 14px; color: #4B5563; line-height: 1.6; }
.enrollment__cta { text-align: center; }  .pricing { padding: 80px 0; background: rgba(210,229,225,0.2); }
.pricing__header { text-align: center; margin-bottom: 48px; }
.pricing__header h2 { margin-bottom: 16px; }
.pricing__header p { font-size: 16px; color: #4B5563; max-width: 600px; margin: 0 auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; align-items: stretch; } .pricing__card { background: #fff; border: 2px solid #E5E7EB; border-radius: 16px; padding: 36px 28px; text-align: left; position: relative; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.pricing__plan-features { flex: 1; }
.pricing__plan-btn { margin-top: auto; }
.pricing__card:hover { border-color: #81BD51; box-shadow: 0 12px 32px rgba(129,189,81,0.15); transform: translateY(-4px); }
.pricing__card--featured { border-color: #81BD51; box-shadow: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.1); }
.pricing__badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: #81BD51; color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; padding: 6px 20px; border-radius: 20px; white-space: nowrap; } .pricing__plan-name { font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 400; line-height: 32px; color: #232D4B; margin-bottom: 4px; }
.pricing__plan-sub { font-size: 14px; color: #4B5563; margin-bottom: 16px; } .pricing__plan-price { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 800; line-height: 40px; color: #232D4B; margin-bottom: 24px; }
.pricing__plan-price span { font-size: 15px; font-weight: 500; color: #4B5563; }
.pricing__plan-features { margin-bottom: 28px; }
.pricing__plan-feat { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; color: #4B5563; line-height: 1.6; }
.pricing__plan-feat svg { width: 20px; height: 20px; stroke: #81BD51; fill: none; flex-shrink: 0; margin-top: 2px; } .pricing__plan-btn { display: block; width: 100%; padding: 14px; border: 2px solid #232D4B; border-radius: 10px; background: transparent; color: #232D4B; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; text-align: center; transition: all 0.3s; }
.pricing__card:hover .pricing__plan-btn { background: #81BD51; border-color: #81BD51; color: #fff; } .pricing__card--featured .pricing__plan-btn { background: transparent; border: 2px solid #232D4B; color: #232D4B; }
.pricing__actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; } .faq { padding: 80px 0; }
.faq__header { text-align: center; margin-bottom: 40px; }
.faq__list { max-width: 832px; margin: 0 auto 24px; } .faq__item { border: 2px solid #E5E7EB; border-radius: 14px; margin-bottom: 16px; overflow: hidden; }
.faq__item[open] { border-color: #E5E7EB; }
.faq__question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: #232D4B; list-style: none; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; content: ''; }
.faq__question-icon { width: 24px; height: 24px; flex-shrink: 0; margin-left: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 300; color: #4B5563; transition: color 0.2s; }
.faq__question-icon::before { content: '+'; }
.faq__item[open] .faq__question-icon::before { content: '\2212'; }
.faq__item[open] .faq__question-icon { color: #4B5563; }
.faq__answer { padding: 0 24px 20px; font-size: 15px; color: #4B5563; line-height: 1.7; }
.faq__link { text-align: center; }  .cta { padding: 128px 0 100px; background: linear-gradient(to bottom, rgba(210,229,225,0.3), #fff); text-align: center; } .cta h2 { margin-bottom: 16px; font-weight: 400; } .cta p { font-size: 20px; color: #4B5563; margin-bottom: 32px; } .cta .btn--primary { height: 60px; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; } .footer { background: #232D4B; padding: 48px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; } .footer__contact .footer__heading { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: #81BD51; margin-bottom: 8px; }
.footer__contact > p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
.footer__contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; } .footer__contact-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(129,189,81,0.15); border: 1px solid rgba(129,189,81,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer__contact-icon svg { width: 20px; height: 20px; stroke: #81BD51; fill: none; }
.footer__contact-label { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer__contact-value { font-size: 14px; color: rgba(255,255,255,0.8); }
.footer__contact-value a { color: rgba(255,255,255,0.8); }
.footer__contact-value a:hover { color: #81BD51; }
.footer__nav-col .footer__heading { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__nav-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 2; transition: color 0.2s; }
.footer__nav-col a:hover { color: #81BD51; } .footer__copyright { border-top: 1px solid #364153; padding: 16px 0 30px; }
.footer__copyright-inner { display: flex; justify-content: space-between; align-items: center; } .footer__copyright-text { font-size: 13px; color: #99A1AF; }
.footer__copyright-links a { font-size: 13px; color: #99A1AF; margin-left: 24px; }
.footer__copyright-links a:hover { color: #81BD51; }  .btn--primary { box-shadow: 0 4px 14px rgba(129,189,81,0.3); transition: all 0.25s ease; }
.btn--primary:hover { background: #6ea842; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(129,189,81,0.4); }
.btn--text:hover { color: #81BD51; }
.btn--xl:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(129,189,81,0.35); }  .trust-bar__item { transition: transform 0.2s; }
.trust-bar__item:hover { transform: translateY(-2px); } .comparison__card { transition: transform 0.25s, box-shadow 0.25s; }
.comparison__card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); } .comparison__video { transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.comparison__video:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -12px rgba(0,0,0,0.35); }
.comparison__video-play { transition: transform 0.3s, background 0.3s; }
.comparison__video:hover .comparison__video-play { transform: scale(1.15); background: rgba(255,255,255,0.25); } .paths__card { transition: transform 0.3s, box-shadow 0.3s; }
.paths__card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); } .features__item { transition: transform 0.25s; border-radius: 12px; }
.features__item:hover { transform: translateY(-4px); }
.features__item-icon { transition: transform 0.3s, background 0.3s; }
.features__item:hover .features__item-icon { transform: scale(1.1); background: rgba(129,189,81,0.2); } .features__image { transition: transform 0.4s, box-shadow 0.4s; }
.features__image:hover { transform: translateY(-6px); box-shadow: 0 28px 40px -8px rgba(0,0,0,0.15); } .mentoring__card { transition: transform 0.25s, background 0.25s, border-color 0.25s; }
.mentoring__card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); border-color: rgba(129,189,81,0.3); }
.mentoring__card-icon { transition: transform 0.3s; }
.mentoring__card:hover .mentoring__card-icon { transform: scale(1.1); } .mentoring__image { transition: transform 0.4s, box-shadow 0.4s; }
.mentoring__image:hover { transform: translateY(-6px); box-shadow: 0 35px 60px -15px rgba(0,0,0,0.35); } .enrollment__step { transition: transform 0.25s; }
.enrollment__step:hover { transform: translateY(-4px); }
.enrollment__step-num { transition: transform 0.3s, box-shadow 0.3s; }
.enrollment__step:hover .enrollment__step-num { transform: scale(1.1); box-shadow: 0 8px 20px rgba(129,189,81,0.3); } .faq__item { transition: border-color 0.2s, box-shadow 0.2s; }
.faq__item:hover { border-color: #81BD51; box-shadow: 0 4px 12px rgba(129,189,81,0.1); } .footer__nav-col a { position: relative; }
.footer__nav-col a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: #81BD51; transition: width 0.3s; }
.footer__nav-col a:hover::after { width: 100%; } .footer__contact-item { transition: transform 0.2s; }
.footer__contact-item:hover { transform: translateX(4px); }
.footer__contact-icon { transition: transform 0.25s, border-color 0.25s; }
.footer__contact-item:hover .footer__contact-icon { transform: scale(1.1); border-color: #81BD51; } .nav__cta { transition: background 0.2s, box-shadow 0.3s, transform 0.2s; }
.nav__cta:hover { background: #6ea842; transform: translateY(-1px); box-shadow: 0px 14px 20px rgba(129,189,81,0.35); }  .page-hero--rich { position: relative; overflow: hidden; padding: 56px 0 40px; }
.page-hero--rich::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); opacity: 0.5; z-index: 0; pointer-events: none; }
.page-hero--rich::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; filter: blur(100px); opacity: 0.3; z-index: 0; pointer-events: none; }
.page-hero--rich .container { position: relative; z-index: 1; }
.page-hero--rich h1 { font-size: 48px; line-height: 1.15; max-width: 700px; }
.page-hero--rich p { font-size: 19px; line-height: 1.65; color: #4B5563; max-width: 600px; margin-top: 16px; }
.page-hero--rich .btn { margin-top: 24px; } .hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-split__content { }
.hero-split__visual { position: relative; }
.hero-split__visual img { width: 100%; border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); }
.hero-split__visual--overlap { margin-top: -20px; margin-bottom: -20px; }
@media (max-width: 768px) {
.hero-split { grid-template-columns: 1fr; gap: 32px; }
.hero-split__visual { order: -1; max-width: 400px; margin: 0 auto; }
.hero-split__visual--overlap { margin: 0 auto; }
} .page-hero--o-liceum { background: linear-gradient(180deg, rgba(210,229,225,0.18) 0%, #fff 100%); }
.page-hero--o-liceum::before { background: radial-gradient(circle, rgba(210,229,225,0.6), transparent 70%); top: -200px; right: -100px; }
.page-hero--o-liceum::after { background: radial-gradient(circle, rgba(129,189,81,0.15), transparent 70%); bottom: -150px; left: -50px; } .page-hero--mentoring { background: linear-gradient(160deg, rgba(129,189,81,0.06) 0%, rgba(210,229,225,0.12) 50%, #fff 100%); }
.page-hero--mentoring::before { background: radial-gradient(circle, rgba(129,189,81,0.25), transparent 70%); top: -180px; left: -80px; }
.page-hero--mentoring::after { background: radial-gradient(circle, rgba(210,229,225,0.4), transparent 70%); bottom: -120px; right: -60px; } .page-hero--nauka { background: linear-gradient(145deg, rgba(35,45,75,0.04) 0%, rgba(210,229,225,0.1) 60%, #fff 100%); }
.page-hero--nauka::before { background: radial-gradient(circle, rgba(35,45,75,0.12), transparent 70%); top: -200px; right: -120px; }
.page-hero--nauka::after { background: radial-gradient(circle, rgba(129,189,81,0.12), transparent 70%); bottom: -100px; left: 10%; } .page-hero--rekrutacja { background: linear-gradient(135deg, rgba(129,189,81,0.08) 0%, rgba(129,189,81,0.02) 40%, #fff 100%); }
.page-hero--rekrutacja::before { background: radial-gradient(circle, rgba(129,189,81,0.3), transparent 70%); top: -150px; left: 20%; width: 600px; height: 600px; }
.page-hero--rekrutacja::after { background: radial-gradient(circle, rgba(210,229,225,0.3), transparent 70%); bottom: -80px; right: 5%; } .page-hero--sciezki { background: linear-gradient(120deg, rgba(129,189,81,0.07) 0%, rgba(129,189,81,0.02) 50%, rgba(35,45,75,0.06) 100%); }
.page-hero--sciezki::before { background: radial-gradient(circle, rgba(129,189,81,0.2), transparent 70%); top: -100px; left: -100px; }
.page-hero--sciezki::after { background: radial-gradient(circle, rgba(35,45,75,0.15), transparent 70%); top: -80px; right: -80px; } .page-hero--cennik { background: linear-gradient(180deg, rgba(210,229,225,0.15) 0%, rgba(210,229,225,0.05) 60%, #fff 100%); }
.page-hero--cennik::before { background: radial-gradient(circle, rgba(210,229,225,0.5), transparent 70%); top: -180px; left: 30%; }
.page-hero--cennik::after { background: radial-gradient(circle, rgba(129,189,81,0.1), transparent 70%); bottom: -100px; right: 20%; } .page-hero--faq { background: linear-gradient(180deg, rgba(35,45,75,0.03) 0%, #fff 100%); }
.page-hero--faq::before { background: radial-gradient(circle, rgba(210,229,225,0.35), transparent 70%); top: -200px; right: 10%; }
.page-hero--faq::after { display: none; } .page-hero--kontakt { background: linear-gradient(150deg, rgba(210,229,225,0.12) 0%, rgba(129,189,81,0.04) 50%, #fff 100%); }
.page-hero--kontakt::before { background: radial-gradient(circle, rgba(210,229,225,0.4), transparent 70%); top: -150px; left: 10%; }
.page-hero--kontakt::after { background: radial-gradient(circle, rgba(129,189,81,0.15), transparent 70%); bottom: -100px; right: -50px; } .page-hero--blog { background: linear-gradient(180deg, rgba(129,189,81,0.04) 0%, rgba(210,229,225,0.08) 50%, #fff 100%); }
.page-hero--blog::before { background: radial-gradient(circle, rgba(129,189,81,0.15), transparent 70%); top: -180px; left: -50px; }
.page-hero--blog::after { background: radial-gradient(circle, rgba(210,229,225,0.3), transparent 70%); bottom: -120px; right: -80px; } .page-hero--legal { background: linear-gradient(180deg, rgba(35,45,75,0.04) 0%, rgba(210,229,225,0.06) 50%, #fff 100%); padding: 56px 0 40px; }
.page-hero--legal::before { background: radial-gradient(circle, rgba(35,45,75,0.08), transparent 70%); top: -200px; right: 15%; }
.page-hero--legal::after { display: none; }
.page-hero--legal h1 { font-size: 42px; }
.page-hero--legal p { max-width: 560px; } .breadcrumbs { padding: 16px 0; background: rgba(210,229,225,0.1); border-bottom: 1px solid #E5E7EB; }
.breadcrumbs .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #4B5563; }
.breadcrumbs a { color: #81BD51; font-weight: 500; transition: color 0.2s; }
.breadcrumbs a:hover { color: #6ea842; }
.breadcrumbs__sep { color: #D1D5DC; }
.breadcrumbs__current { color: #232D4B; font-weight: 600; } .legal-text h2 { font-size: 28px; line-height: 1.3; margin-top: 48px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #81BD51; display: inline-block; }
.legal-text h2:first-of-type { margin-top: 0; }
.legal-text h3 { font-size: 20px; line-height: 1.4; margin-top: 32px; margin-bottom: 12px; color: #232D4B; }
.legal-text p { margin-bottom: 14px; }
.legal-text ol { margin: 16px 0; padding-left: 28px; }
.legal-text ol li { margin-bottom: 10px; list-style: decimal; }
.legal-text ul { margin: 12px 0; padding-left: 24px; }
.legal-text ul li { margin-bottom: 8px; list-style: disc; }
.legal-text a { color: #81BD51; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.legal-text a:hover { color: #6ea842; }
.legal-text__updated { font-size: 14px; color: #99A1AF; margin-bottom: 32px; font-style: italic; }
.legal-text__contact { margin-top: 48px; padding: 32px; background: linear-gradient(135deg, rgba(35,45,75,0.04), rgba(35,45,75,0.08)); border: 1px solid rgba(35,45,75,0.12); border-radius: 16px; }
.legal-text__contact h3 { margin-top: 0; margin-bottom: 12px; font-size: 18px; }
.legal-text__contact p { font-size: 15px; color: #4B5563; line-height: 1.8; margin-bottom: 0; }
@media (max-width: 768px) {
.page-hero--legal { padding: 60px 0 40px; }
.page-hero--legal h1 { font-size: 30px !important; }
.legal-text h2 { font-size: 22px; margin-top: 36px; }
.legal-text h3 { font-size: 18px; margin-top: 24px; }
.legal-text__contact { padding: 24px; }
} .section-dark { background: #232D4B; padding: 48px 0; position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(129,189,81,0.08), transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: #D1D5DC; }
.section-dark .section-title { color: #fff; }
.section-dark .section-lead { color: #D1D5DC; } .glass-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; backdrop-filter: blur(8px); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.glass-card:hover { transform: translateY(-4px); border-color: rgba(129,189,81,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.glass-card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(129,189,81,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.glass-card__icon svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; }
.glass-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.glass-card p { font-size: 14px; color: #D1D5DC; line-height: 1.7; } .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stats-row__item { padding: 24px; }
.stats-row__num { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 800; color: #81BD51; line-height: 1; margin-bottom: 8px; }
.stats-row__label { font-size: 14px; color: #4B5563; font-weight: 500; }
.section-dark .stats-row__label { color: #D1D5DC; } .two-col-premium { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-premium--reverse { direction: rtl; }
.two-col-premium--reverse > * { direction: ltr; }
.two-col-premium__visual { position: relative; border-radius: 20px; overflow: hidden; }
.two-col-premium__visual::after { content: ''; position: absolute; inset: 0; border-radius: 20px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); pointer-events: none; }
.two-col-premium__visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.two-col-premium__deco { position: relative; }
.two-col-premium__deco::before { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(129,189,81,0.08); filter: blur(60px); top: -40px; left: -40px; pointer-events: none; } .visual-placeholder { aspect-ratio: 4/3; border-radius: 20px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.visual-placeholder--green { background: linear-gradient(135deg, rgba(129,189,81,0.08), rgba(129,189,81,0.18)); border: 2px solid rgba(129,189,81,0.15); }
.visual-placeholder--navy { background: linear-gradient(135deg, rgba(35,45,75,0.06), rgba(35,45,75,0.15)); border: 2px solid rgba(35,45,75,0.12); }
.visual-placeholder--mint { background: linear-gradient(135deg, rgba(210,229,225,0.2), rgba(210,229,225,0.4)); border: 2px solid rgba(210,229,225,0.3); }
.visual-placeholder svg { width: 80px; height: 80px; opacity: 0.3; } .section-diagonal { position: relative; }
.section-diagonal::before { content: ''; position: absolute; top: -40px; left: 0; right: 0; height: 80px; background: inherit; clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); z-index: 1; } .accent-line { width: 60px; height: 4px; border-radius: 2px; background: #81BD51; margin-bottom: 20px; }
.accent-line--center { margin-left: auto; margin-right: auto; }
.accent-line--white { background: rgba(255,255,255,0.3); } .section-header { text-align: center; margin-bottom: 32px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; color: #4B5563; line-height: 1.65; max-width: 640px; margin: 0 auto; }
.section-dark .section-header p { color: #D1D5DC; } .page-section .accent-line,
.pricing .accent-line,
.faq-big .accent-line { display: none; }
.two-col-premium .accent-line { display: none; } .highlight-box { background: linear-gradient(135deg, rgba(129,189,81,0.06), rgba(129,189,81,0.14)); border: 2px solid rgba(129,189,81,0.2); border-radius: 16px; padding: 32px 40px; position: relative; overflow: hidden; }
.highlight-box::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #81BD51; border-radius: 2px 0 0 2px; }
.highlight-box h3 { font-size: 20px; margin-bottom: 10px; }
.highlight-box p { font-size: 15px; color: #4B5563; line-height: 1.7; } @media (max-width: 768px) {
.page-hero--rich { padding: 70px 0 50px; }
.page-hero--rich h1 { font-size: 32px !important; }
.page-hero--rich p { font-size: 16px; }
.stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
.stats-row__num { font-size: 36px; }
.two-col-premium { grid-template-columns: 1fr; gap: 32px; }
.two-col-premium--reverse { direction: ltr; }
.glass-card { padding: 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
.page-hero--rich h1 { font-size: 38px !important; }
.stats-row { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.two-col-premium { gap: 40px; }
}    @keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
from { opacity: 0; transform: scale(0.85); }
to { opacity: 1; transform: scale(1); }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes breathe {
0%, 100% { opacity: 0.5; transform: scale(1); }
50% { opacity: 0.8; transform: scale(1.05); }
}
@keyframes slideInFromBottom {
from { opacity: 0; transform: translateY(60px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
} @keyframes autoShow { to { opacity: 1; transform: translateY(0); } }
@keyframes autoShowX { to { opacity: 1; transform: translateX(0); } }
@keyframes autoShowScale { to { opacity: 1; transform: scale(1); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); animation: autoShow 0.7s 1.5s forwards; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); animation: none; } .animate-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; animation: autoShowX 0.7s 1.5s forwards; }
.animate-left.is-visible { opacity: 1; transform: translateX(0); animation: none; }
.animate-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; animation: autoShowX 0.7s 1.5s forwards; }
.animate-right.is-visible { opacity: 1; transform: translateX(0); animation: none; }
.animate-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; animation: autoShowScale 0.6s 1.5s forwards; }
.animate-scale.is-visible { opacity: 1; transform: scale(1); animation: none; } .comparison__card, .paths__card, .features__item, .mentoring__card, .pricing__card, .enrollment__step, .faq__item,
.reason-card, .audience-card, .pillar-card, .model-item, .steps-horizontal__item, .lecture-card, .effect-item, .contact-info__card, .blog-card, .glass-card {
opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s, box-shadow 0.2s; animation: autoShow 0.5s 2s forwards;
} .animate-on-scroll .sp-icon-card, .animate-on-scroll .sp-compare__card,
.animate-on-scroll .sp-day-card, .animate-on-scroll .sp-topic,
.animate-on-scroll .sp-speaker-card, .animate-on-scroll .sp-team-member,
.animate-on-scroll .sp-pricing-item, .animate-on-scroll .sp-checklist__item,
.animate-on-scroll .sp-qual-card, .animate-on-scroll .sp-rules__item,
.animate-on-scroll .sp-audience__item, .animate-on-scroll .sp-ecosystem__card,
.animate-on-scroll .sp-philosophy__card, .animate-on-scroll .sp-step,
.animate-on-scroll .sp-profile, .animate-on-scroll .sp-subject,
.animate-on-scroll .sp-obligation, .animate-on-scroll .sp-doc-card,
.animate-on-scroll .sp-rule, .animate-on-scroll .sp-faq-item,
.animate-on-scroll .sp-faq-cat, .animate-on-scroll .sp-info-col {
opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; animation: autoShow 0.5s 2s forwards;
} .animate-on-scroll .nw-day-card, .animate-on-scroll .nw-icard,
.animate-on-scroll .nw-pcard, .animate-on-scroll .nw-ocard,
.animate-on-scroll .mt-nav-card, .animate-on-scroll .mt-meet-card,
.animate-on-scroll .mt-topic-card, .animate-on-scroll .mt-lec-card,
.animate-on-scroll .ak-card, .animate-on-scroll .ak-card--sm,
.animate-on-scroll .kt-ccard, .animate-on-scroll .kt-dcard, .animate-on-scroll .kt-pill,
.animate-on-scroll .uc-action-green, .animate-on-scroll .uc-action-white, .animate-on-scroll .uc-card,
.animate-on-scroll .rd-act-green, .animate-on-scroll .rd-act-white, .animate-on-scroll .rd-card,
.animate-on-scroll .ol-card-white, .animate-on-scroll .ol-card-mint,
.animate-on-scroll .ol-card-glass, .animate-on-scroll .ol-team-card,
.animate-on-scroll [class*="anim-card"] {
opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; animation: autoShow 0.5s 2s forwards;
}
.stagger-in { opacity: 1 !important; transform: translateY(0) !important; }  .nw-day-card, .nw-icard, .nw-pcard, .nw-ocard { transition: transform 0.25s, box-shadow 0.25s; }
.nw-day-card:hover, .nw-icard:hover, .nw-pcard:hover, .nw-ocard:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); } .mt-nav-card, .mt-meet-card, .mt-topic-card { transition: transform 0.25s, box-shadow 0.25s; }
.mt-nav-card:hover, .mt-meet-card:hover, .mt-topic-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.mt-lec-card { transition: transform 0.25s, box-shadow 0.25s; }
.mt-lec-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); } .ak-card, .ak-card--sm { transition: transform 0.25s, box-shadow 0.25s; }
.ak-card:hover, .ak-card--sm:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); } .kt-ccard, .kt-dcard { transition: transform 0.25s, box-shadow 0.25s; }
.kt-ccard:hover, .kt-dcard:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.kt-pill { transition: transform 0.2s, background 0.2s; }
.kt-pill:hover { transform: translateY(-2px); } .uc-action-green, .uc-action-white, .uc-card,
.rd-act-green, .rd-act-white, .rd-card { transition: transform 0.25s, box-shadow 0.25s; }
.uc-action-green:hover, .uc-action-white:hover, .uc-card:hover,
.rd-act-green:hover, .rd-act-white:hover, .rd-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); } .ol-card-white, .ol-card-mint, .ol-card-glass, .ol-team-card { transition: transform 0.25s, box-shadow 0.25s; }
.ol-card-white:hover, .ol-card-mint:hover, .ol-card-glass:hover, .ol-team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); } [class*="anim-card"] { transition: transform 0.25s, box-shadow 0.25s; }
[class*="anim-card"]:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); } noscript ~ * .animate-on-scroll { opacity: 1; transform: none; } .page-hero--rich::before { animation: breathe 6s ease-in-out infinite; }
.page-hero--rich::after { animation: breathe 8s ease-in-out infinite 1s; }
.section-dark::before { animation: breathe 7s ease-in-out infinite; } .stats-row__num { transition: opacity 0.5s ease, transform 0.5s ease; }
.stats-row__num.count-animate { animation: countUp 0.6s ease forwards; } @keyframes pricePop { 0% { transform: scale(0.8); opacity: 0; } 60% { transform: scale(1.05); } 100% { transform: scale(1); opacity: 1; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 14px rgba(129,189,81,0.3); } 50% { box-shadow: 0 4px 24px rgba(129,189,81,0.6); } }
.btn--pulse { animation: pulse 2s ease-in-out infinite; }
.pricing__plan-price { opacity: 0; }
.price-pop { animation: pricePop 0.5s ease forwards; } .pricing__badge { background: linear-gradient(90deg, #81BD51, #9cd46e, #81BD51); background-size: 200% 100%; animation: shimmer 3s ease infinite; } .two-col-premium__visual img { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.two-col-premium__visual:hover img { transform: scale(1.04); }  .faq__answer { transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; } .glass-card, .reason-card, .audience-card { transform-style: preserve-3d; perspective: 1000px; } .enrollment__step-num { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s; }
.enrollment__step:hover .enrollment__step-num { transform: scale(1.15) rotate(-5deg); box-shadow: 0 12px 28px rgba(129,189,81,0.4); } .trust-bar__item svg { transition: transform 0.3s; }
.trust-bar__item:hover svg { transform: scale(1.2) rotate(5deg); } .glass-card:hover .glass-card__icon svg,
.reason-card:hover .reason-card__icon svg,
.model-item:hover .model-item__icon svg { animation: float 1.5s ease-in-out infinite; } .green-link svg, .navy-link svg { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.green-link:hover svg, .navy-link:hover svg { transform: translateX(6px); } .section-header .accent-line, .page-hero--rich .accent-line { transition: width 0.6s ease; width: 30px; }
.is-visible .accent-line, .page-hero--rich .accent-line { width: 60px; } .highlight-box { transition: box-shadow 0.3s; }
.highlight-box:hover { box-shadow: 0 8px 32px rgba(129,189,81,0.15); } @media (max-width: 768px) {
.container { padding: 0 16px; }
h1, .hero__title { font-size: 34px !important; line-height: 1.15 !important; }
h2 { font-size: 30px; line-height: 38px; }
.hero__subtitle { font-size: 24px; line-height: 1.3; }
.hero__desc { font-size: 16px; line-height: 26px; } .utility-bar { display: none; }
body { padding-top: 80px; }
body.nav-open { overflow: hidden; }
.nav { top: 0; } .nav__menu { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: #232D4B; padding: 24px 24px 40px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 100; gap: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.nav__menu.active { display: flex; }
.nav__menu a { font-size: 18px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.nav__menu > li:last-child > a { border-bottom: none; }
.nav__cta { display: inline-flex; padding: 8px 16px; font-size: 13px; margin-left: auto; margin-right: 12px; }
.nav__hamburger { display: block; }
.nav__sub { position: static; transform: none; min-width: auto; box-shadow: none; border-radius: 0; padding: 4px 0 8px 20px; background: transparent; border: none; }
.nav__item--has-sub .nav__sub { display: none; }
.nav__item--has-sub.nav__item--open .nav__sub { display: block; }
.nav__item--has-sub::after { display: none; }
.nav__sub a { padding: 10px 0; font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.7) !important; border-bottom: none !important; }
.nav__sub a:hover { color: #81BD51 !important; } .nav__mega { position: static; box-shadow: none; padding: 4px 0 8px 20px; background: transparent; border: none; border-top: none; }
.nav__item--mega:hover .nav__mega { display: none; }
.nav__item--mega.nav__item--open .nav__mega { display: block; }
.nav__mega-cards { display: block; padding: 0; }
.nav__mega-card { padding: 0; background: none !important; border: none !important; border-radius: 0; }
.nav__mega-card + .nav__mega-card { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.nav__mega-card-head { margin-bottom: 0; }
.nav__mega-card-icon { display: none; }
.nav__mega-card-title { display: block; padding: 8px 0 4px; font-size: 13px !important; font-weight: 600 !important; color: rgba(255,255,255,0.45) !important; border-bottom: none !important; text-transform: uppercase; letter-spacing: 0.05em; }
.nav__mega-card-title:hover { color: #81BD51 !important; }
.nav__mega-links { margin-bottom: 0; }
.nav__mega-links li { padding: 0; }
.nav__mega-links a { display: block; padding: 10px 0; font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.7) !important; border-bottom: none !important; }
.nav__mega-links a:hover { color: #81BD51 !important; background: none; }
.nav__mega-cta, .nav__menu .nav__mega-cta { display: none !important; }
.nav__mega-footer { display: none; } .nav__item--mobile-cta { display: list-item; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); list-style: none; }
.nav__mobile-cta { background: #81BD51; color: #fff !important; font-size: 17px !important; font-weight: 600 !important; padding: 16px 24px !important; border-radius: 12px; text-align: center; justify-content: center !important; gap: 8px; border-bottom: none !important; } .hero { padding: 40px 0 20px; }
.hero__grid { grid-template-columns: 1fr; gap: 32px; }
.hero__images { display: none; }
.hero__actions { flex-direction: column; align-items: flex-start; } .trust-bar__items { flex-direction: column; align-items: flex-start; gap: 12px; padding: 8px 0; } .comparison { padding: 60px 0; }
.comparison__layout { grid-template-columns: 1fr; gap: 32px; }
.comparison__cards { grid-template-columns: 1fr; }
.comparison__video--clip { max-height: calc(100vh - 140px); }
.comparison__video--clip video { max-height: calc(100vh - 140px); } .paths { padding: 60px 0; }
.paths__grid { grid-template-columns: 1fr; } .features { padding: 60px 0; }
.features__layout { grid-template-columns: 1fr; }
.features__grid { grid-template-columns: 1fr; }
.features__image { order: -1; } .mentoring { padding: 60px 0; }
.mentoring__layout { grid-template-columns: 1fr; }
.mentoring__cards { grid-template-columns: 1fr; }
.mentoring__link { text-align: left; } .enrollment { padding: 60px 0; }
.enrollment__steps { flex-direction: column; gap: 24px; }
.enrollment__steps::before { display: none; }
.enrollment__faq-grid { grid-template-columns: 1fr; } .pricing { padding: 60px 0; }
.pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; } .cta { padding: 60px 0; } .footer__grid { grid-template-columns: 1fr; gap: 32px; }
.footer__copyright-inner { flex-direction: column; gap: 12px; text-align: center; }
.footer__copyright-links a { margin-left: 0; margin-right: 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
.hero__grid { grid-template-columns: 1fr 1fr; }
.hero__title { font-size: 42px !important; line-height: 52px !important; }
.pricing__grid { grid-template-columns: 1fr 1fr; }
.footer__grid { grid-template-columns: 1fr 1fr; }
}  .page-hero { padding: 60px 0 40px; background: linear-gradient(180deg, rgba(210,229,225,0.15) 0%, #fff 100%); }
.page-hero h1 { font-size: 42px; font-weight: 700; line-height: 1.2; color: #232D4B; margin-bottom: 16px; max-width: 800px; }
.page-hero p { font-size: 18px; line-height: 29px; color: #4B5563; max-width: 700px; margin-bottom: 24px; }
.page-hero .btn { margin-top: 8px; }
.page-hero--compact { padding: 40px 0 24px; } .page-content { padding: 48px 0 64px; }
.page-content__body { max-width: 832px; margin: 0 auto; font-size: 16px; line-height: 1.7; color: #4B5563; }
.page-content__body h2 { margin: 32px 0 16px; }
.page-content__body h3 { margin: 24px 0 12px; }
.page-content__body p { margin-bottom: 16px; }
.page-content__body ul, .page-content__body ol { margin: 16px 0; padding-left: 24px; }
.page-content__body li { margin-bottom: 8px; list-style: disc; }
.page-content__body img { border-radius: 16px; margin: 24px 0; } .page-section { padding: 48px 0; }
.page-section--alt { background: rgba(210,229,225,0.2); }
.page-section--dark { background: #232D4B; color: #D1D5DC; }
.page-section--dark h2, .page-section--dark h3, .page-section--dark h4 { color: #fff; }
.section-title { text-align: center; margin-bottom: 32px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-title--light { color: #fff; }
.section-lead { font-size: 18px; line-height: 29px; color: #4B5563; max-width: 700px; margin-bottom: 32px; }
.section-lead--light { color: #D1D5DC; text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-note { font-size: 15px; color: #4B5563; margin-top: 24px; font-style: italic; } .section-two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.section-two-col__image { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.section-two-col__image img { width: 100%; height: auto; display: block; border-radius: 16px; } .trust-points { margin-top: 32px; }
.trust-points__item { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 15px; color: #232D4B; font-weight: 500; }
.trust-points__item svg { width: 20px; height: 20px; stroke: #81BD51; fill: none; flex-shrink: 0; } .reason-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px; transition: transform 0.25s, box-shadow 0.25s; }
.reason-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.reason-card__num { width: 48px; height: 48px; border-radius: 50%; background: #81BD51; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.reason-card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.reason-card__icon svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; }
.reason-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.reason-card p { font-size: 14px; color: #4B5563; line-height: 1.7; } .audience-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px; transition: transform 0.25s, box-shadow 0.25s; }
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.audience-card__icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.audience-card__icon--green { background: rgba(129,189,81,0.12); color: #81BD51; }
.audience-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.audience-card p { font-size: 14px; color: #4B5563; line-height: 1.7; } .pillar-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; transition: transform 0.25s, background 0.25s; }
.pillar-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.pillar-card__num { width: 48px; height: 48px; border-radius: 50%; background: rgba(129,189,81,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #81BD51; margin-bottom: 16px; }
.pillar-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pillar-card p { font-size: 14px; color: #D1D5DC; line-height: 1.7; } .model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.model-item { padding: 24px; transition: transform 0.25s; border-radius: 12px; }
.model-item:hover { transform: translateY(-4px); }
.model-item__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.model-item__icon svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; }
.model-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.model-item p { font-size: 14px; color: #4B5563; line-height: 1.6; } .steps-horizontal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-horizontal::before { content: ''; position: absolute; top: 32px; left: 15%; right: 15%; height: 2px; background: #E5E7EB; z-index: 0; }
.steps-horizontal__item { text-align: center; position: relative; z-index: 1; }
.steps-horizontal__num { width: 64px; height: 64px; border-radius: 50%; background: #81BD51; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 700; color: #fff; transition: transform 0.3s, box-shadow 0.3s; }
.steps-horizontal__item:hover .steps-horizontal__num { transform: scale(1.1); box-shadow: 0 8px 20px rgba(129,189,81,0.3); }
.steps-horizontal__item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.steps-horizontal__item p { font-size: 14px; color: #4B5563; line-height: 1.6; max-width: 300px; margin: 0 auto; } .lecture-cards { margin-top: 24px; }
.lecture-card { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid #E5E7EB; }
.lecture-card:last-child { border-bottom: none; }
.lecture-card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lecture-card__icon svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; }
.lecture-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.lecture-card p { font-size: 14px; color: #4B5563; line-height: 1.6; } .effects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.effect-item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; padding: 20px 24px; font-size: 15px; color: #232D4B; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s; }
.effect-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.effect-item svg { width: 20px; height: 20px; stroke: #81BD51; fill: none; flex-shrink: 0; } .faq-big { padding: 0 0 80px; }
.faq-big__nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0 0 48px; border-bottom: 1px solid #E5E7EB; margin-bottom: 48px; }
.faq-big__nav-item { display: inline-block; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #4B5563; padding: 10px 20px; border: 1px solid #E5E7EB; border-radius: 24px; transition: all 0.2s; }
.faq-big__nav-item:hover, .faq-big__nav-item--active { background: #81BD51; color: #fff; border-color: #81BD51; }
.faq-big__category { margin-bottom: 48px; }
.faq-big__category-title { font-size: 28px; font-weight: 700; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid #81BD51; display: inline-block; } .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info__card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; margin-bottom: 16px; transition: transform 0.2s, box-shadow 0.2s; }
.contact-info__card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.contact-info__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(129,189,81,0.12); border: 1px solid rgba(129,189,81,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 24px; height: 24px; }
.contact-info__card h3 { font-size: 16px; font-weight: 700; color: #232D4B; margin-bottom: 4px; }
.contact-info__value { font-size: 15px; color: #232D4B; font-weight: 600; }
.contact-info__value a { color: #232D4B; }
.contact-info__value a:hover { color: #81BD51; }
.contact-info__note { font-size: 13px; color: #4B5563; margin-top: 2px; } .contact-form h2 { font-size: 28px; margin-bottom: 24px; }
.ramus-form__group { margin-bottom: 20px; }
.ramus-form__group label { display: block; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #232D4B; margin-bottom: 6px; }
.ramus-form__group input,
.ramus-form__group textarea { width: 100%; padding: 12px 16px; border: 2px solid #E5E7EB; border-radius: 10px; font-family: Arial, sans-serif; font-size: 15px; color: #232D4B; transition: border-color 0.2s; outline: none; }
.ramus-form__group input:focus,
.ramus-form__group textarea:focus { border-color: #81BD51; }
.ramus-form__group textarea { resize: vertical; min-height: 120px; } .cta__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; } .blog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; justify-content: center; }
.blog-filter__tag { display: inline-block; padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; border: 1px solid rgba(129,189,81,0.3); color: #4B5563; background: rgba(255,255,255,0.8); transition: all 0.25s; }
.blog-filter__tag:hover { border-color: #81BD51; color: #81BD51; background: rgba(129,189,81,0.05); }
.blog-filter__tag--active { background: #81BD51; color: #fff; border-color: #81BD51; }
.blog-filter__tag--active:hover { background: #6ea844; color: #fff; } .blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #E5E7EB; }
.blog-featured__image { display: block; border-radius: 20px; overflow: hidden; aspect-ratio: 16/10; }
.blog-featured__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-featured:hover .blog-featured__image img { transform: scale(1.03); }
.blog-featured__image .blog-card__image--placeholder { aspect-ratio: 16/10; border-radius: 20px; }
.blog-featured__body h2 { font-size: 28px; font-weight: 700; line-height: 1.3; margin: 12px 0 16px; }
.blog-featured__body h2 a { color: #232D4B; transition: color 0.2s; }
.blog-featured__body h2 a:hover { color: #81BD51; }
.blog-featured__body p { font-size: 15px; color: #4B5563; line-height: 1.7; margin-bottom: 20px; } .blog-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.blog-card__meta time { font-size: 13px; color: #4B5563; }
.blog-card__category { display: inline-block; padding: 3px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; background: rgba(129,189,81,0.12); color: #5a8a33; transition: background 0.2s; }
.blog-card__category:hover { background: rgba(129,189,81,0.25); } .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #E5E7EB; border-radius: 20px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.blog-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card__image img { transform: scale(1.06); }
.blog-card__image--placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(210,229,225,0.3), rgba(129,189,81,0.08)); min-height: 200px; }
.blog-card__image--placeholder svg { width: 48px; height: 48px; }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__body h3 { font-size: 18px; font-weight: 700; margin: 4px 0 12px; line-height: 1.35; }
.blog-card__body h3 a { color: #232D4B; transition: color 0.2s; }
.blog-card__body h3 a:hover { color: #81BD51; }
.blog-card__body p { font-size: 14px; color: #4B5563; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card__body .green-link { margin-top: auto; }
.blog-pagination { text-align: center; padding: 48px 0 0; }
.blog-pagination .page-numbers { display: inline-block; padding: 10px 18px; margin: 0 4px; border: 1px solid #E5E7EB; border-radius: 10px; font-size: 14px; font-weight: 600; color: #4B5563; transition: all 0.2s; }
.blog-pagination .page-numbers.current { background: #81BD51; color: #fff; border-color: #81BD51; }
.blog-pagination .page-numbers:hover { border-color: #81BD51; color: #81BD51; }
.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty h2 { margin-bottom: 12px; } .post-single__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; color: #4B5563; flex-wrap: wrap; }
.post-single__layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.post-single__body { min-width: 0; }
.post-single__thumbnail { margin-bottom: 32px; border-radius: 16px; overflow: hidden; }
.post-single__thumbnail img { width: 100%; height: auto; border-radius: 16px; }
.post-single__content { font-size: 16px; line-height: 1.8; color: #4B5563; }
.post-single__content h2 { font-size: 24px; color: #232D4B; margin: 36px 0 16px; }
.post-single__content h3 { font-size: 20px; color: #232D4B; margin: 28px 0 12px; }
.post-single__content p { margin-bottom: 18px; }
.post-single__content ul, .post-single__content ol { margin: 16px 0; padding-left: 24px; }
.post-single__content li { margin-bottom: 8px; list-style: disc; }
.post-single__content img { border-radius: 12px; margin: 24px 0; }
.post-single__content strong { color: #232D4B; }
.post-single__share { display: flex; align-items: center; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #E5E7EB; }
.post-single__share span { font-size: 14px; font-weight: 600; color: #232D4B; }
.post-single__share-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(129,189,81,0.1); color: #81BD51; transition: all 0.2s; }
.post-single__share-btn:hover { background: #81BD51; color: #fff; }
.post-single__sidebar { position: sticky; top: 140px; }
.post-single__sidebar-box { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.post-single__sidebar-box h4 { font-size: 16px; font-weight: 700; color: #232D4B; margin-bottom: 12px; }
.post-single__sidebar-box p { font-size: 14px; color: #4B5563; line-height: 1.6; margin-bottom: 16px; }
.post-single__sidebar-box--cta { background: linear-gradient(135deg, rgba(129,189,81,0.08), rgba(129,189,81,0.15)); border-color: rgba(129,189,81,0.25); }
.post-single__related { list-style: none; padding: 0; }
.post-single__related li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.post-single__related li:last-child { border-bottom: none; }
.post-single__related a { font-size: 14px; color: #232D4B; transition: color 0.2s; font-weight: 500; }
.post-single__related a:hover { color: #81BD51; }
.post-single__nav { display: flex; justify-content: space-between; gap: 24px; }
.post-single__nav a { color: #81BD51; font-weight: 600; transition: opacity 0.2s; }
.post-single__nav a:hover { opacity: 0.8; }
.btn--sm { padding: 10px 20px; font-size: 14px; }  .image-band { position: relative; min-height: 360px; display: flex; align-items: center; overflow: hidden; }
.image-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-band__overlay { position: relative; z-index: 1; max-width: 600px; padding: 48px 40px; background: rgba(255,255,255,0.92); border-radius: 12px; margin-left: 7%; }
.image-band__overlay h2 { font-size: 32px; line-height: 1.25; margin-bottom: 12px; }
.image-band__overlay p { font-size: 16px; color: #4B5563; line-height: 1.7; }
.image-band__overlay .trust-points { margin-top: 16px; } .v-timeline { position: relative; padding-left: 40px; max-width: 720px; margin: 0 auto; }
.v-timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 3px; background: linear-gradient(#81BD51, #232D4B); border-radius: 2px; }
.v-timeline__node { position: relative; margin-bottom: 36px; padding-left: 32px; }
.v-timeline__node:last-child { margin-bottom: 0; }
.v-timeline__node::before { content: attr(data-step); position: absolute; left: -40px; width: 32px; height: 32px; border-radius: 50%; background: #81BD51; color: #fff; display: grid; place-items: center; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; }
.v-timeline__node h4 { font-size: 18px; font-weight: 700; color: #232D4B; margin-bottom: 4px; }
.v-timeline__node p { font-size: 15px; color: #4B5563; line-height: 1.6; } .big-quote { text-align: center; padding: 32px 24px; max-width: 800px; margin: 0 auto; }
.big-quote__text { font-family: 'Inter', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.25; color: #232D4B; }
.big-quote__text span { color: #81BD51; }
.big-quote__sub { margin-top: 16px; font-size: 18px; color: #4B5563; line-height: 1.6; } .accent-list { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin: 0 auto; }
.accent-list__item { display: flex; gap: 20px; align-items: flex-start; padding: 24px 28px; background: #fff; border-radius: 12px; border-left: 4px solid #81BD51; box-shadow: 0 2px 12px rgba(35,45,75,0.06); transition: transform 0.25s, box-shadow 0.25s; }
.accent-list__item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(35,45,75,0.1); }
.accent-list__item h4 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: #232D4B; }
.accent-list__item p { margin: 0; color: #4B5563; font-size: 15px; line-height: 1.6; }
.accent-list--dark { max-width: 100%; }
.accent-list--dark .accent-list__item { background: rgba(255,255,255,0.07); border-left-color: #81BD51; box-shadow: none; }
.accent-list--dark .accent-list__item:hover { background: rgba(255,255,255,0.12); }
.accent-list--dark .accent-list__item h4 { color: #fff; }
.accent-list--dark .accent-list__item p { color: rgba(255,255,255,0.7); } .asym-split { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.asym-split--flip { grid-template-columns: 1fr 2fr; }
.asym-split__side { padding: 32px; background: rgba(129,189,81,0.06); border-radius: 16px; border: 1px solid rgba(129,189,81,0.15); }
.asym-split__side h3 { font-size: 20px; margin-bottom: 12px; }
.asym-split__side p { font-size: 15px; color: #4B5563; line-height: 1.6; }
.asym-split__side .trust-points { margin-top: 16px; } .glass-cards-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .mesh-counters { background: #232D4B; padding: 40px 0; position: relative; overflow: hidden; }
.mesh-counters::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(129,189,81,0.15), transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(210,229,225,0.1), transparent 50%); pointer-events: none; }
.mesh-counters h2 { color: #fff; text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
.mesh-counters__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; position: relative; z-index: 1; text-align: center; }
.mesh-counters__item-num { font-family: 'Inter', sans-serif; font-size: clamp(40px, 6vw, 64px); font-weight: 800; background: linear-gradient(135deg, #81BD51, #D2E5E1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
.mesh-counters__item-label { color: rgba(255,255,255,0.8); font-size: 15px; margin-top: 4px; } @media (max-width: 768px) {
.image-band { min-height: 280px; }
.image-band__overlay { margin: 0 16px; padding: 32px 24px; max-width: 100%; }
.image-band__overlay h2 { font-size: 24px; }
.v-timeline { padding-left: 32px; }
.v-timeline::before { left: 12px; }
.v-timeline__node::before { left: -32px; width: 28px; height: 28px; font-size: 12px; }
.big-quote { padding: 40px 16px; }
.big-quote__text { font-size: 24px; }
.accent-list__item { padding: 20px; }
.asym-split, .asym-split--flip { grid-template-columns: 1fr; }
.mesh-counters { padding: 48px 0; }
.mesh-counters__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
.glass-cards-4col { grid-template-columns: 1fr; }
} @media (max-width: 768px) {
.page-hero h1 { font-size: 28px !important; line-height: 1.2 !important; }
.page-hero p { font-size: 16px; }
.section-title { font-size: 26px !important; line-height: 1.3 !important; }
.section-two-col { grid-template-columns: 1fr; gap: 32px; }
.section-two-col__image { order: -1; }
.reason-cards { grid-template-columns: 1fr; }
.audience-cards { grid-template-columns: 1fr; }
.pillar-cards { grid-template-columns: 1fr; }
.model-grid { grid-template-columns: 1fr; }
.steps-horizontal { grid-template-columns: 1fr; }
.steps-horizontal::before { display: none; }
.effects-grid { grid-template-columns: 1fr; }
.faq-big__nav { gap: 6px; padding-bottom: 24px; margin-bottom: 24px; }
.faq-big__nav-item { font-size: 13px; padding: 8px 14px; }
.contact-grid { grid-template-columns: 1fr; gap: 32px; }
.blog-grid { grid-template-columns: 1fr; }
.blog-featured { grid-template-columns: 1fr; gap: 24px; }
.blog-featured__body h2 { font-size: 22px; }
.post-single__layout { grid-template-columns: 1fr; }
.post-single__sidebar { position: static; }
.blog-filter { justify-content: flex-start; }
}
@media (min-width: 769px) and (max-width: 1024px) {
.page-hero h1 { font-size: 34px !important; }
.reason-cards { grid-template-columns: 1fr 1fr; }
.audience-cards { grid-template-columns: 1fr 1fr; }
.model-grid { grid-template-columns: 1fr 1fr; }
.effects-grid { grid-template-columns: 1fr 1fr; }
.blog-grid { grid-template-columns: 1fr 1fr; }
.blog-featured { grid-template-columns: 1fr 1fr; }
.post-single__layout { grid-template-columns: 1fr 260px; gap: 32px; }
}  .sp-hero--green { background: linear-gradient(135deg, #81BD51, #6fa043); padding: 64px 0 48px; color: #fff; }
.sp-hero--green h1 { color: #fff; font-size: 48px; line-height: 1.2; max-width: 700px; }
.sp-hero--green p { color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.65; max-width: 600px; margin-top: 16px; }
.sp-hero--green .btn--primary { background: #fff; color: #232D4B; }
.sp-hero--green .btn--primary:hover { background: #f0f0f0; }
.sp-hero--green .btn--outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.sp-hero--green .btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; } .sp-hero--navy { background: linear-gradient(135deg, #232D4B, rgba(35,45,75,0.9)); padding: 64px 0 48px; color: #fff; }
.sp-hero--navy h1 { color: #fff; font-size: 48px; line-height: 1.2; max-width: 700px; }
.sp-hero--navy p { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.65; max-width: 600px; margin-top: 16px; } .sp-hero--white { background: #fff; padding: 64px 0 40px; }
.sp-hero--white h1 { font-size: 48px; line-height: 1.2; max-width: 700px; }
.sp-hero--white p { font-size: 18px; line-height: 1.65; max-width: 600px; margin-top: 16px; color: #4B5563; } .sp-breadcrumb { font-size: 14px; margin-bottom: 16px; }
.sp-breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.sp-breadcrumb a:hover { color: #fff; }
.sp-breadcrumb__sep { margin: 0 8px; opacity: 0.5; }
.sp-breadcrumb__current { opacity: 0.8; }
.sp-hero--white .sp-breadcrumb a { color: #81BD51; }
.sp-hero--white .sp-breadcrumb__sep { color: #D1D5DC; }
.sp-hero--white .sp-breadcrumb__current { color: #4B5563; } .sp-section { padding: 48px 0; }
.sp-section--alt { background: rgba(210,229,225,0.2); }
.sp-section--white { background: #fff; }
.sp-section--gray { background: #F9FAFB; }
.sp-section--navy { background: linear-gradient(135deg, #232D4B, rgba(35,45,75,0.9)); }
.sp-section--navy h2, .sp-section--navy h3, .sp-section--navy h4 { color: #fff; }
.sp-section--navy p { color: rgba(255,255,255,0.8); }
.sp-section--green-cta { background: linear-gradient(135deg, #81BD51, #6fa043); padding: 40px 0; text-align: center; }
.sp-section--green-cta h2 { color: #fff; margin-bottom: 16px; }
.sp-section--green-cta p { color: rgba(255,255,255,0.9); margin-bottom: 24px; } .sp-sh { text-align: center; margin-bottom: 48px; }
.sp-sh h2 { margin-bottom: 16px; }
.sp-sh p { font-size: 18px; color: #4B5563; line-height: 1.65; max-width: 640px; margin: 0 auto; }
.sp-section--navy .sp-sh p { color: rgba(255,255,255,0.8); } .sp-sh--left { text-align: left; }
.sp-sh--left p { margin: 0; } .sp-icon-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-icon-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px; transition: transform 0.25s, box-shadow 0.25s; }
.sp-icon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.sp-icon-card__icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sp-icon-card__icon svg { width: 28px; height: 28px; stroke: #81BD51; fill: none; }
.sp-icon-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sp-icon-card p { font-size: 14px; color: #4B5563; line-height: 1.7; } .sp-icon-cards--2col { grid-template-columns: repeat(2, 1fr); } .sp-day-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-day-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.sp-day-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.sp-day-card__img { height: 200px; overflow: hidden; }
.sp-day-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sp-day-card:hover .sp-day-card__img img { transform: scale(1.05); }
.sp-day-card__body { padding: 24px; }
.sp-day-card__body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sp-day-card__body p { font-size: 14px; color: #4B5563; line-height: 1.7; }
.sp-day-card__note { font-size: 13px; color: #81BD51; font-weight: 600; margin-top: 12px; } .sp-promo { background: linear-gradient(135deg, #81BD51, #5a9a33); border-radius: 16px; padding: 32px 40px; text-align: center; color: #fff; margin: 32px 0; position: relative; overflow: hidden; }
.sp-promo__badge { display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); border-radius: 20px; padding: 4px 16px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.sp-promo h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sp-promo p { font-size: 15px; color: rgba(255,255,255,0.9); }
.sp-promo small { display: block; font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 8px; } .sp-info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.sp-info-col { padding: 32px; }
.sp-info-col__icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(210,229,225,0.3); border: 1px solid #E5E7EB; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.sp-info-col__icon svg { width: 28px; height: 28px; stroke: #81BD51; fill: none; }
.sp-info-col__label { font-size: 14px; color: #4B5563; margin-bottom: 4px; }
.sp-info-col__value { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #232D4B; }
.sp-info-col__sub { font-size: 13px; color: #4B5563; margin-top: 4px; } .sp-doc-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-doc-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; transition: transform 0.2s; }
.sp-doc-card:hover { transform: translateY(-2px); }
.sp-doc-card__num { width: 40px; height: 40px; border-radius: 50%; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 700; color: #81BD51; font-size: 16px; }
.sp-doc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sp-doc-card p { font-size: 13px; color: #4B5563; line-height: 1.5; } .sp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.sp-compare__card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px; display: flex; flex-direction: column; }
.sp-compare__card--featured { border-color: #81BD51; }
.sp-compare__card h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.sp-compare__card .sp-compare__sub { font-size: 14px; color: #4B5563; margin-bottom: 20px; }
.sp-compare__list { list-style: none; flex: 1; }
.sp-compare__list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 14px; color: #4B5563; line-height: 1.6; }
.sp-compare__list svg { width: 20px; height: 20px; stroke: #81BD51; fill: none; flex-shrink: 0; margin-top: 2px; }
.sp-compare__footer { margin-top: 20px; font-size: 13px; color: #4B5563; font-style: italic; } .sp-speaker-cards { display: flex; flex-direction: column; gap: 32px; }
.sp-speaker-card { display: grid; grid-template-columns: 200px 1fr; gap: 32px; background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; overflow: hidden; padding: 32px; transition: transform 0.25s, box-shadow 0.25s; }
.sp-speaker-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.sp-speaker-card__img { width: 200px; height: 200px; border-radius: 12px; overflow: hidden; }
.sp-speaker-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sp-speaker-card__body h3 { font-size: 20px; font-weight: 700; color: #81BD51; margin-bottom: 2px; }
.sp-speaker-card__role { font-size: 14px; color: #4B5563; margin-bottom: 12px; }
.sp-speaker-card__topic { font-size: 15px; font-weight: 600; color: #232D4B; margin-bottom: 8px; }
.sp-speaker-card__desc { font-size: 14px; color: #4B5563; line-height: 1.7; }
.sp-speaker-card__tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.sp-speaker-card__tag { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; background: rgba(129,189,81,0.1); color: #5a8a33; border: 1px solid rgba(129,189,81,0.2); } .sp-topics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-topic { display: flex; gap: 16px; align-items: flex-start; }
.sp-topic__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-topic__icon svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; }
.sp-topic h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sp-topic p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-pricing-list { display: flex; flex-direction: column; gap: 32px; max-width: 700px; margin: 0 auto; }
.sp-pricing-item { background: #fff; border: 2px solid #E5E7EB; border-radius: 16px; padding: 36px; position: relative; }
.sp-pricing-item--featured { border-color: #81BD51; box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
.sp-pricing-item__head { margin-bottom: 20px; }
.sp-pricing-item__name { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #4B5563; text-transform: uppercase; letter-spacing: 0.5px; }
.sp-pricing-item__title { font-size: 24px; font-weight: 700; color: #232D4B; margin-top: 4px; }
.sp-pricing-item__price { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 800; color: #232D4B; line-height: 1; margin: 16px 0; }
.sp-pricing-item__price span { font-size: 16px; font-weight: 500; color: #4B5563; }
.sp-pricing-item__label { font-size: 13px; color: #4B5563; margin-bottom: 8px; }
.sp-pricing-item__features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 20px 0; }
.sp-pricing-item__feat { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #4B5563; }
.sp-pricing-item__feat svg { width: 18px; height: 18px; stroke: #81BD51; fill: none; flex-shrink: 0; }
.sp-pricing-item__for { font-size: 14px; color: #4B5563; padding: 16px; background: rgba(210,229,225,0.2); border-radius: 10px; margin: 16px 0; }
.sp-pricing-item__for strong { color: #232D4B; }
.sp-pricing-item__btn { display: block; width: 100%; padding: 14px; border: 2px solid #232D4B; border-radius: 10px; background: transparent; color: #232D4B; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; text-align: center; transition: all 0.3s; }
.sp-pricing-item__btn:hover { background: #81BD51; border-color: #81BD51; color: #fff; }
.sp-pricing-item--featured .sp-pricing-item__btn { background: #81BD51; border-color: #81BD51; color: #fff; }
.sp-pricing-item--featured .sp-pricing-item__btn:hover { background: #6ea842; }
.sp-pricing-item__note { font-size: 13px; color: #4B5563; margin-top: 12px; text-align: center; }
.sp-pricing-item__warn { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #D97706; margin-top: 12px; } .sp-checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-checklist__item { display: flex; gap: 16px; align-items: flex-start; }
.sp-checklist__item svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; flex-shrink: 0; margin-top: 2px; }
.sp-checklist__item h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sp-checklist__item p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-qual-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-qual-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 28px; transition: transform 0.2s; }
.sp-qual-card:hover { transform: translateY(-2px); }
.sp-qual-card__badge { display: inline-block; padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.sp-qual-card__badge--green { background: rgba(129,189,81,0.12); color: #5a8a33; }
.sp-qual-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.sp-qual-card__sub { font-size: 14px; color: #4B5563; font-weight: 600; margin-bottom: 8px; }
.sp-qual-card p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-steps { max-width: 700px; margin: 0 auto; }
.sp-step { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 32px; padding: 24px; background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; transition: transform 0.2s; }
.sp-step:hover { transform: translateY(-2px); }
.sp-step__num { width: 48px; height: 48px; border-radius: 50%; background: #81BD51; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #fff; flex-shrink: 0; }
.sp-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.sp-step p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-rules { max-width: 700px; margin: 0 auto; }
.sp-rule { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #E5E7EB; }
.sp-rule:last-child { border-bottom: none; }
.sp-rule svg { width: 24px; height: 24px; stroke: #81BD51; fill: none; flex-shrink: 0; margin-top: 2px; }
.sp-rule h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sp-rule p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-faq-cat { margin-bottom: 48px; }
.sp-faq-cat__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sp-faq-cat__icon { width: 40px; height: 40px; border-radius: 10px; background: #81BD51; display: flex; align-items: center; justify-content: center; }
.sp-faq-cat__icon svg { width: 22px; height: 22px; stroke: #fff !important; fill: none; }
.sp-faq-cat__head h3 { font-size: 22px; font-weight: 700; }
.sp-faq-item { border: 1px solid #E5E7EB; border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.sp-faq-item[open] { border-color: #E5E7EB; }
.sp-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #232D4B; list-style: none; }
.sp-faq-q::-webkit-details-marker { display: none; }
.sp-faq-q::marker { display: none; content: ''; }
.sp-faq-q__icon { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sp-faq-q__icon svg { width: 20px; height: 20px; stroke: #4B5563; fill: none; transition: transform 0.2s; }
.sp-faq-item[open] .sp-faq-q__icon svg { transform: rotate(180deg); }
.sp-faq-a { padding: 0 20px 16px; font-size: 14px; color: #4B5563; line-height: 1.7; }
.sp-faq-a p { margin-bottom: 8px; }
.sp-faq-a ul { margin: 8px 0; padding-left: 20px; }
.sp-faq-a ul li { list-style: disc; margin-bottom: 4px; } .sp-profiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-profile { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 28px; transition: transform 0.2s; }
.sp-profile:hover { transform: translateY(-2px); }
.sp-profile h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sp-profile > p { font-size: 14px; color: #4B5563; line-height: 1.6; margin-bottom: 16px; }
.sp-profile__label { font-size: 13px; font-weight: 600; color: #4B5563; margin-bottom: 8px; }
.sp-profile__list { list-style: none; padding: 0; }
.sp-profile__list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #4B5563; padding: 3px 0; }
.sp-profile__list li::before { content: '•'; color: #81BD51; font-weight: 700; } .sp-subjects { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sp-subject { padding: 20px; border: 1px solid #E5E7EB; border-radius: 12px; transition: border-color 0.2s; }
.sp-subject:hover { border-color: #81BD51; }
.sp-subject h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.sp-subject p { font-size: 13px; color: #4B5563; line-height: 1.5; } .sp-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sp-team-member { text-align: center; }
.sp-team-member__img { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid #E5E7EB; }
.sp-team-member__img img { width: 100%; height: 100%; object-fit: cover; }
.sp-team-member h3 { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.sp-team-member__role { font-size: 14px; color: #81BD51; font-weight: 600; margin-bottom: 8px; }
.sp-team-member__title { font-size: 13px; color: #4B5563; margin-bottom: 8px; font-style: italic; }
.sp-team-member p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-director { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.sp-director__img { width: 100%; border-radius: 16px; overflow: hidden; }
.sp-director__img img { width: 100%; height: auto; border-radius: 16px; }
.sp-director__name { font-size: 14px; font-weight: 600; color: #232D4B; margin-top: 12px; }
.sp-director__title { font-size: 13px; color: #4B5563; }
.sp-director__content h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.sp-director__content p { font-size: 16px; color: #4B5563; line-height: 1.7; margin-bottom: 16px; }
.sp-director__quote { font-family: 'Inter', sans-serif; font-size: 18px; font-style: italic; color: #232D4B; line-height: 1.6; padding: 24px; background: rgba(210,229,225,0.2); border-left: 4px solid #81BD51; border-radius: 0 12px 12px 0; margin-top: 24px; } .sp-audience { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-audience__item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; transition: transform 0.2s; }
.sp-audience__item:hover { transform: translateY(-2px); }
.sp-audience__item h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sp-audience__item p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-philosophy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-philosophy__card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; }
.sp-philosophy__card h3 { color: #81BD51; font-size: 16px; margin-bottom: 4px; }
.sp-philosophy__card h4 { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; font-weight: 400; }
.sp-philosophy__card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; } .sp-ecosystem { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-ecosystem__card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 28px; transition: transform 0.25s, box-shadow 0.25s; }
.sp-ecosystem__card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.sp-ecosystem__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sp-ecosystem__card p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-cta { text-align: center; }
.sp-cta h2 { margin-bottom: 16px; }
.sp-cta p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.sp-cta .btn--primary { background: #fff; color: #232D4B; }
.sp-cta .btn--primary:hover { background: #f0f0f0; }
.sp-cta .btn--outline { border-color: rgba(255,255,255,0.5); color: #fff; margin-left: 16px; }
.sp-cta .btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; } .sp-obligations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-obligation { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; }
.sp-obligation__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(129,189,81,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-obligation__icon svg { width: 20px; height: 20px; stroke: #81BD51; fill: none; }
.sp-obligation h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.sp-obligation p { font-size: 13px; color: #4B5563; line-height: 1.5; } .sp-callout { background: linear-gradient(135deg, rgba(129,189,81,0.08), rgba(129,189,81,0.15)); border: 2px solid rgba(129,189,81,0.2); border-radius: 16px; padding: 24px 32px; text-align: center; }
.sp-callout p { font-size: 15px; color: #232D4B; line-height: 1.6; }
.sp-callout strong { color: #81BD51; } .sp-support-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-support-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; overflow: hidden; transition: transform 0.2s; }
.sp-support-card:hover { transform: translateY(-2px); }
.sp-support-card__img { height: 160px; overflow: hidden; }
.sp-support-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sp-support-card__body { padding: 20px; }
.sp-support-card__body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sp-support-card__body p { font-size: 14px; color: #4B5563; line-height: 1.6; } .sp-link-note { text-align: center; margin-top: 16px; font-size: 14px; color: #4B5563; }
.sp-link-note a { color: #81BD51; font-weight: 600; }
.sp-link-note a:hover { color: #6ea842; } .sp-important { background: rgba(129,189,81,0.08); border: 1px solid rgba(129,189,81,0.2); border-radius: 12px; padding: 16px 24px; margin: 24px 0; font-size: 14px; color: #232D4B; }
.sp-important strong { color: #81BD51; } @media (max-width: 768px) {
.sp-hero--green, .sp-hero--navy, .sp-hero--white { padding: 48px 0 32px; }
.sp-hero--green h1, .sp-hero--navy h1, .sp-hero--white h1 { font-size: 32px !important; }
.sp-icon-cards, .sp-icon-cards--2col { grid-template-columns: 1fr; }
.sp-day-cards { grid-template-columns: 1fr; }
.sp-compare { grid-template-columns: 1fr; }
.sp-speaker-card { grid-template-columns: 1fr; }
.sp-speaker-card__img { width: 100%; height: 200px; }
.sp-topics { grid-template-columns: 1fr; }
.sp-info-cols { grid-template-columns: 1fr; }
.sp-doc-cards { grid-template-columns: 1fr; }
.sp-profiles { grid-template-columns: 1fr; }
.sp-subjects { grid-template-columns: 1fr 1fr; }
.sp-team { grid-template-columns: 1fr; }
.sp-director { grid-template-columns: 1fr; }
.sp-audience { grid-template-columns: 1fr; }
.sp-philosophy { grid-template-columns: 1fr; }
.sp-ecosystem { grid-template-columns: 1fr; }
.sp-checklist { grid-template-columns: 1fr; }
.sp-qual-cards { grid-template-columns: 1fr; }
.sp-obligations { grid-template-columns: 1fr; }
.sp-support-cards { grid-template-columns: 1fr; }
.sp-pricing-item__features { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
.sp-icon-cards { grid-template-columns: repeat(2, 1fr); }
.sp-subjects { grid-template-columns: repeat(3, 1fr); }
.sp-team { grid-template-columns: repeat(2, 1fr); }
.sp-ecosystem { grid-template-columns: repeat(2, 1fr); }
}  .sp-wb-hero {
background: linear-gradient(135deg, #232D4B 0%, #1a2235 100%);
color: #fff;
padding: 80px 0 72px;
}
.sp-wb-hero h1 {
color: #fff;
text-transform: uppercase;
letter-spacing: 0.02em;
margin-top: 20px;
}
.sp-wb-hero__pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 20px;
background: rgba(129,189,81,0.15);
color: #81BD51;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 14px;
border-radius: 100px;
}
.sp-wb-hero__pill-dot {
width: 8px;
height: 8px;
background: #81BD51;
border-radius: 50%;
animation: sp-pulse 2s ease-in-out infinite;
}
.sp-wb-hero__sub {
font-size: 18px;
color: rgba(255,255,255,0.75);
margin-top: 16px;
line-height: 1.6;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.sp-wb-hero__buttons {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
margin-top: 32px;
flex-wrap: wrap;
}
.sp-wb-hero__btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 32px;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 16px;
border-radius: 12px;
text-decoration: none;
transition: background 0.2s, transform 0.2s;
}
.sp-wb-hero__btn--green {
background: #81BD51;
color: #fff;
}
.sp-wb-hero__btn--green:hover {
background: #6ea842;
color: #fff;
transform: translateY(-2px);
}
.sp-wb-hero__btn--outline {
background: transparent;
border: 1px solid rgba(255,255,255,0.2);
color: rgba(255,255,255,0.9);
}
.sp-wb-hero__btn--outline:hover {
background: rgba(255,255,255,0.1);
color: #fff;
} .ak-video-reel {
padding: 80px 0;
background: #fff;
}
.ak-video-reel__inner {
display: grid;
grid-template-columns: 2.2fr 1fr;
gap: 64px;
align-items: start;
}
.ak-video-reel__content h2 {
font-size: 36px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 16px;
color: #232D4B;
}
.ak-video-reel__content p {
font-size: 18px;
line-height: 29.25px;
color: #4B5563;
margin-bottom: 32px;
max-width: 700px;
}
.ak-video-reel__player {
background: #232D4B;
border-radius: 24px;
overflow: hidden;
box-shadow: 0px 25px 50px -12px rgba(0,0,0,0.25);
align-self: stretch;
min-height: 460px;
display: flex;
align-items: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.ak-video-reel__player:hover {
transform: translateY(-4px);
box-shadow: 0 30px 60px -12px rgba(0,0,0,0.35);
}
.ak-video-reel__player video {
width: 100%;
height: auto;
display: block;
}
@media (max-width: 768px) {
.ak-video-reel { padding: 48px 0; }
.ak-video-reel__inner {
grid-template-columns: 1fr;
gap: 32px;
text-align: center;
}
.ak-video-reel__player {
max-height: calc(100vh - 140px);
min-height: auto;
}
.ak-video-reel__player video { max-height: calc(100vh - 140px); }
.ak-video-reel__content h2 { font-size: 28px; }
} .sp-wb-featured {
padding: 64px 0;
background: #fff;
}
.sp-wb-featured__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}
.sp-wb-card {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(35,45,75,0.15);
color: #fff;
height: 100%;
}
.sp-wb-card--green {
background: linear-gradient(135deg, #6ea842 0%, #81BD51 100%);
}
.sp-wb-card--navy {
background: #232D4B;
}
.sp-wb-card__inner {
display: flex;
flex-direction: row;
min-height: 480px;
height: 100%;
}
.sp-wb-card__photo {
width: 40%;
flex-shrink: 0;
}
.sp-wb-card__photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.sp-wb-card__body {
flex: 1;
padding: 32px;
display: flex;
flex-direction: column;
}
.sp-wb-card__badge {
display: inline-block;
padding: 4px 14px;
background: rgba(255,255,255,0.2);
color: #fff;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 12px;
border-radius: 100px;
margin-bottom: 12px;
align-self: flex-start;
}
.sp-wb-card__badge--navy {
background: rgba(129,189,81,0.25);
color: #81BD51;
}
.sp-wb-card__date {
font-size: 13px;
color: rgba(255,255,255,0.7);
margin-bottom: 8px;
}
.sp-wb-card__title {
font-size: 22px;
font-weight: 700;
line-height: 1.3;
margin-bottom: 8px;
color: #fff;
}
.sp-wb-card__subtitle {
font-size: 14px;
color: rgba(255,255,255,0.75);
line-height: 1.5;
margin-bottom: 16px;
}
.sp-wb-card__info {
background: rgba(255,255,255,0.1);
border-radius: 12px;
padding: 16px;
margin-bottom: 16px;
}
.sp-wb-card__info-name {
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 15px;
color: #fff;
margin: 0 0 2px;
}
.sp-wb-card__info-role {
font-size: 13px;
color: rgba(255,255,255,0.7);
margin: 0 0 6px;
}
.sp-wb-card__info-desc {
font-size: 13px;
color: rgba(255,255,255,0.6);
line-height: 1.5;
margin: 0;
}
.sp-wb-card__meta {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 16px;
margin-top: auto;
}
.sp-wb-card__meta-item {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: rgba(255,255,255,0.7);
}
.sp-wb-card__meta-item svg {
opacity: 0.7;
}
.sp-wb-card__cta {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 14px 24px;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 15px;
border-radius: 10px;
text-decoration: none;
transition: background 0.2s, transform 0.2s;
}
.sp-wb-card__cta--white {
background: #fff;
color: #232D4B;
}
.sp-wb-card__cta--white:hover {
background: #f0fdf0;
color: #232D4B;
transform: translateY(-2px);
}
.sp-wb-card__cta--outline {
background: transparent;
border: 1px solid rgba(255,255,255,0.3);
color: #fff;
}
.sp-wb-card__cta--outline:hover {
background: rgba(255,255,255,0.1);
color: #fff;
} .sp-wb-schedule {
background: #F9FAFB;
padding: 80px 0;
}
.sp-wb-schedule__grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
max-width: 960px;
margin: 0 auto;
}
.sp-wb-scard {
display: flex;
gap: 16px;
background: #fff;
border: 1px solid #E5E7EB;
border-radius: 12px;
padding: 24px;
transition: box-shadow 0.3s, transform 0.3s;
}
.sp-wb-scard:hover {
box-shadow: 0 8px 24px rgba(35,45,75,0.10);
transform: translateY(-2px);
}
.sp-wb-scard__cal {
width: 64px;
height: 64px;
flex-shrink: 0;
background: #232D4B;
border-radius: 12px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.sp-wb-scard__cal-day {
font-family: 'Inter', sans-serif;
font-size: 24px;
font-weight: 700;
color: #fff;
line-height: 1;
}
.sp-wb-scard__cal-month {
font-family: 'Inter', sans-serif;
font-size: 11px;
font-weight: 600;
color: rgba(255,255,255,0.8);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.sp-wb-scard__content {
flex: 1;
min-width: 0;
}
.sp-wb-scard__date {
font-size: 13px;
color: #81BD51;
font-weight: 600;
margin: 0 0 4px;
}
.sp-wb-scard__title {
font-size: 17px;
font-weight: 600;
color: #232D4B;
margin: 0 0 6px;
line-height: 1.3;
}
.sp-wb-scard__host {
font-size: 14px;
color: #6B7280;
margin: 0 0 4px;
}
.sp-wb-scard__audience {
color: #9CA3AF;
}
.sp-wb-scard__duration {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 13px;
color: #9CA3AF;
}
.sp-wb-scard__duration svg {
stroke: #9CA3AF;
} .sp-wb-why {
padding: 80px 0;
background: #fff;
}
.sp-wb-why__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
max-width: 960px;
margin: 0 auto;
}
.sp-wb-why__item {
text-align: center;
}
.sp-wb-why__icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: rgba(129,189,81,0.15);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
.sp-wb-why__item h3 {
font-size: 18px;
font-weight: 700;
color: #232D4B;
margin-bottom: 8px;
}
.sp-wb-why__item p {
font-size: 15px;
color: #6B7280;
line-height: 1.6;
} .sp-wb-archive {
background: #F9FAFB;
padding: 64px 0 80px;
}
.sp-wb-archive__grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 1024px;
margin: 0 auto;
}
.sp-wb-archive__card {
background: #fff;
border: 1px solid #E5E7EB;
border-radius: 12px;
padding: 24px;
transition: box-shadow 0.3s, transform 0.3s;
}
.sp-wb-archive__card:hover {
box-shadow: 0 4px 16px rgba(35,45,75,0.08);
transform: translateY(-2px);
}
.sp-wb-archive__date {
display: flex;
align-items: center;
gap: 6px;
font-size: 14px;
color: #6B7280;
margin-bottom: 8px;
}
.sp-wb-archive__card h3 {
font-size: 17px;
margin-bottom: 8px;
}
.sp-wb-archive__host {
font-size: 14px;
color: #6B7280;
margin-bottom: 12px;
}
.sp-wb-archive__empty {
max-width: 480px;
margin: 0 auto;
text-align: center;
padding: 64px 20px;
}
.sp-wb-archive__empty svg {
margin: 0 auto 24px;
display: block;
}
.sp-wb-archive__empty h3 {
font-size: 20px;
color: #374151;
margin-bottom: 12px;
}
.sp-wb-archive__empty p {
font-size: 15px;
color: #6B7280;
line-height: 1.6;
} .sp-wb-cta {
background: linear-gradient(135deg, #232D4B 0%, #1a2235 100%);
padding: 80px 0;
}
.sp-wb-cta h2 {
color: #fff;
margin-bottom: 16px;
}
.sp-wb-cta__sub {
font-size: 18px;
color: rgba(255,255,255,0.75);
margin-bottom: 32px;
line-height: 1.6;
} .sp-webinar-bar {
position: sticky;
top: 121px; z-index: 40;
background: #81BD51;
border-bottom: 1px solid #6fa043;
padding: 10px 0;
}
.sp-webinar-bar__inner {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
.sp-webinar-bar__info {
display: flex;
align-items: center;
gap: 8px;
color: #fff;
font-size: 14px;
font-weight: 600;
font-family: 'Inter', sans-serif;
}
.sp-webinar-bar__dot {
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
animation: sp-pulse 2s ease-in-out infinite;
}
@keyframes sp-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.sp-webinar-bar__sep {
color: rgba(255,255,255,0.5);
font-size: 14px;
}
.sp-webinar-bar__title {
color: #fff;
font-size: 14px;
font-weight: 500;
max-width: 300px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.sp-webinar-bar__cta {
display: inline-block;
background: #fff;
color: #81BD51;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 13px;
padding: 6px 16px;
border-radius: 6px;
transition: background 0.2s, transform 0.2s;
}
.sp-webinar-bar__cta:hover {
background: #f0fdf0;
transform: translateY(-1px);
} .sp-hp-webinar {
position: relative;
background: #232D4B;
padding: 80px 0;
} .sp-hp-webinar__header {
text-align: center;
margin-bottom: 64px;
}
.sp-hp-webinar__badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(129,189,81,0.2);
color: #81BD51;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 13px;
padding: 8px 20px;
border-radius: 100px;
margin-bottom: 20px;
}
.sp-hp-webinar__badge-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #81BD51;
flex-shrink: 0;
}
.sp-hp-webinar__title {
font-family: 'Inter', sans-serif;
font-size: 48px;
font-weight: 800;
color: #fff;
line-height: 1.15;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 16px;
}
.sp-hp-webinar__subtitle {
font-size: 18px;
color: rgba(255,255,255,0.6);
line-height: 1.6;
max-width: 720px;
margin: 0 auto;
} .sp-hp-webinar__featured {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
max-width: 1152px;
margin: 0 auto 48px;
}
.sp-hp-webinar__card {
border-radius: 16px;
overflow: hidden;
transition: transform 0.3s;
display: flex;
flex-direction: column;
}
.sp-hp-webinar__card:hover {
transform: translateY(-4px);
}
.sp-hp-webinar__card--green {
background: linear-gradient(160deg, #81BD51 0%, #6fa043 100%);
}
.sp-hp-webinar__card--navy {
background: #1a2235;
border: 1px solid rgba(255,255,255,0.15);
} .sp-hp-webinar__card-inner {
padding: 28px;
display: flex;
flex-direction: column;
flex: 1;
} .sp-hp-webinar__card-label {
display: inline-block;
width: fit-content;
background: rgba(255,255,255,0.2);
backdrop-filter: blur(4px);
color: #fff;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 12px;
padding: 6px 14px;
border-radius: 100px;
margin-bottom: 16px;
}
.sp-hp-webinar__card-date {
color: rgba(255,255,255,0.85);
font-family: 'Inter', sans-serif;
font-size: 14px;
font-weight: 600;
margin-bottom: 6px;
}
.sp-hp-webinar__card-title {
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 22px;
font-weight: 700;
line-height: 1.3;
margin-bottom: 12px;
}
.sp-hp-webinar__card-desc {
color: rgba(255,255,255,0.7);
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
} .sp-hp-webinar__card-speaker {
display: flex;
align-items: center;
gap: 14px;
background: rgba(255,255,255,0.1);
border-radius: 12px;
padding: 16px;
margin-top: auto;
margin-bottom: 20px;
}
.sp-hp-webinar__card-speaker-photo {
width: 64px !important;
height: 64px !important;
min-width: 64px;
max-width: 64px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}
.sp-hp-webinar__card-speaker-name {
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 16px;
font-weight: 700;
margin-bottom: 2px;
}
.sp-hp-webinar__card-speaker-role {
color: rgba(255,255,255,0.7);
font-size: 13px;
} .sp-hp-webinar__card-meta {
display: flex;
gap: 16px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.sp-hp-webinar__card-meta-item {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255,255,255,0.6);
font-size: 13px;
}
.sp-hp-webinar__card-meta-item svg {
flex-shrink: 0;
} .sp-hp-webinar__card-cta {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
background: #fff;
color: #4a7c2e;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 15px;
padding: 14px 24px;
border-radius: 12px;
transition: background 0.2s, transform 0.2s;
margin-top: auto;
}
.sp-hp-webinar__card-cta:hover {
background: #f0f0f0;
transform: translateY(-1px);
}
.sp-hp-webinar__card-cta--outline {
background: transparent;
color: #fff;
border: 2px solid rgba(255,255,255,0.2);
}
.sp-hp-webinar__card-cta--outline:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.35);
} .sp-hp-webinar__upcoming {
max-width: 1152px;
margin: 0 auto 48px;
}
.sp-hp-webinar__upcoming-title {
display: flex;
align-items: center;
gap: 10px;
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-weight: 700;
margin-bottom: 20px;
}
.sp-hp-webinar__upcoming-title svg {
color: #81BD51;
flex-shrink: 0;
}
.sp-hp-webinar__upcoming-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 20px;
}
.sp-hp-webinar__mini-card {
background: rgba(255,255,255,0.05);
border-radius: 12px;
padding: 20px;
transition: background 0.2s;
}
.sp-hp-webinar__mini-card:hover {
background: rgba(255,255,255,0.08);
}
.sp-hp-webinar__mini-date {
display: block;
color: #81BD51;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 8px;
}
.sp-hp-webinar__mini-title {
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 15px;
font-weight: 600;
line-height: 1.4;
margin-bottom: 6px;
}
.sp-hp-webinar__mini-host {
color: rgba(255,255,255,0.5);
font-size: 13px;
}
.sp-hp-webinar__upcoming-link-wrap {
text-align: center;
margin-top: 16px;
}
.sp-hp-webinar__upcoming-link {
color: #81BD51;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 14px;
transition: color 0.2s;
}
.sp-hp-webinar__upcoming-link:hover {
color: #a0d975;
} .sp-hp-webinar__benefits {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
max-width: 960px;
margin: 0 auto 48px;
}
.sp-hp-webinar__benefit {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 12px;
}
.sp-hp-webinar__benefit-icon {
width: 64px;
height: 64px;
border-radius: 50%;
background: rgba(129,189,81,0.2);
display: flex;
align-items: center;
justify-content: center;
color: #81BD51;
}
.sp-hp-webinar__benefit-label {
color: rgba(255,255,255,0.9);
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 15px;
}
.sp-hp-webinar__benefit-desc {
color: rgba(255,255,255,0.5);
font-size: 13px;
} .sp-hp-webinar__cta-wrap {
text-align: center;
}
.sp-hp-webinar__cta-btn {
display: inline-block;
background: #81BD51;
color: #fff;
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 18px;
padding: 16px 32px;
border-radius: 12px;
transition: background 0.2s, transform 0.2s;
}
.sp-hp-webinar__cta-btn:hover {
background: #6ea842;
transform: translateY(-2px);
} @media (max-width: 768px) {
.sp-webinar-bar { top: 80px; }
.sp-webinar-bar__sep,
.sp-webinar-bar__title { display: none; }
.sp-webinar-bar__inner { gap: 12px; }
.sp-hp-webinar { padding: 48px 0; }
.sp-hp-webinar__title { font-size: 32px; }
.sp-hp-webinar__subtitle { font-size: 16px; }
.sp-hp-webinar__featured { grid-template-columns: 1fr; }
.sp-hp-webinar__upcoming-grid { grid-template-columns: 1fr; }
.sp-hp-webinar__benefits { grid-template-columns: 1fr; gap: 20px; }
.sp-hp-webinar__card-inner { padding: 20px; }
.sp-hp-webinar__card-title { font-size: 18px; }
.sp-hp-webinar__card-speaker-photo { width: 48px !important; height: 48px !important; min-width: 48px; max-width: 48px; } .sp-wb-hero { padding: 48px 0 56px; }
.sp-wb-hero h1 { font-size: 36px; line-height: 1.2; }
.sp-wb-hero__buttons { flex-direction: column; align-items: center; }
.sp-wb-hero__btn { width: 100%; justify-content: center; }
.sp-wb-featured__grid { grid-template-columns: 1fr; }
.sp-wb-card__inner { flex-direction: column; }
.sp-wb-card__photo { width: 100%; height: 220px; }
.sp-wb-card__body { padding: 24px; }
.sp-wb-card__title { font-size: 20px; }
.sp-wb-schedule { padding: 48px 0; }
.sp-wb-schedule__grid { grid-template-columns: 1fr; }
.sp-wb-why { padding: 48px 0; }
.sp-wb-why__grid { grid-template-columns: 1fr; gap: 32px; }
.sp-wb-archive { padding: 48px 0; }
.sp-wb-archive__grid { grid-template-columns: 1fr; }
.sp-wb-cta { padding: 48px 0; }
}  .ak-hero {
background: #fff;
padding: 64px 0 40px;
}
.ak-hero__content {
max-width: 768px;
}
.ak-hero h1 {
font-size: 36px;
line-height: 1.15;
color: #232D4B;
margin-bottom: 16px;
}
.ak-hero p {
font-size: 18px;
color: #4B5563;
line-height: 1.7;
margin-bottom: 24px;
}
.ak-btn-green {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: #81BD51;
color: #fff;
font-weight: 500;
border-radius: 8px;
text-decoration: none;
transition: background 0.2s;
}
.ak-btn-green:hover { background: #6fa043; } .ak-section {
padding: 48px 0;
scroll-margin-top: 128px;
}
.ak-section--mint { background: rgba(210,229,225,0.2); }
.ak-section--gray { background: #F9FAFB; } .ak-header {
text-align: center;
margin-bottom: 48px;
}
.ak-header h2 {
font-size: 30px;
line-height: 1.2;
color: #232D4B;
margin-bottom: 24px;
}
.ak-header p {
font-size: 18px;
color: #4B5563;
line-height: 1.7;
max-width: 640px;
margin: 0 auto;
} .ak-icon-sq {
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
flex-shrink: 0;
}
.ak-icon-sq--md { width: 48px; height: 48px; }
.ak-icon-sq--lg { width: 56px; height: 56px; }
.ak-icon-sq--sm { width: 40px; height: 40px; border-radius: 8px; }
.ak-icon-sq--green { background: #81BD51; }
.ak-icon-sq--navy  { background: #232D4B; }
.ak-icon-sq--green-tint { background: rgba(129,189,81,0.2); }
.ak-icon-sq--navy-tint  { background: rgba(35,45,75,0.2); }
.ak-icon-sq--white-tint { background: rgba(255,255,255,0.2); } .ak-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ak-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ak-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; } .ak-card {
background: #fff;
border-radius: 16px;
padding: 32px;
border: 1px solid #F3F4F6;
}
.ak-card .ak-icon-sq { margin-bottom: 16px; }
.ak-card h3 {
font-size: 20px;
font-weight: 600;
color: #232D4B;
margin-bottom: 12px;
}
.ak-card p {
color: #4B5563;
line-height: 1.7;
margin: 0;
} .ak-card--gradient-mint {
background: linear-gradient(135deg, #D2E5E1, white);
border-radius: 16px;
padding: 32px;
border: 1px solid #F3F4F6;
}
.ak-profile-header {
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 16px;
}
.ak-profile-header h3 {
font-size: 20px;
font-weight: 600;
color: #232D4B;
margin-bottom: 8px;
}
.ak-profile-header p {
color: #4B5563;
line-height: 1.7;
margin: 0 0 16px;
}
.ak-profile-subjects {
padding-left: 64px;
}
.ak-label {
font-size: 14px;
font-weight: 500;
color: #232D4B;
margin-bottom: 8px;
}
.ak-profile-subjects ul {
list-style: none;
padding: 0;
margin: 0;
}
.ak-profile-subjects li {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: #4B5563;
padding: 2px 0;
}
.ak-dot {
display: inline-block;
width: 6px;
height: 6px;
background: #81BD51;
border-radius: 50%;
flex-shrink: 0;
} .ak-callout-green {
max-width: 768px;
margin: 32px auto 0;
padding: 24px;
background: linear-gradient(135deg, rgba(129,189,81,0.1), #D2E5E1);
border: 2px solid rgba(129,189,81,0.3);
border-radius: 16px;
text-align: center;
}
.ak-callout-green p {
color: #232D4B;
font-weight: 500;
margin: 0;
} .ak-card--sm {
background: #fff;
border-radius: 12px;
padding: 24px;
border: 1px solid #F3F4F6;
}
.ak-card--sm .ak-icon-sq { margin-bottom: 12px; }
.ak-card--sm h3 {
font-size: 16px;
font-weight: 600;
color: #232D4B;
margin-bottom: 8px;
}
.ak-card--sm p {
font-size: 12px;
color: #4B5563;
line-height: 1.7;
margin: 0;
} .ak-note {
margin-top: 32px;
text-align: center;
}
.ak-note p {
font-size: 14px;
color: #4B5563;
max-width: 640px;
margin: 0 auto;
} .ak-matura-stack {
max-width: 1024px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 24px;
}
.ak-card--gradient-green-light {
background: linear-gradient(135deg, rgba(129,189,81,0.05), white);
border-radius: 16px;
padding: 32px;
border: 1px solid #F3F4F6;
}
.ak-card--gradient-navy-light {
background: linear-gradient(135deg, rgba(35,45,75,0.05), white);
border-radius: 16px;
padding: 32px;
border: 1px solid #F3F4F6;
}
.ak-flex-row {
display: flex;
align-items: flex-start;
gap: 24px;
}
.ak-flex-row h3 {
font-size: 20px;
font-weight: 600;
color: #232D4B;
margin-bottom: 8px;
}
.ak-flex-row p {
color: #4B5563;
line-height: 1.7;
margin: 0;
} .ak-wsparcie-grid {
max-width: 896px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
} .ak-callout-navy {
max-width: 768px;
margin: 32px auto 0;
padding: 32px;
background: linear-gradient(135deg, #232D4B, rgba(35,45,75,0.9));
border-radius: 16px;
color: #fff;
}
.ak-callout-inner {
display: flex;
align-items: flex-start;
gap: 16px;
}
.ak-callout-navy h3 {
font-size: 20px;
font-weight: 600;
color: #fff;
margin-bottom: 8px;
}
.ak-callout-navy p {
color: rgba(255,255,255,0.9);
line-height: 1.7;
margin: 0;
} .ak-cta-section {
padding: 40px 0;
background: linear-gradient(135deg, #81BD51, #6fa043);
}
.ak-cta-section h2 {
font-size: 30px;
line-height: 1.2;
color: #fff;
margin-bottom: 24px;
}
.ak-cta-section p {
font-size: 18px;
color: rgba(255,255,255,0.9);
line-height: 1.7;
margin-bottom: 32px;
}
.ak-cta-btns {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}
.ak-btn-white {
display: inline-block;
padding: 16px 32px;
background: #fff;
color: #81BD51;
font-weight: 500;
border-radius: 8px;
text-decoration: none;
text-align: center;
transition: background 0.2s;
}
.ak-btn-white:hover { background: #F9FAFB; }
.ak-btn-outline-white {
display: inline-block;
padding: 16px 32px;
background: transparent;
border: 2px solid #fff;
color: #fff;
font-weight: 500;
border-radius: 8px;
text-decoration: none;
text-align: center;
transition: background 0.2s;
}
.ak-btn-outline-white:hover { background: rgba(255,255,255,0.1); } .ak-wsparcie-grid .ak-card--sm p { font-size: 14px; }
.ak-wsparcie-grid .ak-card--sm .ak-icon-sq { margin-bottom: 16px; } .ak-icon-sq--xl { width: 64px; height: 64px; }
.ak-num { font-size: 24px; font-weight: 700; color: #fff; line-height: 1; }
.ak-callout-light {
max-width: 768px;
margin: 32px auto 0;
padding: 24px;
background: rgba(210,229,225,0.3);
border: 1px solid rgba(129,189,81,0.2);
border-radius: 12px;
}
.ak-callout-light p {
font-size: 14px;
color: #374151;
line-height: 1.7;
text-align: center;
margin: 0;
}
.zw-qual-badge {
display: inline-block;
padding: 4px 12px;
background: rgba(129,189,81,0.2);
color: #81BD51;
font-size: 12px;
font-weight: 600;
border-radius: 9999px;
}
.zw-qual-hidden { display: none !important; }
.zw-toggle-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: #232D4B;
color: #fff;
font-weight: 500;
font-size: 15px;
border-radius: 8px;
border: none;
cursor: pointer;
transition: background 0.2s;
}
.zw-toggle-btn:hover { background: rgba(35,45,75,0.9); }
.zw-check-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 16px;
}
.zw-check-list li {
display: flex;
align-items: flex-start;
gap: 12px;
}
.zw-check-list li svg { flex-shrink: 0; margin-top: 2px; }
.zw-check-list li p {
color: #374151;
line-height: 1.7;
margin: 0;
} @media (min-width: 1025px) {
.ak-hero h1 { font-size: 60px; }
.ak-header h2 { font-size: 48px; }
.ak-cta-section h2 { font-size: 36px; }
.ak-section { padding: 48px 0; }
}
@media (max-width: 1024px) {
.ak-grid-3 { grid-template-columns: repeat(2, 1fr); }
.ak-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.ak-hero { padding: 64px 0 32px; }
.ak-hero h1 { font-size: 28px; }
.ak-section { padding: 32px 0; }
.ak-grid-3,
.ak-grid-2,
.ak-grid-4,
.ak-wsparcie-grid { grid-template-columns: 1fr; }
.ak-profile-subjects { padding-left: 0; }
.ak-profile-header { flex-direction: column; }
.ak-flex-row { flex-direction: column; gap: 16px; }
.ak-callout-inner { flex-direction: column; }
.ak-cta-btns { flex-direction: column; align-items: center; }
.ak-card { padding: 24px; }
.ak-card--gradient-mint { padding: 24px; }
.ak-card--gradient-green-light,
.ak-card--gradient-navy-light { padding: 24px; }
.mt-meeting-header { flex-direction: column; }
.mt-lecture-card .mt-lecture-img { height: 180px; }
.mt-topic-card { flex-direction: column; }
}  .mt-hero { background: linear-gradient(135deg, #232D4B, rgba(35,45,75,0.9)); padding: 64px 0 48px; }
.mt-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.mt-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.mt-breadcrumb a:hover { color: #81BD51; }
.mt-breadcrumb span:last-child { color: #fff; font-weight: 500; }
.mt-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mt-hero__content h1 { font-size: 36px; line-height: 1.15; color: #fff; margin-bottom: 24px; }
.mt-hero__content p { font-size: 20px; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 32px; }
.mt-hero__btns { display: flex; flex-wrap: wrap; gap: 16px; }
.mt-hero__visual { position: relative; }
.mt-hero__visual img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); } .mt-btn-green { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: #81BD51; color: #fff; font-weight: 500; border-radius: 8px; transition: background 0.2s; text-decoration: none; }
.mt-btn-green:hover { background: #6fa043; }
.mt-btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; border: 2px solid #fff; color: #fff; font-weight: 500; border-radius: 8px; transition: background 0.2s; text-decoration: none; }
.mt-btn-outline:hover { background: rgba(255,255,255,0.1); } .mt-section { padding: 48px 0; scroll-margin-top: 128px; }
.mt-section--mint { background: rgba(210,229,225,0.2); }
.mt-center { text-align: center; } .mt-sh { text-align: center; max-width: 768px; margin: 0 auto 64px; }
.mt-sh h2 { font-size: 30px; font-weight: 700; color: #232D4B; margin-bottom: 24px; line-height: 1.2; }
.mt-sh p { font-size: 18px; color: #4B5563; line-height: 1.6; } .mt-sq { display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; }
.mt-sq--40 { width: 40px; height: 40px; border-radius: 8px; }
.mt-sq--48 { width: 48px; height: 48px; border-radius: 8px; }
.mt-sq--56 { width: 56px; height: 56px; }
.mt-sq--64 { width: 64px; height: 64px; }
.mt-sq--green { background: #81BD51; }
.mt-sq--navy { background: #232D4B; } .mt-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1152px; margin: 0 auto; }
.mt-nav-card { background: linear-gradient(135deg, #D2E5E1, #fff); padding: 32px; border-radius: 16px; border: 1px solid #F3F4F6; }
.mt-nav-card .mt-sq { margin-bottom: 24px; }
.mt-nav-card h3 { font-size: 20px; font-weight: 600; color: #232D4B; margin-bottom: 12px; }
.mt-nav-card p { font-size: 15px; color: #4B5563; line-height: 1.6; } .mt-meet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; max-width: 1152px; margin: 0 auto; }
.mt-meet-card { background: #fff; border-radius: 16px; padding: 32px 40px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.mt-meet--green { border: 2px solid #81BD51; }
.mt-meet--gray { border: 2px solid #E5E7EB; }
.mt-meet-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.mt-meet-head h3 { font-size: 24px; font-weight: 600; color: #232D4B; margin-bottom: 2px; }
.mt-meet-sub { font-size: 15px; color: #4B5563; margin: 0; }
.mt-meet-checks { display: flex; flex-direction: column; gap: 16px; }
.mt-meet-check { display: flex; align-items: flex-start; gap: 12px; }
.mt-meet-check svg { flex-shrink: 0; margin-top: 2px; }
.mt-meet-check p { font-size: 15px; color: #374151; line-height: 1.6; margin: 0; }
.mt-meet-check strong { color: #232D4B; }
.mt-meet-foot { margin-top: 24px; padding: 16px; background: rgba(210,229,225,0.3); border-radius: 8px; }
.mt-meet-foot p { font-size: 14px; color: #374151; margin: 0; }
.mt-meet-foot strong { color: #232D4B; } .mt-topics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1024px; margin: 0 auto; }
.mt-topic-card { display: flex; align-items: flex-start; gap: 16px; background: linear-gradient(135deg, rgba(210,229,225,0.3), #fff); padding: 24px; border-radius: 12px; border: 1px solid #F3F4F6; }
.mt-topic-card h3 { font-size: 16px; font-weight: 600; color: #232D4B; margin-bottom: 8px; }
.mt-topic-card p { font-size: 14px; color: #4B5563; margin: 0; line-height: 1.5; } .mt-lec-stack { display: flex; flex-direction: column; gap: 48px; max-width: 1024px; margin: 0 auto; }
.mt-lec-card { display: grid; grid-template-columns: 1fr 2fr; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); border: 1px solid #F3F4F6; }
.mt-lec-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.mt-lec-body { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.mt-lec-who { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.mt-lec-who h3 { font-size: 24px; font-weight: 600; color: #232D4B; margin-bottom: 2px; }
.mt-lec-role { font-size: 15px; color: #4B5563; margin: 0; }
.mt-lec-topic { font-size: 15px; color: #374151; line-height: 1.6; margin: 0; }
.mt-lec-topic strong { color: #232D4B; }
.mt-lec-desc { font-size: 14px; color: #4B5563; line-height: 1.6; margin: 0; }
.mt-lec-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 16px; }
.mt-tag { display: inline-block; padding: 4px 12px; border-radius: 9999px; font-size: 14px; background: #D2E5E1; color: #232D4B; }
.mt-lec-note { font-size: 16px; color: #4B5563; line-height: 1.6; max-width: 672px; margin: 0 auto 24px; } .mt-cta { padding: 40px 0; background: linear-gradient(135deg, #81BD51, #6fa043); }
.mt-cta-inner { max-width: 896px; margin: 0 auto; text-align: center; }
.mt-cta-inner h2 { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.mt-cta-inner p { font-size: 18px; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 32px; }
.mt-cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.mt-btn-white { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; background: #fff; color: #81BD51; font-weight: 500; border-radius: 8px; transition: background 0.2s; text-decoration: none; text-align: center; }
.mt-btn-white:hover { background: #F9FAFB; }
.mt-btn-navy { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: #232D4B; color: #fff; font-weight: 500; font-size: 16px; border-radius: 8px; transition: background 0.2s; text-decoration: none; }
.mt-btn-navy:hover { background: rgba(35,45,75,0.9); } @media (min-width: 1025px) {
.mt-hero__content h1 { font-size: 60px; }
.mt-sh h2 { font-size: 48px; }
.mt-section { padding: 48px 0; }
.mt-cta-inner h2 { font-size: 36px; }
}
@media (max-width: 1024px) {
.mt-hero__grid { grid-template-columns: 1fr; gap: 32px; }
.mt-hero__visual img { height: 300px; }
.mt-nav-grid { grid-template-columns: repeat(2, 1fr); }
.mt-meet-grid { grid-template-columns: 1fr; gap: 32px; }
.mt-lec-card { grid-template-columns: 1fr; }
.mt-lec-photo img { min-height: 250px; max-height: 300px; }
}
@media (max-width: 768px) {
.mt-hero { padding: 64px 0 48px; }
.mt-hero__content h1 { font-size: 28px; }
.mt-hero__content p { font-size: 17px; }
.mt-hero__btns { flex-direction: column; }
.mt-section { padding: 32px 0; }
.mt-sh { margin-bottom: 32px; }
.mt-sh h2 { font-size: 24px; }
.mt-nav-grid,
.mt-meet-grid,
.mt-topics-grid { grid-template-columns: 1fr; }
.mt-meet-card { padding: 24px; }
.mt-meet-head { flex-direction: column; }
.mt-lec-body { padding: 24px; }
.mt-topic-card { flex-direction: column; }
.mt-cta-btns { flex-direction: column; align-items: center; }
} .wz-form { max-width: 768px; margin: 0 auto; background: #fff; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); padding: 40px; position: relative; }
.wz-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wz-form__field { display: flex; flex-direction: column; gap: 6px; }
.wz-form__field--full { grid-column: span 2; }
.wz-form__label { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #232D4B; }
.wz-form__input,
.wz-form__select { border: 1px solid #E5E7EB; border-radius: 8px; padding: 14px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #232D4B; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.wz-form__input::placeholder { color: #9CA3AF; }
.wz-form__input:focus,
.wz-form__select:focus { outline: none; border-color: #81BD51; box-shadow: 0 0 0 3px rgba(129,189,81,0.15); }
.wz-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' stroke='%234B5563' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 8 10 12 14 8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 40px; cursor: pointer; }
.wz-form__checkbox-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.wz-form__checkbox-row input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: #81BD51; cursor: pointer; }
.wz-form__submit { display: block; width: 100%; padding: 16px; background: #81BD51; color: #fff; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; border: none; border-radius: 10px; cursor: pointer; transition: background 0.2s; }
.wz-form__submit:hover { background: #6ea842; }
.wz-form__success { background: #D1FAE5; border: 1px solid #81BD51; border-radius: 12px; padding: 32px 24px; text-align: center; }
.wz-form__error { background: #FEE2E2; border: 1px solid #EF4444; border-radius: 12px; padding: 16px 20px; color: #991B1B; font-size: 14px; }
@media (max-width: 768px) {
.wz-form { padding: 24px; }
.wz-form__grid { grid-template-columns: 1fr; }
.wz-form__field--full { grid-column: span 1; }
} .footer__social { margin-top: 1.5rem; }
.footer__social-links {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-top: 0.75rem;
}
.footer__social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08); color: #81BD51;
transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer__social-link svg { width: 20px; height: 20px; }
.footer__social-link:hover,
.footer__social-link:focus-visible {
background: #81BD51;
color: #fff;
transform: translateY(-2px);
}
.footer__social-link:focus-visible {
outline: 2px solid #fff;
outline-offset: 2px;
}:root{--direction-multiplier:1}body.rtl,html[dir=rtl]{--direction-multiplier:-1}.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{display:inline-block;line-height:1}.e-logo-wrapper i{color:var(--e-a-color-circle-logo);font-size:2.5em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video,.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(-50%,-50%)}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-custom-embed-play{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(calc(-50% * var(--direction-multiplier)),-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3));height:100px;width:100px}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-inline:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-block-end:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-block-end:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con{margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}:is([data-widget_type="e-component.default"],[data-widget_type="e-component.default"]>.elementor-section-wrap)>.e-con{--margin-right:0px;--margin-left:0px}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;inset-block-start:50%;inset-inline-end:10px;pointer-events:none;position:absolute;text-shadow:0 0 3px rgba(0,0,0,.3);transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-button-align-start .e-form__buttons,[dir=rtl] .elementor-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-button-align-end .e-form__buttons,[dir=rtl] .elementor-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-tablet-button-align-start .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-tablet-button-align-end .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-mobile-button-align-start .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-mobile-button-align-end .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;fill:#fff;font-size:15px;line-height:1;padding:12px 24px;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;fill:#fff;padding:.5em}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}html *{transition-delay:0s!important;transition-duration:0s!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}