@import "https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap";
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Noto Sans',sans-serif;background:linear-gradient(147deg,#ECEDCB 0%,#fff 100%);color:#170027;line-height:1.6;display:flex;flex-direction:column;min-height:100vh}
.site-header{background:linear-gradient(143deg,#170027 0%,#2a0045 100%);box-shadow:0 12px 28px #17002726}
.brand-wrapper{text-align:center;padding:16px 0 14px;border-bottom:1px solid #af65ff33}
.brand-wrapper .company-title{font-size:28px;font-weight:700;color:#ECEDCB;letter-spacing:1.2px}
.middle-tier{display:flex;justify-content:space-between;align-items:center;padding:22px 0;max-width:1024px;margin:0 auto;width:90%}
.logo-holder{display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.logo-holder img{height:95px;width:95px;background:#ecedcb1a;padding:8px;border-radius:4px;box-shadow:0 4px 16px #af65ff33}
.contact-info-left,.contact-info-right{display:flex;flex-direction:column;gap:10px;color:#ECEDCB}
.info-item{display:flex;align-items:center;gap:8px;font-size:14px}
.info-item i{color:#AF65FF;font-size:18px}
.info-item a{color:#ECEDCB;text-decoration:none;transition:color .3s linear}
.info-item a:hover{color:#AF65FF}
.nav-holder{border-top:1px solid #af65ff33;padding:0}
.primary-nav{display:flex;justify-content:center;align-items:center;list-style:none;max-width:1024px;margin:0 auto;padding:0}
.primary-nav li{position:relative}
.primary-nav a{display:flex;align-items:center;gap:6px;padding:18px 24px;color:#ECEDCB;text-decoration:none;font-size:15px;font-weight:400;transition:background-color .3s linear,color .3s linear}
.primary-nav a i{font-size:16px}
.primary-nav a:hover{background-color:#af65ff26;color:#AF65FF}
.primary-nav .cta-btn{background:linear-gradient(135deg,#AF65FF 0%,#8a3fcc 100%);color:#fff;border-radius:3px;margin-left:12px}
.primary-nav .cta-btn:hover{background:linear-gradient(135deg,#c080ff 0%,#AF65FF 100%);color:#fff}
.main-content{flex:1}
.site-footer{background:linear-gradient(149deg,#170027 0%,#0d0015 100%);color:#ECEDCB;padding:48px 0 24px;margin-top:60px}
.footer-container{max-width:1024px;margin:0 auto;width:90%}
.footer-nav-section{margin-bottom:32px}
.footer-nav-section h3{color:#AF65FF;font-size:16px;margin-bottom:18px;font-weight:700}
.footer-links{display:flex;flex-wrap:wrap;gap:18px;list-style:none}
.footer-links a{color:#ECEDCB;text-decoration:none;font-size:14px;transition:color .3s linear}
.footer-links a:hover{color:#AF65FF}
.contact-section{margin-bottom:32px;padding-top:28px;border-top:1px solid #af65ff33}
.contact-section h3{color:#AF65FF;font-size:16px;margin-bottom:16px;font-weight:700}
.contact-details{display:flex;flex-direction:column;gap:12px}
.contact-details .detail-row{display:flex;align-items:flex-start;gap:10px;font-size:14px}
.contact-details i{color:#AF65FF;font-size:16px;margin-top:2px}
.contact-details a{color:#ECEDCB;text-decoration:none;transition:color .3s linear}
.contact-details a:hover{color:#AF65FF}
.copyright-row{text-align:center;padding-top:24px;border-top:1px solid #af65ff33;font-size:13px;color:#ecedcbb3}
.cookie-panel{display:none;position:fixed;bottom:0;left:50%;transform:translateX(-50%);width:94%;max-width:920px;background:#fff;box-shadow:0 -8px 32px #17002740;padding:28px 32px;z-index:9999;border-top:3px solid #AF65FF}
.cookie-panel[data-visible="true"]{display:block}
.cookie-header h3{color:#170027;font-size:19px;margin-bottom:14px;font-weight:700}
.cookie-description{color:#170027;font-size:14px;line-height:1.6;margin-bottom:20px}
.cookie-description a{color:#AF65FF;text-decoration:none}
.cookie-description a:hover{text-decoration:underline}
.consent-options{display:flex;flex-direction:column;gap:14px;margin-bottom:22px}
.option-row{display:flex;align-items:center;gap:10px}
.option-row input[type="checkbox"]{width:18px;height:18px;cursor:pointer}
.option-row label{font-size:14px;color:#170027;cursor:pointer}
.option-row .category-link{margin-left:6px;font-size:13px;color:#AF65FF;text-decoration:none}
.option-row .category-link:hover{text-decoration:underline}
.button-group{display:flex;gap:12px;flex-wrap:wrap}
.btn-accept,.btn-decline{padding:12px 28px;font-size:14px;font-weight:700;border:none;cursor:pointer;transition:background-color .3s linear}
.btn-accept{background:linear-gradient(135deg,#AF65FF 0%,#8a3fcc 100%);color:#fff}
.btn-accept:hover{background:linear-gradient(135deg,#c080ff 0%,#AF65FF 100%)}
.btn-decline{background:#ECEDCB;color:#170027}
.btn-decline:hover{background:#d9daae}
@media (max-width: 768px) {
.brand-wrapper .company-title{font-size:22px}
.middle-tier{flex-direction:column;gap:20px;padding:18px 0}
.contact-info-left,.contact-info-right{display:none}
.logo-holder img{height:75px;width:75px}
.primary-nav{flex-direction:column;width:100%}
.primary-nav li{width:100%}
.primary-nav a{justify-content:center;padding:14px 16px}
.primary-nav .cta-btn{margin-left:0}
.footer-links{flex-direction:column;gap:12px}
.cookie-panel{width:96%;padding:22px 20px}
.button-group{flex-direction:column}
.btn-accept,.btn-decline{width:100%}
}
@media (max-width: 375px) {
.brand-wrapper .company-title{font-size:20px}
.cookie-header h3{font-size:17px}
.cookie-description{font-size:13px}
}
@media (min-width: 1366px) {
.brand-wrapper .company-title{font-size:32px}
.logo-holder img{height:110px;width:110px}
.primary-nav a{font-size:16px;padding:20px 28px}
}
.legal-main{max-width:1024px;margin:0 auto;padding:60px 24px;background:linear-gradient(127deg,#fff 0%,#fdfcff 100%)}
.legal-main h1{font-size:42px;line-height:1.2;color:#170027;margin:0 0 16px;font-weight:700}
.legal-main h2{font-size:32px;line-height:1.3;color:#170027;margin:48px 0 20px;font-weight:600}
.legal-main h3{font-size:24px;line-height:1.4;color:#170027;margin:36px 0 16px;font-weight:600}
.legal-main h4{font-size:20px;line-height:1.4;color:#170027;margin:28px 0 14px;font-weight:600}
.legal-main h5{font-size:18px;line-height:1.5;color:#170027;margin:24px 0 12px;font-weight:600}
.legal-main h6{font-size:16px;line-height:1.5;color:#170027;margin:20px 0 10px;font-weight:600}
.legal-main p{font-size:16px;line-height:1.75;color:#2d2d2d;margin:0 0 20px}
.legal-main ul{margin:0 0 24px;padding:0 0 0 28px;list-style-type:disc}
.legal-main ol{margin:0 0 24px;padding:0 0 0 28px;list-style-type:decimal}
.legal-main li{font-size:16px;line-height:1.7;color:#2d2d2d;margin:0 0 12px}
.legal-main ul ul,.legal-main ol ul,.legal-main ul ol,.legal-main ol ol{margin:12px 0 0}
.legal-main strong,.legal-main b{font-weight:600;color:#170027}
.legal-main table{width:100%;border-collapse:collapse;margin:28px 0;background:#fff;box-shadow:0 2px 12px #1700270f}
.legal-main thead{background:linear-gradient(135deg,#170027 0%,#2d0042 100%)}
.legal-main thead tr{border:none}
.legal-main thead th{padding:16px 18px;text-align:left;font-size:15px;font-weight:600;color:#ECEDCB;border-bottom:2px solid #AF65FF}
.legal-main tbody tr{border-bottom:1px solid #e8e8e8;transition:background .2s linear}
.legal-main tbody tr:hover{background:#fafafa}
.legal-main tbody tr:last-child{border-bottom:none}
.legal-main td{padding:14px 18px;font-size:15px;line-height:1.6;color:#2d2d2d}
.legal-main th{text-align:left}
.legal-main hr{border:none;height:2px;background:linear-gradient(90deg,#AF65FF 0%,#d4a8ff 50%,#AF65FF 100%);margin:40px 0;opacity:.3}
.legal-main div{margin:0}
@media (max-width: 768px) {
.legal-main{padding:40px 20px}
.legal-main h1{font-size:32px;margin:0 0 14px}
.legal-main h2{font-size:26px;margin:36px 0 16px}
.legal-main h3{font-size:22px;margin:28px 0 14px}
.legal-main h4{font-size:19px;margin:24px 0 12px}
.legal-main h5{font-size:17px;margin:20px 0 10px}
.legal-main h6{font-size:16px;margin:18px 0 10px}
.legal-main p{font-size:15px;margin:0 0 18px}
.legal-main ul,.legal-main ol{padding:0 0 0 24px;margin:0 0 20px}
.legal-main li{font-size:15px;margin:0 0 10px}
.legal-main table{font-size:14px;margin:20px 0}
.legal-main thead th{padding:12px 14px;font-size:14px}
.legal-main td{padding:11px 14px;font-size:14px}
.legal-main hr{margin:32px 0}
}
@media (max-width: 375px) {
.legal-main{padding:32px 16px}
.legal-main h1{font-size:28px}
.legal-main h2{font-size:23px}
.legal-main h3{font-size:20px}
.legal-main p,.legal-main li{font-size:14px}
.legal-main table{font-size:13px}
.legal-main thead th,.legal-main td{padding:10px 12px;font-size:13px}
}
.hero-wrap{background:linear-gradient(127deg,#170027 0%,#AF65FF 45%,#ECEDCB 100%);padding:80px 20px;position:relative;overflow:hidden}
.hero-wrap::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:linear-gradient(127deg,transparent 0%,#af65ff4d 50%,transparent 100%);animation:slideGrad 8s linear infinite}
@keyframes slideGrad {
0%{transform:translate(0,0)}
100%{transform:translate(30%,30%)}
}
.hero-content{max-width:1024px;margin:0 auto;position:relative;z-index:2}
.hero-content .label-txt{color:#ECEDCB;font-size:14px;letter-spacing:1px;margin-bottom:12px;text-transform:uppercase}
.hero-content .big-title{color:#fff;font-size:48px;line-height:1.2;margin-bottom:18px;font-weight:700}
.hero-content .sub-txt{color:#ECEDCB;font-size:20px;line-height:1.6;margin-bottom:32px;max-width:720px}
.hero-img-holder{margin-top:40px;border-radius:4px;overflow:hidden;box-shadow:0 16px 48px #17002766}
.hero-img-holder img{width:100%;height:auto;display:block;filter:blur(0.5px) brightness(1.05)}
.program-grid{max-width:1024px;margin:0 auto;padding:80px 20px;display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.prog-card{background:#fff;border:2px solid #ECEDCB;border-radius:6px;padding:32px 24px;transition:all .3s linear;position:relative}
.prog-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:0;background:#AF65FF;transition:height .3s linear}
.prog-card:hover{border-color:#AF65FF;box-shadow:0 12px 32px #af65ff33;transform:translateY(-4px)}
.prog-card:hover::before{height:100%}
.prog-card .icon-area{width:56px;height:56px;background:linear-gradient(135deg,#AF65FF 0%,#170027 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.prog-card .icon-area i{font-size:28px;color:#fff}
.prog-card h3{font-size:22px;color:#170027;margin-bottom:12px;font-weight:600}
.prog-card p{font-size:15px;color:#4a4a4a;line-height:1.6}
.structure-section{background:#f8f8f8;padding:80px 20px}
.structure-holder{max-width:1024px;margin:0 auto}
.structure-holder h2{font-size:36px;color:#170027;margin-bottom:48px;text-align:center;font-weight:700}
.timeline-block{position:relative;padding-left:60px}
.timeline-block::before{content:'';position:absolute;left:20px;top:0;bottom:0;width:3px;background:linear-gradient(180deg,#AF65FF 0%,#ECEDCB 100%)}
.step-item{position:relative;margin-bottom:40px;padding:28px;background:#fff;border-radius:4px;box-shadow:0 8px 24px #17002714}
.step-item::before{content:'';position:absolute;left:-40px;top:28px;width:16px;height:16px;background:#AF65FF;border-radius:50%;border:3px solid #fff;box-shadow:0 4px 12px #af65ff66}
.step-item h4{font-size:20px;color:#170027;margin-bottom:8px;font-weight:600}
.step-item .duration{font-size:13px;color:#AF65FF;margin-bottom:12px;font-weight:500}
.step-item p{font-size:15px;color:#4a4a4a;line-height:1.6}
.instructor-wrap{max-width:1024px;margin:0 auto;padding:80px 20px;display:flex;gap:48px;align-items:center}
.instructor-img{flex:0 0 280px}
.instructor-img img{width:280px;height:320px;object-fit:cover;border-radius:6px;box-shadow:0 16px 40px #17002726}
.instructor-info{flex:1}
.instructor-info h2{font-size:32px;color:#170027;margin-bottom:16px;font-weight:700}
.instructor-info .role{font-size:16px;color:#AF65FF;margin-bottom:24px;font-weight:500}
.instructor-info p{font-size:15px;color:#4a4a4a;line-height:1.7;margin-bottom:16px}
.instructor-info .expertise-list{list-style:none;padding:0;margin:24px 0 0}
.instructor-info .expertise-list li{font-size:15px;color:#170027;padding:8px 0 8px 28px;position:relative}
.instructor-info .expertise-list li::before{content:'▸';position:absolute;left:0;color:#AF65FF;font-size:18px}
.enroll-area{background:linear-gradient(163deg,#170027 0%,#AF65FF 100%);padding:80px 20px;text-align:center}
.enroll-content{max-width:720px;margin:0 auto}
.enroll-content h2{font-size:38px;color:#fff;margin-bottom:20px;font-weight:700}
.enroll-content p{font-size:17px;color:#ECEDCB;line-height:1.7;margin-bottom:32px}
.enroll-content .cta-btn{display:inline-block;padding:16px 48px;background:#ECEDCB;color:#170027;font-size:16px;font-weight:600;border-radius:3px;text-decoration:none;transition:all .3s linear;box-shadow:0 8px 24px #ecedcb4d;position:relative;z-index:10}
.enroll-content .cta-btn:hover{background:#fff;transform:translateY(-2px);box-shadow:0 12px 32px #ecedcb66}
@media (max-width: 768px) {
.hero-content .big-title{font-size:32px}
.hero-content .sub-txt{font-size:17px}
.program-grid{grid-template-columns:1fr;gap:20px;padding:60px 20px}
.instructor-wrap{flex-direction:column;padding:60px 20px;gap:32px}
.instructor-img{flex:none}
.structure-section{padding:60px 20px}
.structure-holder h2{font-size:28px;margin-bottom:32px}
.enroll-area{padding:60px 20px}
.enroll-content h2{font-size:28px}
}
@media (max-width: 375px) {
.hero-wrap{padding:60px 16px}
.hero-content .big-title{font-size:26px}
.program-grid{padding:48px 16px}
.prog-card{padding:24px 20px}
}
.hero-banner{position:relative;min-height:520px;background:linear-gradient(127deg,#170027 0%,#2d0847 48%,#AF65FF 100%);display:flex;align-items:center;overflow:hidden;padding:60px 0}
.hero-banner::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,#af65ff26 0%,transparent 70%);border-radius:50%}
.hero-banner::after{content:'';position:absolute;bottom:-30%;left:-10%;width:480px;height:480px;background:radial-gradient(circle,#ecedcb14 0%,transparent 70%);border-radius:50%}
.hero-container{max-width:1024px;width:90%;margin:0 auto;position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.hero-content h1{font-size:42px;color:#ECEDCB;line-height:1.2;margin:0 0 24px;font-weight:700}
.hero-content .subheading{font-size:19px;color:#ecedcbe0;line-height:1.6;margin:0 0 32px}
.hero-visual{position:relative}
.hero-visual img{width:100%;height:380px;object-fit:cover;border-radius:4px;box-shadow:0 16px 48px #0000004d}
.hero-btn{display:inline-block;padding:14px 36px;background:#AF65FF;color:#170027;text-decoration:none;border-radius:3px;font-weight:600;font-size:16px;transition:background .3s linear,transform .3s linear;box-shadow:0 8px 24px #af65ff4d}
.hero-btn:hover{background:#c280ff;transform:translateY(-2px)}
.offerings-sec{padding:80px 0;background:#f8f9f5}
.offerings-wrapper{max-width:1024px;width:90%;margin:0 auto}
.offerings-sec h2{font-size:36px;color:#170027;margin:0 0 16px;font-weight:700}
.offerings-sec .intro-txt{font-size:18px;color:#4a3b56;line-height:1.7;margin:0 0 48px;max-width:720px}
.opportunities-layout{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-bottom:56px}
.opportunity-card{background:#fff;border-radius:4px;padding:32px 24px;box-shadow:0 4px 16px #17002714;transition:box-shadow .3s linear,transform .3s linear}
.opportunity-card:hover{box-shadow:0 12px 32px #af65ff2e;transform:translateY(-4px)}
.opportunity-card .icon-holder{width:56px;height:56px;background:linear-gradient(135deg,#AF65FF 0%,#c280ff 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.opportunity-card .icon-holder i{font-size:28px;color:#ECEDCB}
.opportunity-card h3{font-size:22px;color:#170027;margin:0 0 12px;font-weight:600}
.opportunity-card p{font-size:16px;color:#5a4d66;line-height:1.6;margin:0}
.expand-detail-block{background:linear-gradient(94deg,#2d0847 0%,#170027 100%);padding:48px;border-radius:6px;display:grid;grid-template-columns:320px 1fr;gap:40px;align-items:center}
.expand-detail-block img{width:100%;height:280px;object-fit:cover;border-radius:4px;box-shadow:0 8px 24px #0000004d}
.expand-txt h4{font-size:26px;color:#ECEDCB;margin:0 0 16px;font-weight:600}
.expand-txt p{font-size:16px;color:#ecedcbd9;line-height:1.7;margin:0 0 12px}
.expand-txt p:last-child{margin-bottom:0}
.transparency-area{padding:80px 0;background:#fff}
.transparency-hold{max-width:1024px;width:90%;margin:0 auto}
.transparency-area h2{font-size:36px;color:#170027;margin:0 0 48px;font-weight:700}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px;margin-bottom:56px}
.trust-item{display:flex;gap:24px}
.trust-item .num-badge{flex-shrink:0;width:64px;height:64px;background:linear-gradient(135deg,#AF65FF 0%,#c895ff 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:700;color:#170027;box-shadow:0 6px 18px #af65ff40}
.trust-item .trust-content h3{font-size:22px;color:#170027;margin:0 0 12px;font-weight:600}
.trust-item .trust-content p{font-size:16px;color:#5a4d66;line-height:1.6;margin:0}
.expert-showcase{background:linear-gradient(112deg,#f3f0f7 0%,#fdfdfb 100%);padding:56px 48px;border-radius:6px;border-left:6px solid #AF65FF}
.expert-profiles{display:grid;grid-template-columns:repeat(2,1fr);gap:48px}
.expert-profile{display:flex;gap:24px;align-items:flex-start}
.expert-profile img{width:96px;height:96px;object-fit:cover;border-radius:50%;box-shadow:0 6px 20px #17002726}
.expert-bio h4{font-size:20px;color:#170027;margin:0 0 6px;font-weight:600}
.expert-bio .role-tag{font-size:14px;color:#AF65FF;margin:0 0 12px;font-weight:500}
.expert-bio p{font-size:15px;color:#5a4d66;line-height:1.6;margin:0}
.cta-footer-sec{padding:72px 0;background:linear-gradient(143deg,#170027 0%,#3d1a5c 100%);text-align:center}
.cta-holder{max-width:640px;margin:0 auto}
.cta-footer-sec h2{font-size:32px;color:#ECEDCB;margin:0 0 20px;font-weight:700}
.cta-footer-sec p{font-size:17px;color:#ecedcbe0;line-height:1.7;margin:0 0 32px}
.cta-btn-group{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.cta-primary{padding:14px 32px;background:#AF65FF;color:#170027;text-decoration:none;border-radius:3px;font-weight:600;font-size:16px;transition:background .3s linear;display:inline-block}
.cta-primary:hover{background:#c280ff}
.cta-secondary{padding:14px 32px;background:transparent;color:#ECEDCB;text-decoration:none;border-radius:3px;font-weight:600;font-size:16px;border:2px solid #ECEDCB;transition:background .3s linear,color .3s linear;display:inline-block}
.cta-secondary:hover{background:#ECEDCB;color:#170027}
@media (max-width: 1366px) {
.hero-banner{min-height:480px}
.hero-content h1{font-size:38px}
.offerings-sec h2,.transparency-area h2{font-size:32px}
}
@media (max-width: 768px) {
.hero-banner{min-height:auto;padding:48px 0}
.hero-grid{grid-template-columns:1fr;gap:32px}
.hero-content h1{font-size:32px}
.hero-content .subheading{font-size:17px}
.hero-visual img{height:280px}
.offerings-sec,.transparency-area{padding:56px 0}
.opportunities-layout{grid-template-columns:1fr;gap:24px}
.expand-detail-block{grid-template-columns:1fr;padding:32px 24px;gap:24px}
.trust-grid{grid-template-columns:1fr;gap:32px}
.expert-profiles{grid-template-columns:1fr;gap:32px}
.expert-showcase{padding:32px 24px}
.cta-footer-sec{padding:56px 0}
.cta-footer-sec h2{font-size:28px}
.cta-btn-group{flex-direction:column;align-items:stretch}
}
@media (max-width: 375px) {
.hero-content h1{font-size:28px}
.offerings-sec h2,.transparency-area h2{font-size:28px}
.opportunity-card{padding:24px 20px}
.expert-profile{flex-direction:column;align-items:center;text-align:center}
}
.contact-hero{position:relative;min-height:460px;display:flex;align-items:center;background:linear-gradient(127deg,#170027 0%,#AF65FF 100%);overflow:hidden}
.contact-hero::before{content:'';position:absolute;top:-20%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,#ecedcb26 0%,transparent 70%);border-radius:50%}
.contact-hero::after{content:'';position:absolute;bottom:-15%;left:-5%;width:450px;height:450px;background:radial-gradient(circle,#af65ff33 0%,transparent 65%);border-radius:50%}
.hero-content-wrap{max-width:1024px;width:100%;margin:0 auto;padding:70px 24px;position:relative;z-index:2}
.hero-intro-text{font-size:15px;color:#ECEDCB;letter-spacing:1.8px;text-transform:uppercase;margin:0 0 14px;opacity:.9}
.hero-main-heading{font-size:44px;color:#ECEDCB;line-height:1.2;margin:0 0 18px;font-weight:700}
.hero-description-block{max-width:580px}
.hero-description-block p{font-size:17px;color:#ecedcbe0;line-height:1.6;margin:0}
.contact-info-section{background:#ECEDCB;padding:80px 24px}
.info-inner-container{max-width:1024px;margin:0 auto}
.info-grid-layout{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:36px;margin-top:48px}
.info-card-box{background:#fff;padding:32px 28px;border-radius:4px;box-shadow:0 12px 28px #17002714;transition:all .3s linear;position:relative}
.info-card-box:hover{box-shadow:0 18px 42px #af65ff29;transform:translateY(-3px)}
.info-card-icon{width:52px;height:52px;background:linear-gradient(135deg,#AF65FF 0%,#170027 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.info-card-icon i{font-size:26px;color:#ECEDCB}
.info-card-title{font-size:20px;color:#170027;margin:0 0 12px;font-weight:600}
.info-card-detail{font-size:15px;color:#170027;line-height:1.7;margin:0}
.info-card-detail a{color:#AF65FF;text-decoration:none;transition:color .3s linear}
.info-card-detail a:hover{color:#170027}
.form-main-section{background:#fff;padding:90px 24px;position:relative}
.form-main-section::before{content:'';position:absolute;top:0;left:0;width:100%;height:220px;background:linear-gradient(180deg,#ecedcb4d 0%,transparent 100%);z-index:1}
.form-container-holder{max-width:680px;margin:0 auto;position:relative;z-index:2}
.form-section-header{text-align:center;margin-bottom:50px}
.form-section-header h2{font-size:36px;color:#170027;margin:0 0 16px;font-weight:700}
.form-section-header p{font-size:16px;color:#170027;opacity:.75;margin:0;line-height:1.6}
.contact-form-wrapper{background:#fff;padding:44px 36px;border-radius:6px;box-shadow:0 16px 48px #1700271c}
.form-row-group{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-bottom:22px}
.form-field-holder{margin-bottom:22px}
.form-field-holder label{display:block;font-size:14px;color:#170027;margin-bottom:8px;font-weight:600}
.form-field-holder input[type="text"],.form-field-holder input[type="tel"],.form-field-holder input[type="email"],.form-field-holder textarea,.form-field-holder select{width:100%;padding:14px 16px;border:2px solid #17002726;border-radius:3px;font-size:15px;color:#170027;transition:all .3s linear;background:#fff}
.form-field-holder input:focus,.form-field-holder textarea:focus,.form-field-holder select:focus{outline:none;border-color:#AF65FF;box-shadow:0 0 0 3px #af65ff1a}
.form-field-holder textarea{resize:vertical;min-height:120px}
.preference-toggle-section{margin-bottom:26px}
.preference-toggle-section label{display:block;font-size:14px;color:#170027;margin-bottom:12px;font-weight:600}
.toggle-options-row{display:flex;gap:16px}
.toggle-options-row input[type="radio"]{display:none}
.toggle-options-row .radio-label-custom{flex:1;padding:12px 20px;border:2px solid #17002726;border-radius:3px;text-align:center;font-size:15px;color:#170027;cursor:pointer;transition:all .3s linear;background:#fff}
.toggle-options-row input[type="radio"]:checked + .radio-label-custom{background:linear-gradient(127deg,#170027 0%,#AF65FF 100%);color:#ECEDCB;border-color:#AF65FF}
.conditional-field-area{max-height:0;overflow:hidden;transition:max-height .3s linear}
#webinar-yes:checked ~ .conditional-field-area{max-height:200px;margin-top:22px}
.privacy-consent-box{margin-bottom:28px}
.privacy-consent-box input[type="checkbox"]{display:none}
.consent-label-wrapper{display:flex;align-items:flex-start;gap:12px;cursor:pointer}
.custom-checkbox-visual{width:20px;height:20px;border:2px solid #17002733;border-radius:3px;flex-shrink:0;position:relative;transition:all .3s linear;background:#fff}
.privacy-consent-box input[type="checkbox"]:checked + .consent-label-wrapper .custom-checkbox-visual{background:#AF65FF;border-color:#AF65FF}
.privacy-consent-box input[type="checkbox"]:checked + .consent-label-wrapper .custom-checkbox-visual::after{content:'';position:absolute;top:3px;left:6px;width:5px;height:10px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}
.consent-text-content{font-size:14px;color:#170027;opacity:.8;line-height:1.5}
.consent-text-content a{color:#AF65FF;text-decoration:none;transition:color .3s linear}
.consent-text-content a:hover{color:#170027}
.submit-btn-holder{text-align:center}
.form-submit-btn{padding:16px 56px;background:linear-gradient(127deg,#170027 0%,#AF65FF 100%);color:#ECEDCB;border:none;border-radius:3px;font-size:16px;font-weight:600;cursor:pointer;transition:all .3s linear;box-shadow:0 8px 24px #af65ff4d;position:relative;z-index:3}
.form-submit-btn:hover{box-shadow:0 12px 32px #af65ff66;transform:translateY(-2px)}
.hours-visual-section{background:linear-gradient(67deg,#170027 0%,#AF65FF 55%,#ECEDCB 100%);padding:80px 24px;position:relative;overflow:hidden}
.hours-visual-section::before{content:'';position:absolute;top:-30%;left:-15%;width:550px;height:550px;background:radial-gradient(circle,#ecedcb1f 0%,transparent 70%);border-radius:50%}
.hours-content-box{max-width:1024px;margin:0 auto;position:relative;z-index:2}
.hours-header-section{text-align:center;margin-bottom:56px}
.hours-header-section h2{font-size:38px;color:#ECEDCB;margin:0 0 18px;font-weight:700}
.hours-header-section p{font-size:16px;color:#ecedcbd9;margin:0;line-height:1.6}
.schedule-grid-display{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:28px;max-width:900px;margin:0 auto}
.day-schedule-card{background:#fffffff2;padding:28px 24px;border-radius:4px;box-shadow:0 10px 28px #17002726;transition:all .3s linear}
.day-schedule-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px #17002738}
.day-name-header{font-size:19px;color:#170027;margin:0 0 14px;font-weight:600;padding-bottom:12px;border-bottom:2px solid #AF65FF}
.time-display-text{font-size:16px;color:#170027;margin:0;line-height:1.6}
.status-badge-inline{display:inline-block;padding:4px 12px;background:#ECEDCB;color:#170027;border-radius:12px;font-size:13px;margin-top:8px;font-weight:600}
.faq-support-section{background:#fff;padding:85px 24px}
.faq-inner-wrap{max-width:780px;margin:0 auto}
.faq-title-area{text-align:center;margin-bottom:52px}
.faq-title-area h2{font-size:36px;color:#170027;margin:0 0 16px;font-weight:700}
.faq-title-area p{font-size:16px;color:#170027;opacity:.75;margin:0;line-height:1.6}
.faq-items-list{display:flex;flex-direction:column;gap:18px}
.faq-item-block{border:2px solid #1700271a;border-radius:4px;overflow:hidden;transition:all .3s linear}
.faq-item-block:hover{border-color:#AF65FF}
.faq-toggle-checkbox{display:none}
.faq-question-label{display:flex;justify-content:space-between;align-items:center;padding:20px 24px;cursor:pointer;background:#fff;transition:background .3s linear;font-size:17px;color:#170027;font-weight:600}
.faq-question-label:hover{background:#ecedcb4d}
.faq-icon-toggle{font-size:22px;color:#AF65FF;transition:transform .3s linear}
.faq-toggle-checkbox:checked + .faq-question-label .faq-icon-toggle{transform:rotate(180deg)}
.faq-answer-content{max-height:0;overflow:hidden;transition:max-height .3s linear;background:#ecedcb26}
.faq-toggle-checkbox:checked ~ .faq-answer-content{max-height:300px}
.faq-answer-inner{padding:20px 24px;font-size:15px;color:#170027;line-height:1.7}
@media (max-width: 768px) {
.hero-main-heading{font-size:32px}
.hero-intro-text{font-size:13px}
.form-row-group{grid-template-columns:1fr}
.contact-form-wrapper{padding:32px 24px}
.toggle-options-row{flex-direction:column}
.hours-header-section h2{font-size:30px}
.faq-title-area h2{font-size:28px}
.info-grid-layout{grid-template-columns:1fr}
}
@media (max-width: 375px) {
.hero-main-heading{font-size:26px}
.contact-form-wrapper{padding:24px 18px}
.form-submit-btn{padding:14px 40px;font-size:15px}
}
.hero-about-holder{display:grid;grid-template-columns:repeat(12,1fr);gap:16px;max-width:1024px;margin:60px auto;padding:0 20px;position:relative}
.hero-about-holder::before{content:'';position:absolute;top:-40px;right:0;width:300px;height:300px;background:linear-gradient(127deg,#AF65FF 0%,#170027 100%);opacity:.08;transform:rotate(-23deg);pointer-events:none}
.hero-about-holder .title-content-block{grid-column:1 / 8;display:flex;flex-direction:column;justify-content:center;gap:20px}
.hero-about-holder .title-img-block{grid-column:8 / 13;position:relative}
.hero-about-holder .main-title-h1{font-size:46px;line-height:1.1;color:#170027;margin:0;font-weight:700}
.hero-about-holder .title-accent{color:#AF65FF;position:relative;display:inline-block}
.hero-about-holder .title-accent::after{content:'';position:absolute;bottom:-4px;left:0;width:100%;height:3px;background:linear-gradient(90deg,#AF65FF 0%,transparent 100%)}
.hero-about-holder .subtitle-text{font-size:18px;line-height:1.6;color:#170027;margin:0;opacity:.85}
.hero-about-holder .title-img-holder{position:relative;width:100%;height:100%;min-height:320px}
.hero-about-holder .title-img-holder img{width:100%;height:100%;object-fit:cover;border-radius:6px;box-shadow:0 12px 28px #17002726}
.hero-about-holder .title-img-holder::before{content:'';position:absolute;top:-12px;left:-12px;right:12px;bottom:12px;background:repeating-linear-gradient(45deg,#ECEDCB,#ECEDCB 10px,transparent 10px,transparent 20px);z-index:-1;border-radius:6px}
.journey-display-section{max-width:1024px;margin:80px auto;padding:0 20px}
.journey-display-section .content-grid-alt{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start}
.journey-display-section .text-column-left{display:flex;flex-direction:column;gap:24px}
.journey-display-section .section-h2{font-size:36px;line-height:1.2;color:#170027;margin:0;font-weight:600;position:relative;padding-left:18px}
.journey-display-section .section-h2::before{content:'';position:absolute;left:0;top:6px;bottom:6px;width:4px;background:linear-gradient(180deg,#AF65FF 0%,#170027 100%);border-radius:2px}
.journey-display-section .paragraph-text{font-size:16px;line-height:1.7;color:#170027;margin:0;opacity:.8}
.journey-display-section .visual-column-right{display:flex;flex-direction:column;gap:32px}
.journey-display-section .stat-card-item{background:linear-gradient(135deg,#ECEDCB 0%,#ecedcb66 100%);padding:28px;border-radius:4px;border-left:4px solid #AF65FF;transition:transform .3s linear,box-shadow .3s linear}
.journey-display-section .stat-card-item:hover{transform:translateY(-4px);box-shadow:0 16px 32px #af65ff1f}
.journey-display-section .stat-number{font-size:42px;line-height:1;color:#170027;margin:0 0 8px;font-weight:700}
.journey-display-section .stat-label{font-size:16px;line-height:1.4;color:#170027;margin:0;opacity:.75}
.approach-interactive-zone{background:linear-gradient(168deg,#170027 0%,#4A1A6B 100%);padding:70px 0;margin:80px 0;position:relative;overflow:hidden}
.approach-interactive-zone::after{content:'';position:absolute;bottom:0;left:0;right:0;height:120px;background:linear-gradient(0deg,#ECEDCB 0%,transparent 100%);opacity:.1;pointer-events:none}
.approach-interactive-zone .inner-content-wrap{max-width:1024px;margin:0 auto;padding:0 20px}
.approach-interactive-zone .heading-h2-white{font-size:38px;line-height:1.2;color:#ECEDCB;margin:0 0 50px;font-weight:600;text-align:center}
.approach-interactive-zone .features-tab-system{display:flex;flex-direction:column;gap:0}
.approach-interactive-zone .tab-radio-input{display:none}
.approach-interactive-zone .tab-label-btn{background:#ecedcb1a;color:#ECEDCB;padding:22px 30px;cursor:pointer;border:1px solid #af65ff4d;transition:background .3s linear,border-color .3s linear;font-size:18px;font-weight:500;display:flex;align-items:center;gap:12px}
.approach-interactive-zone .tab-label-btn:hover{background:#af65ff26;border-color:#AF65FF}
.approach-interactive-zone .tab-radio-input:checked + .tab-label-btn{background:#AF65FF;border-color:#AF65FF;color:#170027}
.approach-interactive-zone .tab-label-btn .icon-la{font-size:24px}
.approach-interactive-zone .tab-content-panel{display:none;background:#ecedcb0d;padding:32px;border:1px solid #af65ff33;border-top:none}
.approach-interactive-zone .tab-radio-input:checked ~ .tab-content-panel{display:block}
.approach-interactive-zone .panel-inner-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.approach-interactive-zone .panel-text-side{display:flex;flex-direction:column;gap:16px}
.approach-interactive-zone .panel-heading-h3{font-size:24px;line-height:1.3;color:#ECEDCB;margin:0;font-weight:600}
.approach-interactive-zone .panel-description{font-size:16px;line-height:1.6;color:#ECEDCB;margin:0;opacity:.85}
.approach-interactive-zone .panel-img-side img{width:100%;height:auto;border-radius:4px;box-shadow:0 8px 24px #0000004d}
.approach-interactive-zone .benefit-list-ul{list-style:none;padding:0;margin:20px 0 0;display:flex;flex-direction:column;gap:12px}
.approach-interactive-zone .benefit-list-ul li{display:flex;align-items:start;gap:10px;font-size:15px;line-height:1.5;color:#ECEDCB;opacity:.9}
.approach-interactive-zone .benefit-list-ul li::before{content:'→';color:#AF65FF;font-weight:700;flex-shrink:0}
.team-profile-display{max-width:1024px;margin:80px auto 100px;padding:0 20px}
.team-profile-display .intro-heading-h2{font-size:36px;line-height:1.2;color:#170027;margin:0 0 60px;font-weight:600;text-align:center;position:relative}
.team-profile-display .intro-heading-h2::after{content:'';position:absolute;bottom:-20px;left:50%;transform:translateX(-50%);width:80px;height:3px;background:linear-gradient(90deg,transparent 0%,#AF65FF 50%,transparent 100%)}
.team-profile-display .profile-card-grid{display:grid;grid-template-columns:1fr;gap:40px}
.team-profile-display .expert-profile-card{display:grid;grid-template-columns:200px 1fr;gap:32px;background:#ECEDCB;padding:32px;border-radius:6px;box-shadow:0 4px 16px #17002714;transition:box-shadow .3s linear}
.team-profile-display .expert-profile-card:hover{box-shadow:0 12px 32px #af65ff26}
.team-profile-display .profile-photo-holder{position:relative}
.team-profile-display .profile-photo-holder img{width:100%;height:250px;object-fit:cover;border-radius:4px;border:3px solid #AF65FF}
.team-profile-display .profile-info-text{display:flex;flex-direction:column;gap:16px;justify-content:center}
.team-profile-display .expert-name-h3{font-size:28px;line-height:1.2;color:#170027;margin:0;font-weight:600}
.team-profile-display .expert-role{font-size:16px;line-height:1.4;color:#AF65FF;margin:0;font-weight:500}
.team-profile-display .expert-bio{font-size:15px;line-height:1.6;color:#170027;margin:0;opacity:.8}
.team-profile-display .expert-specialties{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0 0}
.team-profile-display .specialty-tag{background:#af65ff26;color:#170027;padding:6px 14px;border-radius:20px;font-size:13px;font-weight:500;border:1px solid #af65ff4d}
.cta-final-action{background:linear-gradient(225deg,#AF65FF 0%,#170027 100%);padding:70px 20px;text-align:center}
.cta-final-action .cta-inner-holder{max-width:700px;margin:0 auto;display:flex;flex-direction:column;gap:28px;align-items:center}
.cta-final-action .cta-heading-h2{font-size:34px;line-height:1.3;color:#ECEDCB;margin:0;font-weight:600}
.cta-final-action .cta-description-p{font-size:17px;line-height:1.6;color:#ECEDCB;margin:0;opacity:.9}
.cta-final-action .btn-cta-primary{background:#ECEDCB;color:#170027;padding:16px 40px;border-radius:4px;font-size:17px;font-weight:600;text-decoration:none;display:inline-block;transition:background .3s linear,transform .3s linear;box-shadow:0 8px 20px #0003}
.cta-final-action .btn-cta-primary:hover{background:#fff;transform:translateY(-2px);box-shadow:0 12px 28px #0000004d}
@media (max-width: 768px) {
.hero-about-holder{grid-template-columns:1fr;gap:30px;margin:40px auto}
.hero-about-holder .title-content-block,.hero-about-holder .title-img-block{grid-column:1 / -1}
.hero-about-holder .main-title-h1{font-size:32px}
.hero-about-holder .subtitle-text{font-size:16px}
.journey-display-section .content-grid-alt{grid-template-columns:1fr;gap:40px}
.journey-display-section .section-h2{font-size:28px}
.approach-interactive-zone{padding:50px 0;margin:60px 0}
.approach-interactive-zone .heading-h2-white{font-size:28px;margin-bottom:30px}
.approach-interactive-zone .tab-label-btn{padding:18px 20px;font-size:16px}
.approach-interactive-zone .panel-inner-grid{grid-template-columns:1fr;gap:24px}
.team-profile-display{margin:60px auto 80px}
.team-profile-display .intro-heading-h2{font-size:28px;margin-bottom:40px}
.team-profile-display .expert-profile-card{grid-template-columns:1fr;gap:24px;padding:24px}
.team-profile-display .profile-photo-holder img{height:200px}
.cta-final-action{padding:50px 20px}
.cta-final-action .cta-heading-h2{font-size:26px}
.cta-final-action .cta-description-p{font-size:15px}
}
@media (max-width: 375px) {
.hero-about-holder .main-title-h1{font-size:26px}
.journey-display-section .section-h2{font-size:24px}
.journey-display-section .stat-number{font-size:36px}
.approach-interactive-zone .tab-content-panel{padding:20px}
.team-profile-display .expert-name-h3{font-size:24px}
}
.stats-hero{background:linear-gradient(125deg,#170027 0%,#AF65FF 100%);padding:80px 20px;position:relative;overflow:hidden}
.stats-hero::before{content:'';position:absolute;top:-50%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,#ecedcb26 0%,transparent 70%);border-radius:50%}
.hero-wrapper{max-width:1024px;margin:0 auto;position:relative;z-index:2}
.hero-wrapper h1{font-size:48px;color:#ECEDCB;margin:0 0 16px;line-height:1.2}
.hero-wrapper .sub-text{font-size:18px;color:#ecedcbd9;max-width:600px}
.metrics-grid{max-width:1024px;margin:80px auto;padding:0 20px;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:30px}
.metric-card{background:#ECEDCB;padding:32px;border-radius:4px;box-shadow:0 12px 24px #17002714;transition:all .3s linear}
.metric-card:hover{transform:translateY(-4px);box-shadow:0 16px 32px #1700271f}
.metric-card .number{font-size:52px;font-weight:700;color:#170027;margin:0 0 8px;line-height:1}
.metric-card .label{font-size:16px;color:#170027;margin:0;opacity:.75}
.growth-section{background:#f5f5f5;padding:80px 20px}
.growth-inner{max-width:1024px;margin:0 auto}
.growth-inner h2{font-size:36px;color:#170027;margin:0 0 48px;text-align:center}
.progress-list{display:flex;flex-direction:column;gap:32px}
.progress-item{background:#fff;padding:28px;border-radius:3px;box-shadow:0 8px 16px #1700270f}
.progress-item h3{font-size:20px;color:#170027;margin:0 0 12px}
.progress-bar-wrap{width:100%;height:12px;background:#e8e8e8;border-radius:6px;overflow:hidden;position:relative}
.progress-bar-fill{height:100%;background:linear-gradient(90deg,#AF65FF 0%,#170027 100%);border-radius:6px;transition:width .8s linear}
.progress-item:nth-child(1) .progress-bar-fill{width:87%}
.progress-item:nth-child(2) .progress-bar-fill{width:73%}
.progress-item:nth-child(3) .progress-bar-fill{width:92%}
.progress-item:nth-child(4) .progress-bar-fill{width:68%}
.progress-value{font-size:14px;color:#AF65FF;margin:8px 0 0;font-weight:600}
.timeline-section{max-width:1024px;margin:80px auto;padding:0 20px}
.timeline-section h2{font-size:36px;color:#170027;margin:0 0 56px;text-align:center}
.timeline-container{position:relative;padding-left:60px}
.timeline-container::before{content:'';position:absolute;left:20px;top:0;bottom:0;width:3px;background:linear-gradient(180deg,#AF65FF 0%,#170027 100%)}
.timeline-entry{position:relative;margin-bottom:48px}
.timeline-entry::before{content:'';position:absolute;left:-48px;top:8px;width:16px;height:16px;background:#AF65FF;border:3px solid #fff;border-radius:50%;box-shadow:0 4px 8px #17002726}
.timeline-entry h3{font-size:24px;color:#170027;margin:0 0 8px}
.timeline-entry .year{font-size:14px;color:#AF65FF;font-weight:600;margin:0 0 12px}
.timeline-entry p{font-size:16px;color:#170027;margin:0;line-height:1.6;opacity:.8}
.team-stats{background:linear-gradient(215deg,#ECEDCB 0%,#AF65FF 100%);padding:80px 20px}
.team-content{max-width:1024px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.team-text h2{font-size:36px;color:#170027;margin:0 0 24px}
.team-text p{font-size:16px;color:#170027;margin:0 0 16px;line-height:1.7;opacity:.85}
.team-profiles{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.profile-card{background:#fff;border-radius:4px;padding:20px;box-shadow:0 10px 20px #1700271a}
.profile-card img{width:100%;height:200px;object-fit:cover;border-radius:3px;margin-bottom:16px}
.profile-card h4{font-size:18px;color:#170027;margin:0 0 6px}
.profile-card .role{font-size:14px;color:#AF65FF;margin:0}
.visual-showcase{max-width:1024px;margin:80px auto 0;padding:0 20px 80px}
.visual-showcase h2{font-size:36px;color:#170027;margin:0 0 48px;text-align:center}
.showcase-grid{display:grid;grid-template-columns:2fr 1fr;gap:24px}
.showcase-item{position:relative;overflow:hidden;border-radius:4px;box-shadow:0 14px 28px #1700271f}
.showcase-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s linear}
.showcase-item:hover img{transform:scale(1.05)}
.showcase-item.large{grid-row:span 2}
.showcase-item.large img{height:100%;min-height:500px}
.showcase-item.small img{height:240px}
@media (max-width: 768px) {
.hero-wrapper h1{font-size:36px}
.metrics-grid{grid-template-columns:1fr;margin:48px auto}
.growth-section,.timeline-section,.team-stats,.visual-showcase{padding:48px 20px}
.team-content{grid-template-columns:1fr;gap:32px}
.team-profiles{grid-template-columns:1fr}
.showcase-grid{grid-template-columns:1fr}
.showcase-item.large{grid-row:auto}
.showcase-item.large img,.showcase-item.small img{height:280px}
.timeline-container{padding-left:40px}
.timeline-entry::before{left:-38px}
}
@media (max-width: 375px) {
.stats-hero{padding:60px 16px}
.hero-wrapper h1{font-size:28px}
.metric-card .number{font-size:42px}
.growth-inner h2,.timeline-section h2,.team-text h2,.visual-showcase h2{font-size:28px}
}
.success-wrap{max-width:1024px;margin:0 auto;padding:0}
.thanks-zone{min-height:82vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(127deg,#ECEDCB 0%,#fff 45%,#f8f4ff 100%);position:relative;overflow:hidden;padding:60px 20px}
.thanks-zone::before{content:'';position:absolute;top:-15%;right:-8%;width:380px;height:380px;background:radial-gradient(circle,#af65ff1f 0%,transparent 70%);border-radius:50%;z-index:1}
.thanks-zone::after{content:'';position:absolute;bottom:-12%;left:-6%;width:320px;height:320px;background:radial-gradient(circle,#1700270f 0%,transparent 68%);border-radius:50%;z-index:1}
.message-holder{position:relative;z-index:2;text-align:center;max-width:640px}
.icon-check{width:88px;height:88px;margin:0 auto 32px;position:relative}
.icon-check svg{width:100%;height:100%;filter:drop-shadow(0 8px 24px #af65ff33)}
.check-circle{fill:none;stroke:#AF65FF;stroke-width:3;stroke-linecap:round;animation:drawCircle .6s linear forwards}
.check-mark{fill:none;stroke:#170027;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:48;stroke-dashoffset:48;animation:drawCheck .4s linear .6s forwards}
@keyframes drawCircle {
to{stroke-dasharray:251;stroke-dashoffset:0}
}
@keyframes drawCheck {
to{stroke-dashoffset:0}
}
.main-msg{font-size:42px;font-weight:700;color:#170027;margin:0 0 18px;line-height:1.2;letter-spacing:-.02em}
.sub-msg{font-size:18px;color:#170027;margin:0 0 14px;line-height:1.5;opacity:.82}
.detail-msg{font-size:16px;color:#170027;margin:0 0 36px;line-height:1.6;opacity:.68}
.action-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.btn-primary-2{display:inline-flex;align-items:center;padding:14px 32px;background:linear-gradient(135deg,#AF65FF 0%,#84c 100%);color:#fff;text-decoration:none;border-radius:4px;font-size:16px;font-weight:600;transition:all .25s linear;box-shadow:0 4px 16px #af65ff3d;position:relative;z-index:3}
.btn-primary-2:hover{background:linear-gradient(135deg,#9d4fff 0%,#73b 100%);box-shadow:0 6px 20px #af65ff52;transform:translateY(-2px)}
.btn-secondary-2{display:inline-flex;align-items:center;padding:14px 32px;background:#fff;color:#170027;text-decoration:none;border-radius:4px;font-size:16px;font-weight:600;transition:all .25s linear;box-shadow:0 2px 12px #17002714;border:2px solid #ECEDCB;position:relative;z-index:3}
.btn-secondary-2:hover{background:#ECEDCB;box-shadow:0 4px 16px #1700271f;transform:translateY(-2px);border-color:#AF65FF}
.decoration-dots{position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;z-index:0}
.dot{position:absolute;width:6px;height:6px;background:#AF65FF;border-radius:50%;opacity:.15}
.dot:nth-child(1){top:18%;left:12%;width:8px;height:8px}
.dot:nth-child(2){top:28%;left:88%;width:5px;height:5px}
.dot:nth-child(3){top:72%;left:8%;width:7px;height:7px}
.dot:nth-child(4){top:65%;left:92%;width:6px;height:6px}
.dot:nth-child(5){top:42%;left:6%;width:4px;height:4px}
.dot:nth-child(6){top:55%;left:94%;width:5px;height:5px}
@media (max-width: 768px) {
.thanks-zone{padding:48px 20px;min-height:75vh}
.main-msg{font-size:32px;margin-bottom:14px}
.sub-msg{font-size:16px;margin-bottom:12px}
.detail-msg{font-size:15px;margin-bottom:28px}
.icon-check{width:72px;height:72px;margin-bottom:28px}
.action-btns{flex-direction:column;align-items:stretch}
.btn-primary-2,.btn-secondary-2{width:100%;justify-content:center}
.thanks-zone::before{width:280px;height:280px;right:-12%}
.thanks-zone::after{width:240px;height:240px;left:-10%}
}
@media (max-width: 375px) {
.main-msg{font-size:28px}
.sub-msg{font-size:15px}
.detail-msg{font-size:14px}
.btn-primary-2,.btn-secondary-2{padding:12px 24px;font-size:15px}
}