*,::before,::after{box-sizing:inherit}
html{box-sizing:border-box}
body{margin:0;padding:0;font-family:'EB Garamond',serif;background-color:#F0EEE5;color:#331C41;line-height:1.6}
.top-header{background-color:#fff;border-bottom:3px solid #009BF3;padding:20px 0;box-shadow:0 4px 12px #00000014}
.header-content-holder{max-width:1200px;margin:0 auto;padding:0 20px;display:flex;justify-content:space-between;align-items:center;gap:30px}
.left-half-section{display:flex;flex-direction:column;gap:8px;flex:0 0 50%;border-right:2px solid #009BF3;padding-right:30px}
.branding-holder{display:flex;align-items:center;gap:15px}
.brand-logo{height:90px;width:90px;border-radius:25px;box-shadow:0 3px 10px #009bf34d}
.brand-name-text{font-family:'JetBrains Mono',monospace;font-size:28px;font-weight:700;color:#331C41;letter-spacing:-.5px}
.header-descriptor{font-size:15px;color:#009BF3;margin:0;padding-left:105px;font-style:italic}
.right-half-section{flex:0 0 45%;display:flex;align-items:center}
.main-nav{display:flex;gap:25px;align-items:center;flex-wrap:wrap}
.nav-link{font-family:'JetBrains Mono',monospace;font-size:16px;font-weight:600;color:#331C41;text-decoration:none;padding:10px 18px;border:2px solid transparent;border-radius:20px;transition:all .2s ease}
.nav-link:hover{color:#009BF3;border-color:#009BF3;background-color:#009bf30d}
.site-footer{background-color:#331C41;color:#F0EEE5;padding:50px 0 20px;margin-top:60px}
.footer-content-holder{max-width:1200px;margin:0 auto;padding:0 20px}
.footer-upper-section{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;margin-bottom:40px;padding-bottom:30px;border-bottom:1px solid #f0eee533}
.footer-heading{font-family:'JetBrains Mono',monospace;font-size:26px;font-weight:700;color:#009BF3;margin:0 0 15px}
.footer-text{font-size:16px;line-height:1.7;margin-bottom:20px;color:#F0EEE5}
.contact-details{display:flex;flex-direction:column;gap:10px}
.contact-item{font-size:15px;display:flex;align-items:flex-start;gap:10px;margin:0}
.contact-item i{color:#009BF3;font-size:18px;margin-top:2px}
.footer-section-title{font-family:'JetBrains Mono',monospace;font-size:18px;font-weight:600;color:#009BF3;margin:0 0 15px}
.footer-menu-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.footer-link{color:#F0EEE5;text-decoration:none;font-size:15px;transition:color .2s ease}
.footer-link:hover{color:#009BF3}
.footer-lower-section{text-align:center}
.copyright-text{font-size:14px;color:#f0eee5b3;margin:0}
.cookie-popup-modal{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#331c41d9;display:flex;align-items:center;justify-content:center;z-index:10000;opacity:0;visibility:hidden;transition:opacity .4s ease,visibility .4s ease}
.cookie-popup-modal[data-visible="true"]{opacity:1;visibility:visible}
.cookie-popup-modal[data-visible="true"] .cookie-content-holder{transform:translateX(0)}
.cookie-content-holder{background-color:#fff;border-radius:30px;padding:40px;max-width:650px;width:90%;box-shadow:0 12px 40px #0000004d;transform:translateX(-100%);transition:transform .4s ease}
.cookie-title{font-family:'JetBrains Mono',monospace;font-size:24px;font-weight:700;color:#331C41;margin:0 0 15px}
.cookie-description{font-size:16px;color:#331C41;margin-bottom:25px;line-height:1.6}
.cookie-categories{display:flex;flex-direction:column;gap:18px;margin-bottom:30px}
.cookie-category-item{padding:15px;background-color:#F0EEE5;border-radius:20px;border:2px solid transparent;transition:border-color .2s ease}
.cookie-category-item:hover{border-color:#009BF3}
.cookie-label{display:flex;align-items:center;gap:12px;cursor:pointer;margin-bottom:5px}
.cookie-checkbox{width:20px;height:20px;cursor:pointer}
.cookie-category-name{font-family:'JetBrains Mono',monospace;font-size:16px;font-weight:600;color:#331C41}
.cookie-category-desc{font-size:14px;color:#331C41;margin:0;padding-left:32px}
.cookie-buttons{display:flex;gap:12px;flex-wrap:wrap}
.cookie-btn{flex:1;min-width:150px;padding:12px 20px;border:none;border-radius:25px;font-family:'JetBrains Mono',monospace;font-size:14px;font-weight:600;cursor:pointer;transition:all .2s ease}
.accept-all{background-color:#009BF3;color:#fff}
.accept-all:hover{background-color:#0082cc}
.save-prefs{background-color:#331C41;color:#fff}
.save-prefs:hover{background-color:#231333}
.decline-all{background-color:#F0EEE5;color:#331C41;border:2px solid #331C41}
.decline-all:hover{background-color:#e0ddd0}
@media (max-width: 1024px) {
.header-content-holder{flex-direction:column;align-items:stretch}
.left-half-section{border-right:none;border-bottom:2px solid #009BF3;padding-right:0;padding-bottom:20px;flex:1 1 auto}
.right-half-section{flex:1 1 auto}
.main-nav{justify-content:center}
.footer-upper-section{grid-template-columns:1fr}
}
@media (max-width: 768px) {
.brand-logo{height:70px;width:70px}
.brand-name-text{font-size:22px}
.header-descriptor{font-size:13px;padding-left:85px}
.nav-link{font-size:14px;padding:8px 14px}
.cookie-content-holder{padding:30px}
.cookie-title{font-size:20px}
.cookie-buttons{flex-direction:column}
.cookie-btn{width:100%;min-width:unset}
}
@media (max-width: 480px) {
.branding-holder{flex-direction:column;align-items:flex-start}
.header-descriptor{padding-left:0}
.main-nav{flex-direction:column;align-items:stretch}
.nav-link{text-align:center}
}
.terms-text{max-width:1200px;margin:0 auto;padding:60px 20px;background:#fff}
.terms-text p{font-size:16px;line-height:1.8;color:#331C41;margin:0 0 24px;text-align:justify}
.terms-text p:last-child{margin-bottom:0}
.terms-text ul,.terms-text ol{margin:0 0 28px;padding:0 0 0 28px}
.terms-text ul li,.terms-text ol li{font-size:16px;line-height:1.8;color:#331C41;margin:0 0 12px;padding-left:8px}
.terms-text ul li:last-child,.terms-text ol li:last-child{margin-bottom:0}
.terms-text ul{list-style-type:disc}
.terms-text ol{list-style-type:decimal}
.terms-text ul ul,.terms-text ol ol,.terms-text ul ol,.terms-text ol ul{margin:12px 0 0;padding-left:24px}
.terms-text em,.terms-text i{font-style:italic;color:#331C41}
.terms-text a{color:#009BF3;text-decoration:none;border-bottom:1px solid #009bf34d;transition:all .3s ease}
.terms-text a:hover{color:#007acc;border-bottom-color:#007acc}
.terms-text a:focus{outline:2px solid #009BF3;outline-offset:2px;border-radius:2px}
.terms-text table{width:100%;border-collapse:collapse;margin:0 0 32px;background:#fff;border:1px solid #e0ddd4;border-radius:12px;overflow:hidden}
.terms-text thead{background:#009bf314}
.terms-text thead tr{border-bottom:2px solid #009BF3}
.terms-text tbody tr{border-bottom:1px solid #e0ddd4}
.terms-text tbody tr:last-child{border-bottom:none}
.terms-text tbody tr:hover{background:#f0eee580}
.terms-text th{padding:16px 20px;text-align:left;font-size:15px;font-weight:600;color:#331C41;line-height:1.6}
.terms-text td{padding:14px 20px;font-size:15px;line-height:1.7;color:#331C41;vertical-align:top}
.terms-text hr{border:none;height:1px;background:linear-gradient(to right,transparent,#e0ddd4,transparent);margin:40px 0}
.terms-text div{margin:0 0 24px}
.terms-text div:last-child{margin-bottom:0}
@media (max-width: 768px) {
.terms-text{padding:40px 16px}
.terms-text p{font-size:15px;line-height:1.75;text-align:left}
.terms-text ul,.terms-text ol{padding-left:20px}
.terms-text ul li,.terms-text ol li{font-size:15px}
.terms-text table{font-size:14px;border-radius:8px}
.terms-text th,.terms-text td{padding:12px 14px;font-size:14px}
.terms-text hr{margin:32px 0}
}
@media (max-width: 375px) {
.terms-text{padding:32px 12px}
.terms-text p,.terms-text ul li,.terms-text ol li{font-size:14px}
.terms-text th,.terms-text td{padding:10px 12px;font-size:13px}
}
.main-holder{max-width:1200px;margin:0 auto;padding:0}
.title-showcase{position:relative;height:520px;overflow:hidden;margin-bottom:80px;border-radius:32px}
.title-showcase .bg-visual{position:absolute;top:-20px;left:-20px;right:-20px;bottom:-20px;background-image:url(./photo_assets/bg_0001.jpg);background-size:cover;background-position:center;filter:blur(2px);z-index:1}
.title-showcase::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,#331c41d9 0%,#009bf3bf 100%);z-index:2}
.title-showcase .content-safe-area{position:relative;z-index:3;max-width:1200px;margin:0 auto;padding:80px 40px;height:100%;display:flex;flex-direction:column;justify-content:center}
.title-showcase .intro-heading{font-size:52px;font-weight:700;color:#F0EEE5;line-height:1.2;margin:0 0 24px;max-width:720px}
.title-showcase .intro-text{font-size:20px;color:#f0eee5e6;line-height:1.6;max-width:640px;margin:0}
.title-showcase .accent-shape{position:absolute;bottom:60px;right:80px;width:140px;height:140px;border:3px solid #f0eee54d;border-radius:50%;z-index:3}
.title-showcase .accent-shape::after{content:'';position:absolute;top:20px;left:20px;right:20px;bottom:20px;border:2px solid #009bf366;border-radius:50%}
.tips-content-holder{max-width:1200px;margin:0 auto 100px;padding:0 40px}
.tips-layout-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.tips-visual-column{position:relative}
.tips-visual-column .main-image{width:100%;height:auto;border-radius:28px;box-shadow:0 12px 40px #009bf326}
.tips-visual-column .floating-metric{position:absolute;bottom:-30px;right:-30px;background:#331C41;color:#F0EEE5;padding:32px 40px;border-radius:24px;box-shadow:0 8px 32px #331c414d}
.tips-visual-column .floating-metric .number{font-size:48px;font-weight:700;color:#009BF3;margin:0 0 8px;line-height:1}
.tips-visual-column .floating-metric .label{font-size:16px;margin:0;opacity:.9}
.tips-text-column h2{font-size:38px;font-weight:700;color:#331C41;margin:0 0 28px;line-height:1.3}
.tips-text-column .intro-paragraph{font-size:18px;color:#331C41;line-height:1.7;margin:0 0 36px;opacity:.85}
.strategy-list{list-style:none;padding:0;margin:0}
.strategy-list .strategy-item{display:flex;gap:20px;margin-bottom:32px;padding-bottom:32px;border-bottom:1px solid #331c411a}
.strategy-list .strategy-item:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.strategy-list .icon-holder{flex-shrink:0;width:56px;height:56px;background:linear-gradient(135deg,#009BF3 0%,#009bf3b3 100%);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:28px;color:#F0EEE5}
.strategy-list .text-holder h3{font-size:22px;font-weight:600;color:#331C41;margin:0 0 12px}
.strategy-list .text-holder p{font-size:16px;color:#331C41;line-height:1.6;margin:0;opacity:.8}
.interactive-tabs-section{max-width:1200px;margin:0 auto 100px;padding:0 40px}
.interactive-tabs-section .section-header{text-align:center;margin-bottom:50px}
.interactive-tabs-section .section-header h2{font-size:42px;font-weight:700;color:#331C41;margin:0 0 16px}
.interactive-tabs-section .section-header p{font-size:18px;color:#331C41;opacity:.75;margin:0}
.tab-controller{display:none}
.tabs-nav{display:flex;gap:16px;margin-bottom:40px;justify-content:center}
.tabs-nav label{padding:16px 32px;background:#F0EEE5;color:#331C41;border-radius:20px;font-size:16px;font-weight:600;cursor:pointer;transition:all .3s ease;border:2px solid transparent}
.tabs-nav label:hover{background:#009bf31a;border-color:#009bf34d}
#tab1:checked ~ .tabs-nav label[for="tab1"],#tab2:checked ~ .tabs-nav label[for="tab2"],#tab3:checked ~ .tabs-nav label[for="tab3"],#tab4:checked ~ .tabs-nav label[for="tab4"]{background:#009BF3;color:#F0EEE5}
.tabs-content-area{position:relative;min-height:400px}
.tab-panel{display:none;animation:fadeIn .4s ease}
@keyframes fadeIn {
from{opacity:0;transform:translateY(10px)}
to{opacity:1;transform:translateY(0)}
}
#tab1:checked ~ .tabs-content-area .panel1,#tab2:checked ~ .tabs-content-area .panel2,#tab3:checked ~ .tabs-content-area .panel3,#tab4:checked ~ .tabs-content-area .panel4{display:block}
.tab-panel .content-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px}
.tab-panel .advice-card{background:#F0EEE5;padding:32px;border-radius:24px;border-left:4px solid #009BF3}
.tab-panel .advice-card h4{font-size:20px;font-weight:600;color:#331C41;margin:0 0 16px}
.tab-panel .advice-card p{font-size:16px;color:#331C41;line-height:1.6;margin:0;opacity:.8}
.tab-panel .advice-card .tip-number{display:inline-block;width:32px;height:32px;background:#009BF3;color:#F0EEE5;border-radius:8px;text-align:center;line-height:32px;font-weight:700;margin-bottom:12px}
@media (max-width: 1366px) {
.title-showcase{height:480px}
.title-showcase .intro-heading{font-size:46px}
.tips-layout-grid{gap:50px}
}
@media (max-width: 768px) {
.title-showcase{height:400px;margin-bottom:60px}
.title-showcase .content-safe-area{padding:60px 30px}
.title-showcase .intro-heading{font-size:36px}
.title-showcase .intro-text{font-size:18px}
.title-showcase .accent-shape{width:100px;height:100px;bottom:40px;right:40px}
.tips-content-holder{padding:0 30px;margin-bottom:70px}
.tips-layout-grid{grid-template-columns:1fr;gap:40px}
.tips-visual-column .floating-metric{position:static;margin-top:20px}
.tips-text-column h2{font-size:32px}
.strategy-list .icon-holder{width:48px;height:48px;font-size:24px}
.strategy-list .text-holder h3{font-size:20px}
.interactive-tabs-section{padding:0 30px;margin-bottom:70px}
.interactive-tabs-section .section-header h2{font-size:34px}
.tabs-nav{flex-wrap:wrap}
.tabs-nav label{font-size:15px;padding:14px 24px}
.tab-panel .content-grid{grid-template-columns:1fr;gap:24px}
}
@media (max-width: 375px) {
.title-showcase{height:360px}
.title-showcase .content-safe-area{padding:50px 20px}
.title-showcase .intro-heading{font-size:30px}
.title-showcase .intro-text{font-size:16px}
.tips-content-holder{padding:0 20px}
.tips-text-column h2{font-size:28px}
.interactive-tabs-section{padding:0 20px}
.tabs-nav label{font-size:14px;padding:12px 20px}
.tab-panel .advice-card{padding:24px}
}
.domain-intro-wrapper{background:linear-gradient(135deg,#009bf314 0%,#331c410d 100%);padding:80px 20px;position:relative;overflow:hidden}
.domain-intro-wrapper::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-image:radial-gradient(circle at 20% 30%,#009bf308 0%,transparent 50%),radial-gradient(circle at 80% 70%,#331c410a 0%,transparent 50%);pointer-events:none}
.intro-container-holder{max-width:1200px;margin:0 auto;position:relative;z-index:2}
.intro-content-block{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.intro-text-area{padding-right:40px}
.intro-text-area h1{font-size:3rem;line-height:1.15;color:#331C41;margin:0 0 24px;font-weight:700}
.intro-text-area h1 .numeric-highlight{color:#009BF3;font-weight:800}
.intro-explanation{font-size:1.15rem;line-height:1.7;color:#555;margin:0 0 32px}
.intro-visual-holder{position:relative}
.intro-main-shape{width:100%;height:480px;border-radius:32px;overflow:hidden;position:relative;box-shadow:0 12px 32px #009bf326}
.intro-main-shape img{width:100%;height:100%;object-fit:cover}
.intro-main-shape::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:repeating-linear-gradient(0deg,#00000008 0px,transparent 1px,transparent 2px,#00000008 3px),repeating-linear-gradient(90deg,#00000008 0px,transparent 1px,transparent 2px,#00000008 3px);opacity:.4;pointer-events:none}
.domain-outcomes-holder{padding:100px 20px;background:#fff}
.outcomes-inner-box{max-width:1200px;margin:0 auto}
.outcomes-header-zone{text-align:center;margin-bottom:70px}
.outcomes-header-zone h2{font-size:2.5rem;color:#331C41;margin:0 0 16px;font-weight:700}
.outcomes-subtext{font-size:1.1rem;color:#666;max-width:700px;margin:0 auto;line-height:1.6}
.outcomes-grid-structure{display:grid;grid-template-columns:repeat(3,1fr);gap:40px}
.single-outcome-card{background:linear-gradient(135deg,#F0EEE5 0%,#fff 100%);padding:40px 32px;border-radius:28px;border:2px solid #009bf31a;transition:all .3s ease;position:relative}
.single-outcome-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:0;background:linear-gradient(180deg,#009BF3,#331C41);border-radius:28px 0 0 28px;transition:height .3s ease}
.single-outcome-card:hover::before{height:100%}
.single-outcome-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px #009bf333}
.outcome-icon-holder{width:64px;height:64px;background:linear-gradient(135deg,#009BF3,#0077c2);border-radius:18px;display:flex;align-items:center;justify-content:center;margin-bottom:24px}
.outcome-icon-holder i{font-size:32px;color:#fff}
.single-outcome-card h3{font-size:1.4rem;color:#331C41;margin:0 0 14px;font-weight:600}
.outcome-description{font-size:1rem;color:#555;line-height:1.65;margin:0}
.domain-curriculum-section{padding:100px 20px;background:linear-gradient(180deg,#F0EEE5 0%,#fff 100%);position:relative}
.curriculum-box-holder{max-width:1200px;margin:0 auto}
.curriculum-intro-block{display:flex;gap:60px;align-items:flex-start;margin-bottom:60px}
.curriculum-text-side{flex:1}
.curriculum-text-side h2{font-size:2.5rem;color:#331C41;margin:0 0 20px;font-weight:700}
.curriculum-explanation{font-size:1.1rem;color:#555;line-height:1.7;margin:0}
.curriculum-visual-side{flex:1;position:relative}
.curriculum-shape-box{width:100%;height:320px;border-radius:28px;overflow:hidden;box-shadow:0 8px 24px #331c411f}
.curriculum-shape-box img{width:100%;height:100%;object-fit:cover}
.curriculum-modules-display{display:grid;grid-template-columns:1fr 1fr;gap:32px}
.module-card-item{background:#fff;padding:36px;border-radius:24px;border-left:5px solid #009BF3;box-shadow:0 4px 16px #0000000f;transition:all .3s ease}
.module-card-item:hover{box-shadow:0 8px 28px #009bf32e;transform:translateX(4px)}
.module-number-badge{display:inline-block;background:linear-gradient(135deg,#009BF3,#0077c2);color:#fff;padding:8px 18px;border-radius:12px;font-size:.9rem;font-weight:600;margin-bottom:16px}
.module-card-item h3{font-size:1.35rem;color:#331C41;margin:0 0 12px;font-weight:600}
.module-topics-list{list-style:none;padding:0;margin:0}
.module-topics-list li{padding:8px 0 8px 28px;position:relative;color:#555;font-size:.95rem;line-height:1.5}
.module-topics-list li::before{content:'';position:absolute;left:0;top:16px;width:16px;height:2px;background:#009BF3}
.domain-trial-zone{padding:100px 20px;background:#fff;position:relative}
.trial-container-main{max-width:1200px;margin:0 auto}
.trial-layout-flex{display:flex;gap:70px;align-items:center}
.trial-image-area{flex:0 0 45%;position:relative}
.trial-image-frame{width:100%;height:420px;border-radius:32px;overflow:hidden;box-shadow:0 12px 36px #331c4126}
.trial-image-frame img{width:100%;height:100%;object-fit:cover}
.trial-content-area{flex:1}
.trial-content-area h2{font-size:2.5rem;color:#331C41;margin:0 0 24px;font-weight:700}
.trial-description-text{font-size:1.1rem;color:#555;line-height:1.7;margin:0 0 32px}
.trial-features-stack{display:flex;flex-direction:column;gap:20px;margin-bottom:36px}
.trial-feature-row{display:flex;align-items:flex-start;gap:16px}
.trial-feature-icon{width:48px;height:48px;background:linear-gradient(135deg,#009bf31f,#331c4114);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.trial-feature-icon i{font-size:24px;color:#009BF3}
.trial-feature-text{flex:1;padding-top:4px}
.trial-feature-text h4{font-size:1.1rem;color:#331C41;margin:0 0 6px;font-weight:600}
.trial-feature-text p{font-size:.95rem;color:#666;margin:0;line-height:1.6}
.trial-action-button{display:inline-block;background:linear-gradient(135deg,#009BF3,#0077c2);color:#fff;padding:16px 40px;border-radius:24px;text-decoration:none;font-size:1.05rem;font-weight:600;transition:all .3s ease;box-shadow:0 4px 16px #009bf34d}
.trial-action-button:hover{transform:translateY(-3px);box-shadow:0 8px 24px #009bf366;color:#fff}
.domain-team-section{padding:100px 20px;background:linear-gradient(180deg,#fff 0%,#F0EEE5 100%)}
.team-wrapper-main{max-width:1200px;margin:0 auto}
.team-header-area{text-align:center;margin-bottom:70px}
.team-header-area h2{font-size:2.5rem;color:#331C41;margin:0 0 18px;font-weight:700}
.team-intro-text{font-size:1.1rem;color:#555;max-width:700px;margin:0 auto;line-height:1.7}
.team-profiles-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:36px}
.team-member-box{background:#fff;padding:32px 24px;border-radius:24px;text-align:center;box-shadow:0 4px 16px #0000000f;transition:all .3s ease;border:2px solid transparent}
.team-member-box:hover{transform:translateY(-8px);box-shadow:0 12px 32px #009bf333;border-color:#009bf34d}
.team-avatar-circle{width:120px;height:120px;background:linear-gradient(135deg,#009BF3,#331C41);border-radius:50%;margin:0 auto 20px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.team-avatar-circle::after{content:'';position:absolute;width:100%;height:100%;background:linear-gradient(135deg,#fff3,transparent);top:0;left:0}
.team-avatar-circle i{font-size:56px;color:#fff;position:relative;z-index:2}
.team-member-box h3{font-size:1.2rem;color:#331C41;margin:0 0 8px;font-weight:600}
.team-role-label{font-size:.95rem;color:#009BF3;margin:0 0 16px;font-weight:500}
.team-bio-snippet{font-size:.9rem;color:#666;line-height:1.6;margin:0}
.domain-values-segment{padding:100px 20px;background:#fff;position:relative}
.values-holder-box{max-width:1200px;margin:0 auto}
.values-structure-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.values-visual-column{position:relative}
.values-image-container{width:100%;height:450px;border-radius:32px;overflow:hidden;box-shadow:0 12px 36px #009bf326;position:relative}
.values-image-container img{width:100%;height:100%;object-fit:cover}
.values-image-container::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,#009bf31a 0%,#331c411a 100%);z-index:1}
.values-text-column{padding-left:20px}
.values-text-column h2{font-size:2.5rem;color:#331C41;margin:0 0 24px;font-weight:700}
.values-main-description{font-size:1.1rem;color:#555;line-height:1.7;margin:0 0 40px}
.values-items-stack{display:flex;flex-direction:column;gap:28px}
.single-value-item{padding-left:60px;position:relative}
.single-value-item::before{content:'';position:absolute;left:0;top:0;width:44px;height:44px;background:linear-gradient(135deg,#009bf326,#331c411a);border-radius:12px;border:2px solid #009BF3}
.single-value-item h3{font-size:1.25rem;color:#331C41;margin:0 0 10px;font-weight:600}
.value-explanation{font-size:.98rem;color:#666;line-height:1.65;margin:0}
@media (max-width: 1024px) {
.intro-content-block{grid-template-columns:1fr;gap:40px}
.intro-text-area{padding-right:0}
.intro-text-area h1{font-size:2.5rem}
.outcomes-grid-structure{grid-template-columns:repeat(2,1fr);gap:32px}
.curriculum-intro-block{flex-direction:column;gap:40px}
.curriculum-modules-display{grid-template-columns:1fr}
.trial-layout-flex{flex-direction:column;gap:40px}
.trial-image-area{flex:none;width:100%}
.team-profiles-grid{grid-template-columns:repeat(2,1fr)}
.values-structure-layout{grid-template-columns:1fr;gap:40px}
.values-text-column{padding-left:0}
}
@media (max-width: 768px) {
.domain-intro-wrapper{padding:60px 20px}
.intro-text-area h1{font-size:2rem}
.intro-explanation{font-size:1rem}
.intro-main-shape{height:320px}
.domain-outcomes-holder{padding:70px 20px}
.outcomes-header-zone h2{font-size:2rem}
.outcomes-grid-structure{grid-template-columns:1fr;gap:24px}
.domain-curriculum-section{padding:70px 20px}
.curriculum-text-side h2{font-size:2rem}
.domain-trial-zone{padding:70px 20px}
.trial-content-area h2{font-size:2rem}
.domain-team-section{padding:70px 20px}
.team-header-area h2{font-size:2rem}
.team-profiles-grid{grid-template-columns:1fr;gap:28px}
.domain-values-segment{padding:70px 20px}
.values-text-column h2{font-size:2rem}
.values-image-container{height:300px}
}
@media (max-width: 480px) {
.intro-text-area h1{font-size:1.75rem}
.intro-main-shape{height:260px}
.outcomes-header-zone h2,.curriculum-text-side h2,.trial-content-area h2,.team-header-area h2,.values-text-column h2{font-size:1.75rem}
.single-outcome-card,.module-card-item{padding:28px 20px}
.trial-image-frame{height:280px}
}
.contact-intro-area{max-width:1200px;margin:0 auto;padding:80px 20px 60px}
.intro-layout-wrapper{display:flex;align-items:center;gap:50px;position:relative}
.intro-photo-section{flex:0 0 45%;position:relative}
.intro-photo-section img{width:100%;height:480px;object-fit:cover;transform:rotate(-2deg);border-radius:28px;box-shadow:0 8px 24px #009bf326}
.intro-text-section{flex:1}
.intro-text-section h1{font-size:48px;color:#331C41;line-height:1.2;margin:0;font-weight:700}
.contact-method-grid{max-width:1200px;margin:0 auto;padding:0 20px 80px}
.method-cards-holder{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:40px}
.method-single-card{background:linear-gradient(135deg,#009bf30d 0%,#331c410d 100%);padding:40px 30px;border-radius:32px;text-align:center;transition:transform .3s ease,box-shadow .3s ease}
.method-single-card:hover{transform:translateY(-6px);box-shadow:0 12px 28px #009bf32e}
.method-icon-holder{width:70px;height:70px;background:linear-gradient(135deg,#009BF3 0%,#331C41 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.method-icon-holder i{font-size:32px;color:#F0EEE5}
.method-single-card h3{font-size:22px;color:#331C41;margin:0 0 12px;font-weight:600}
.method-single-card p{font-size:16px;color:#331C41;margin:0;line-height:1.6;opacity:.8}
.method-single-card a{color:#009BF3;text-decoration:none;font-weight:500;transition:color .3s ease}
.method-single-card a:hover{color:#331C41}
.contact-form-zone{max-width:1200px;margin:0 auto;padding:0 20px 80px}
.form-intro-text{text-align:center;max-width:680px;margin:0 auto 50px}
.form-intro-text h2{font-size:40px;color:#331C41;margin:0 0 16px;font-weight:700}
.form-intro-text p{font-size:17px;color:#331C41;margin:0;line-height:1.7;opacity:.8}
.multistep-form-container{background:#F0EEE5;border-radius:36px;padding:50px;box-shadow:0 6px 20px #331c411a}
.step-indicator-bar{display:flex;justify-content:space-between;margin-bottom:50px;position:relative}
.step-indicator-bar::before{content:'';position:absolute;top:20px;left:0;right:0;height:3px;background:#331c4126;z-index:1}
.step-item-marker{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;flex:1}
.step-circle-badge{width:42px;height:42px;background:#fff;border:3px solid #331c4126;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:600;color:#331C41;transition:all .3s ease}
#step1:checked ~ .multistep-form-container .step-item-marker:nth-child(1) .step-circle-badge,#step2:checked ~ .multistep-form-container .step-item-marker:nth-child(2) .step-circle-badge,#step3:checked ~ .multistep-form-container .step-item-marker:nth-child(3) .step-circle-badge{background:linear-gradient(135deg,#009BF3 0%,#331C41 100%);border-color:#009BF3;color:#fff}
.step-label-text{margin-top:12px;font-size:14px;color:#331C41;font-weight:500;opacity:.6;transition:opacity .3s ease}
#step1:checked ~ .multistep-form-container .step-item-marker:nth-child(1) .step-label-text,#step2:checked ~ .multistep-form-container .step-item-marker:nth-child(2) .step-label-text,#step3:checked ~ .multistep-form-container .step-item-marker:nth-child(3) .step-label-text{opacity:1}
.form-step-radio{display:none}
.step-content-panel{display:none}
#step1:checked ~ .multistep-form-container #content-step1,#step2:checked ~ .multistep-form-container #content-step2,#step3:checked ~ .multistep-form-container #content-step3{display:block}
.step-content-panel h3{font-size:26px;color:#331C41;margin:0 0 24px;font-weight:600}
.field-group-holder{margin-bottom:24px}
.field-group-holder label{display:block;font-size:15px;color:#331C41;margin-bottom:10px;font-weight:500}
.field-group-holder input[type="text"],.field-group-holder input[type="email"]{width:100%;padding:16px 20px;border:2px solid #331c4126;border-radius:24px;font-size:16px;color:#331C41;background:#fff;transition:border-color .3s ease,box-shadow .3s ease;box-sizing:border-box}
.field-group-holder input[type="text"]:focus,.field-group-holder input[type="email"]:focus{outline:none;border-color:#009BF3;box-shadow:0 0 0 4px #009bf31a}
.navigation-buttons-row{display:flex;justify-content:space-between;margin-top:40px;gap:20px}
.btn-nav-step{padding:14px 36px;border-radius:28px;font-size:16px;font-weight:600;cursor:pointer;transition:all .3s ease;border:none;z-index:10;position:relative}
.btn-next-step{background:linear-gradient(135deg,#009BF3 0%,#331C41 100%);color:#fff;margin-left:auto}
.btn-next-step:hover{transform:translateY(-2px);box-shadow:0 6px 18px #009bf34d}
.btn-prev-step{background:#fff;color:#331C41;border:2px solid #331C41}
.btn-prev-step:hover{background:#331C41;color:#fff}
.privacy-consent-box{margin:30px 0;padding:20px;background:#fff9;border-radius:20px;border:2px solid #331c411a}
.privacy-consent-box label{display:flex;align-items:flex-start;gap:12px;cursor:pointer;font-size:15px;color:#331C41;line-height:1.6}
.privacy-consent-box input[type="checkbox"]{margin-top:4px;width:20px;height:20px;cursor:pointer;flex-shrink:0}
.privacy-consent-box a{color:#009BF3;text-decoration:none;font-weight:500;transition:color .3s ease}
.privacy-consent-box a:hover{color:#331C41}
.btn-submit-form{padding:16px 48px;background:linear-gradient(135deg,#009BF3 0%,#331C41 100%);color:#fff;border:none;border-radius:28px;font-size:17px;font-weight:600;cursor:pointer;transition:all .3s ease;z-index:10;position:relative;display:block;width:100%}
.btn-submit-form:hover{transform:translateY(-2px);box-shadow:0 8px 24px #009bf359}
.location-info-area{max-width:1200px;margin:0 auto;padding:0 20px 100px}
.location-content-wrapper{background:linear-gradient(135deg,#009bf314 0%,#331c4114 100%);border-radius:36px;padding:60px 50px;position:relative;overflow:hidden}
.location-content-wrapper::before{content:'';position:absolute;top:-50%;right:-10%;width:400px;height:400px;background:radial-gradient(circle,#009bf326 0%,transparent 70%);border-radius:50%;z-index:1}
.location-inner-content{position:relative;z-index:2}
.location-inner-content h2{font-size:38px;color:#331C41;margin:0 0 32px;font-weight:700}
.address-details-group{display:flex;flex-direction:column;gap:18px}
.address-line-item{display:flex;align-items:flex-start;gap:16px}
.address-icon-circle{width:44px;height:44px;background:linear-gradient(135deg,#009BF3 0%,#331C41 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.address-icon-circle i{font-size:20px;color:#F0EEE5}
.address-text-content{flex:1}
.address-text-content h4{font-size:16px;color:#331C41;margin:0 0 6px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;opacity:.7}
.address-text-content p{font-size:18px;color:#331C41;margin:0;line-height:1.6;font-weight:500}
@media (max-width: 1366px) {
.intro-layout-wrapper{gap:40px}
.intro-text-section h1{font-size:42px}
.form-intro-text h2{font-size:36px}
}
@media (max-width: 768px) {
.contact-intro-area{padding:50px 20px 40px}
.intro-layout-wrapper{flex-direction:column;gap:30px}
.intro-photo-section{flex:0 0 auto;width:100%}
.intro-photo-section img{height:320px}
.intro-text-section h1{font-size:34px}
.method-cards-holder{grid-template-columns:1fr;gap:24px}
.form-intro-text h2{font-size:30px}
.multistep-form-container{padding:30px 24px}
.step-indicator-bar{margin-bottom:40px}
.step-circle-badge{width:36px;height:36px;font-size:14px}
.step-label-text{font-size:12px}
.step-content-panel h3{font-size:22px}
.navigation-buttons-row{flex-direction:column}
.btn-next-step{margin-left:0}
.location-content-wrapper{padding:40px 30px}
.location-inner-content h2{font-size:30px}
}
@media (max-width: 375px) {
.intro-text-section h1{font-size:28px}
.form-intro-text h2{font-size:26px}
.multistep-form-container{padding:24px 18px}
.location-content-wrapper{padding:30px 20px}
.location-inner-content h2{font-size:26px}
}
.title-intro-wrapper{position:relative;padding:80px 20px;overflow:hidden;background:linear-gradient(135deg,#009bf314 0%,#331c411f 50%,#f0eee5e6 100%);background-size:200% 200%;animation:gradientFlow 8s ease infinite}
@keyframes gradientFlow {
0%{background-position:0 50%}
50%{background-position:100% 50%}
100%{background-position:0 50%}
}
.title-intro-wrapper .content-holder{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.title-intro-wrapper .text-column{z-index:2}
.title-intro-wrapper .main-heading{font-size:3.2rem;line-height:1.2;color:#331C41;font-weight:700;margin:0 0 24px}
.title-intro-wrapper .intro-description{font-size:1.15rem;line-height:1.7;color:#4a4a4a;margin:0 0 32px}
.title-intro-wrapper .link-btn{display:inline-block;padding:14px 32px;background:#009BF3;color:#fff;text-decoration:none;border-radius:28px;font-weight:600;transition:all .3s ease;box-shadow:0 4px 12px #009bf340}
.title-intro-wrapper .link-btn:hover{background:#0088d6;transform:translateY(-2px);box-shadow:0 6px 18px #009bf359}
.title-intro-wrapper .image-column{position:relative}
.title-intro-wrapper .fragmented-image-holder{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.title-intro-wrapper .image-part{width:100%;height:240px;border-radius:24px;overflow:hidden;position:relative;box-shadow:0 8px 24px #331c4126}
.title-intro-wrapper .image-part img{width:100%;height:100%;object-fit:cover;filter:blur(0px);transition:filter .4s ease}
.title-intro-wrapper .image-part::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(180deg,transparent 60%,#009bf326 100%);pointer-events:none}
.title-intro-wrapper .image-part:hover img{filter:blur(1px)}
.story-narrative-section{padding:100px 20px;background:#fff}
.story-narrative-section .wrapper-block{max-width:1200px;margin:0 auto}
.story-narrative-section .split-layout{display:grid;grid-template-columns:1.2fr 0.8fr;gap:80px;align-items:start}
.story-narrative-section .narrative-content{display:flex;flex-direction:column;gap:48px}
.story-narrative-section .content-piece{position:relative;padding-left:28px}
.story-narrative-section .content-piece::before{content:'';position:absolute;left:0;top:8px;width:4px;height:calc(100% - 16px);background:linear-gradient(180deg,#009BF3 0%,#331C41 100%);border-radius:4px}
.story-narrative-section .piece-label{font-size:.85rem;text-transform:uppercase;letter-spacing:1.5px;color:#009BF3;font-weight:700;margin:0 0 12px}
.story-narrative-section .piece-heading{font-size:1.8rem;color:#331C41;font-weight:700;margin:0 0 16px;line-height:1.3}
.story-narrative-section .piece-text{font-size:1.05rem;line-height:1.8;color:#5a5a5a;margin:0}
.story-narrative-section .stats-sidebar{background:linear-gradient(135deg,#F0EEE5 0%,#f0eee580 100%);padding:48px 36px;border-radius:32px;position:sticky;top:100px;box-shadow:0 12px 32px #331c4114}
.story-narrative-section .stat-item{margin-bottom:40px;padding-bottom:40px;border-bottom:2px solid #009bf326}
.story-narrative-section .stat-item:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}
.story-narrative-section .stat-number{font-size:3.5rem;font-weight:800;color:#009BF3;line-height:1;margin:0 0 8px;display:block}
.story-narrative-section .stat-label{font-size:1.1rem;color:#331C41;font-weight:600;margin:0 0 8px}
.story-narrative-section .stat-description{font-size:.95rem;color:#6a6a6a;line-height:1.6;margin:0}
.story-narrative-section .progress-visual{margin-top:16px;height:8px;background:#331c411a;border-radius:8px;overflow:hidden;position:relative}
.story-narrative-section .progress-fill{height:100%;background:linear-gradient(90deg,#009BF3 0%,#331C41 100%);border-radius:8px;transition:width 1.5s ease}
.story-narrative-section .stat-item:nth-child(1) .progress-fill{width:87%}
.story-narrative-section .stat-item:nth-child(2) .progress-fill{width:92%}
.story-narrative-section .stat-item:nth-child(3) .progress-fill{width:78%}
.story-narrative-section .visual-accent{margin-top:32px;padding-top:32px;border-top:2px solid #009bf333}
.story-narrative-section .accent-icon{width:60px;height:60px;background:#009BF3;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.story-narrative-section .accent-icon i{font-size:28px;color:#fff}
.story-narrative-section .accent-text{text-align:center;font-size:.95rem;color:#331C41;font-weight:600;line-height:1.5;margin:0}
@media (max-width: 1366px) {
.title-intro-wrapper .main-heading{font-size:2.8rem}
.story-narrative-section .split-layout{gap:60px}
}
@media (max-width: 768px) {
.title-intro-wrapper{padding:60px 20px}
.title-intro-wrapper .content-holder{grid-template-columns:1fr;gap:40px}
.title-intro-wrapper .main-heading{font-size:2.2rem}
.title-intro-wrapper .intro-description{font-size:1.05rem}
.title-intro-wrapper .fragmented-image-holder{grid-template-columns:1fr;gap:12px}
.title-intro-wrapper .image-part{height:200px}
.story-narrative-section{padding:60px 20px}
.story-narrative-section .split-layout{grid-template-columns:1fr;gap:48px}
.story-narrative-section .stats-sidebar{position:static;top:auto}
.story-narrative-section .piece-heading{font-size:1.5rem}
.story-narrative-section .stat-number{font-size:2.8rem}
}
@media (max-width: 375px) {
.title-intro-wrapper{padding:40px 16px}
.title-intro-wrapper .main-heading{font-size:1.9rem}
.title-intro-wrapper .link-btn{padding:12px 24px;font-size:.95rem}
.story-narrative-section{padding:48px 16px}
.story-narrative-section .content-piece{padding-left:20px}
.story-narrative-section .stats-sidebar{padding:32px 24px}
}
.domain-success-wrapper{max-width:1200px;margin:0 auto;padding:80px 20px;position:relative}
.success-message-holder{display:flex;flex-direction:column;align-items:center;text-align:center;gap:40px}
.success-icon-area{position:relative;width:180px;height:180px}
.success-icon-area::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;background:linear-gradient(135deg,#009bf31a 0%,#331c411a 100%);border-radius:50%}
.success-icon-area::after{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:80%;height:80%;background:#009BF3;border-radius:50%;clip-path:polygon(0 0,100% 0,100% 85%,85% 100%,0 100%)}
.success-icon-checkmark{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2}
.success-icon-checkmark svg{width:80px;height:80px;fill:none;stroke:#F0EEE5;stroke-width:4;stroke-linecap:round;stroke-linejoin:round}
.success-text-content{max-width:680px}
.success-text-content h1{font-size:42px;line-height:1.2;color:#331C41;margin:0 0 20px;font-weight:700}
.success-text-content p{font-size:18px;line-height:1.6;color:#331C41;margin:0 0 16px;opacity:.85}
.success-text-content p:last-of-type{margin-bottom:0}
.success-actions-holder{display:flex;gap:16px;flex-wrap:wrap;justify-content:center;margin-top:40px}
.success-btn-primary{display:inline-block;padding:16px 40px;background:#009BF3;color:#F0EEE5;text-decoration:none;border-radius:28px;font-size:16px;font-weight:600;transition:all .3s ease;position:relative;z-index:10;border:2px solid transparent}
.success-btn-primary:hover{background:#0088d6;transform:translateY(-2px);box-shadow:0 8px 16px #009bf34d}
.success-btn-secondary{display:inline-block;padding:16px 40px;background:transparent;color:#009BF3;text-decoration:none;border-radius:28px;font-size:16px;font-weight:600;border:2px solid #009BF3;transition:all .3s ease;position:relative;z-index:10}
.success-btn-secondary:hover{background:#009bf31a;transform:translateY(-2px)}
.success-decoration-pattern{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.03;pointer-events:none;z-index:0;background-image:repeating-linear-gradient(45deg,#331C41 0,#331C41 2px,transparent 2px,transparent 20px),repeating-linear-gradient(-45deg,#009BF3 0,#009BF3 2px,transparent 2px,transparent 20px)}
.success-info-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;margin-top:60px;max-width:900px;margin-left:auto;margin-right:auto}
.success-card-item{background:#F0EEE5;padding:32px 28px;border-radius:24px;text-align:left;position:relative;overflow:hidden}
.success-card-item::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:linear-gradient(180deg,#009BF3 0%,#331C41 100%)}
.success-card-item h3{font-size:20px;color:#331C41;margin:0 0 12px;font-weight:600}
.success-card-item p{font-size:15px;line-height:1.5;color:#331C41;margin:0;opacity:.8}
.success-card-icon{width:36px;height:36px;margin-bottom:16px;opacity:.8}
@media (max-width: 768px) {
.domain-success-wrapper{padding:60px 20px}
.success-icon-area{width:140px;height:140px}
.success-icon-checkmark svg{width:60px;height:60px}
.success-text-content h1{font-size:32px}
.success-text-content p{font-size:16px}
.success-actions-holder{flex-direction:column;width:100%}
.success-btn-primary,.success-btn-secondary{width:100%;text-align:center}
.success-info-cards{grid-template-columns:1fr;margin-top:40px}
}
@media (max-width: 375px) {
.domain-success-wrapper{padding:40px 16px}
.success-text-content h1{font-size:28px}
.success-card-item{padding:24px 20px}
}