
:root {
  --c1: #6C3FC5;
  --c2: #E8612C;
  --c3: #3BAED4;
  --c4: #F5A623;
  --bg: #F7F5FF;
  --txt: #1A1535;
  --txt2: #4A4570;
  --white: #FFFFFF;
  --card: #FFFFFFEE;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --sh1: 0 2px 8px rgba(108,63,197,.10);
  --sh2: 0 8px 32px rgba(108,63,197,.15), 0 2px 8px rgba(108,63,197,.08);
  --sh3: 0 20px 60px rgba(108,63,197,.18), 0 8px 24px rgba(108,63,197,.10), 0 2px 6px rgba(0,0,0,.04);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Rubik', sans-serif;
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  line-height: 1.6;
}

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


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .4s ease;
}
.hdr.scrolled,
.hdr.hdr-solid {
  background: rgba(247,245,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--sh2);
  padding: 12px 0;
}
.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.hdr-nav a {
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  transition: opacity .3s;
  opacity: .9;
}
.hdr.scrolled .hdr-nav a,
.hdr.hdr-solid .hdr-nav a {
  color: var(--txt);
  opacity: 1;
}
.hdr-nav a:hover { opacity: 1; }
.hdr.scrolled .hdr-nav a:hover,
.hdr.hdr-solid .hdr-nav a:hover { color: var(--c1); }
.hdr-logo img { height: 44px; width: auto; }
.hdr-cta {
  background: var(--c1) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(108,63,197,.35);
  opacity: 1 !important;
}
.hdr-cta:hover {
  background: var(--c2) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,97,44,.35) !important;
}
.hdr-ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hdr-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hdr.scrolled .hdr-ham span,
.hdr.hdr-solid .hdr-ham span { background: var(--txt); }


.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,21,53,.6);
  z-index: 1500;
  opacity: 0;
  transition: opacity .35s;
}
.mob-overlay.open { display: block; opacity: 1; }
.mob-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1600;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -8px 0 40px rgba(108,63,197,.15);
  overflow-y: auto;
}
.mob-panel.open { transform: translateX(0); }
.mob-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--txt);
  padding: 4px;
  margin-bottom: 16px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mob-nav a {
  display: block;
  padding: 14px 0;
  color: var(--txt);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(108,63,197,.08);
  transition: color .3s;
}
.mob-nav a:hover { color: var(--c1); }
.mob-cta-wrap { margin-top: 24px; }
.mob-cta {
  display: block;
  text-align: center;
  background: var(--c1);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all .3s;
}
.mob-cta:hover { background: var(--c2); }


.sec { padding: 100px 0; }
.sec-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c1);
  background: rgba(108,63,197,.08);
  border: 1px solid rgba(108,63,197,.15);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.sec-label.light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--txt);
  line-height: 1.2;
  margin-bottom: 20px;
}
.sec-title.light { color: var(--white); }
.sec-title.left { text-align: left; }
.sec-sub {
  color: var(--txt2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.sec-sub.light { color: rgba(255,255,255,.8); }


.sec-mesh { position: relative; overflow: hidden; }
.mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mesh-bg-2 {
  background:
    radial-gradient(ellipse 70% 70% at 10% 50%, #6C3FC5 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 85% 20%, #3BAED4 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 60% 85%, #E8612C 0%, transparent 45%),
    linear-gradient(135deg, #1A1535 0%, #2D1B69 100%);
}
.mesh-bg-3 {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #6C3FC5 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, #3BAED4 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 90% 70%, #E8612C 0%, transparent 45%),
    linear-gradient(160deg, #1A1535 0%, #2D1B69 100%);
}


.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 15% 50%, #6C3FC5 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, #3BAED4 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 70% 80%, #E8612C 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 40% 10%, #F5A623 0%, transparent 45%),
    linear-gradient(135deg, #1A1535 0%, #2D1B69 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,15,45,.25);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-tag i { color: var(--c4); }
.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-typed-wrap {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--c4);
  min-height: 2.4em;
  display: block;
  margin-bottom: 20px;
}
.hero-p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-pri {
  background: var(--c2);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(232,97,44,.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.btn-pri:hover {
  background: #d4521f;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,97,44,.45);
}
.btn-sec {
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  border: 1px solid rgba(255,255,255,.3);
  transition: all .3s;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.btn-sec:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn-main {
  background: var(--c1);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(108,63,197,.35);
  min-height: 44px;
}
.btn-main:hover { background: var(--c2); transform: translateY(-3px); }
.hero-img-wrap { position: relative; display: flex; justify-content: flex-end; }
.hero-img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh3);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform .5s ease;
}
.hero-img-card:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.hero-img-card img {
  width: 100%;
  max-width: 520px;
  height: 400px;
  object-fit: cover;
  display: block;
}
.hero-float {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-1 { bottom: -20px; left: -30px; }
.hero-float-2 { top: -20px; right: -10px; }
.hero-float i { font-size: 1.3rem; color: var(--c1); }
.hero-float-txt { font-size: .78rem; font-weight: 600; color: var(--txt); line-height: 1.3; }
.hero-float-sub { font-size: .7rem; color: var(--txt2); font-weight: 400; display: block; }


.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.feat-crd {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--sh2);
  border: 1px solid rgba(108,63,197,.06);
  transition: all .3s;
}
.feat-crd:hover { transform: translateY(-6px); box-shadow: var(--sh3); border-color: rgba(108,63,197,.15); }
.feat-ico {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(108,63,197,.12) 0%, rgba(59,174,212,.08) 100%);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--c1);
  border: 1px solid rgba(108,63,197,.1);
}
.feat-crd h3 { font-size: 1rem; font-weight: 600; color: var(--txt); margin-bottom: 10px; }
.feat-crd p { font-size: .88rem; color: var(--txt2); line-height: 1.65; }


.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.mod-crd {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .3s;
}
.mod-crd:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }
.mod-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  margin-bottom: 8px;
  line-height: 1;
}
.mod-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.mod-content p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.65; }
.mod-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--r-sm);
  margin-top: 16px;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh3);
}
.about-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--c1);
  border: 1px solid rgba(108,63,197,.1);
}
.about-badge i { font-size: 1.1rem; }
.about-txt-col p { color: var(--txt2); line-height: 1.75; font-size: .98rem; }
.notice-box {
  background: rgba(108,63,197,.06);
  border: 1px solid rgba(108,63,197,.15);
  border-left: 4px solid var(--c1);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--txt2);
}
.notice-box.wide { max-width: 100%; }
.notice-box i { color: var(--c1); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.notice-box p { line-height: 1.6; }


.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.plat-crd {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--sh1);
  border: 1px solid rgba(108,63,197,.06);
  transition: all .3s;
  border-top: 3px solid var(--c1);
}
.plat-crd:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.plat-ico { font-size: 1.6rem; color: var(--c1); margin-bottom: 14px; }
.plat-crd h4 { font-size: .98rem; font-weight: 600; color: var(--txt); margin-bottom: 10px; }
.plat-crd p { font-size: .86rem; color: var(--txt2); line-height: 1.65; }


.cta-img {
  width: 100%;
  max-width: 800px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin: 0 auto 40px;
  box-shadow: var(--sh3);
}


.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh1);
  border: 1px solid rgba(108,63,197,.06);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: var(--sh2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--txt);
  text-align: left;
  transition: color .3s;
  min-height: 44px;
}
.faq-q:hover { color: var(--c1); }
.faq-icon {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--c1);
  transition: transform .35s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding: 0 24px 22px;
  color: var(--txt2);
  font-size: .9rem;
  line-height: 1.75;
}


.sec-newsletter { padding: 0; }
.newsletter-strip {
  background: linear-gradient(135deg, var(--c1) 0%, #5230A8 50%, #3BAED4 100%);
  padding: 60px 24px;
}
.nl-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.nl-txt { flex: 1; min-width: 240px; }
.nl-txt h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.nl-txt p { color: rgba(255,255,255,.8); font-size: .9rem; }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; flex: 1; min-width: 280px; }
.nl-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-size: .9rem;
  outline: none;
  min-width: 200px;
  background: rgba(255,255,255,.95);
  color: var(--txt);
  box-shadow: var(--sh1);
}
.nl-btn {
  background: var(--c2);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 44px;
  box-shadow: 0 4px 16px rgba(232,97,44,.35);
}
.nl-btn:hover { background: #d4521f; transform: translateY(-2px); }


.ftr {
  background: var(--txt);
  color: rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
}
.ftr-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(108,63,197,.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59,174,212,.2) 0%, transparent 45%);
  pointer-events: none;
}
.ftr-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.ftr-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ftr-brand { max-width: 320px; }
.ftr-logo { height: 40px; width: auto; margin-bottom: 16px; }
.ftr-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.ftr-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ftr-col h4 { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.ftr-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ftr-col ul li { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; align-items: flex-start; gap: 8px; }
.ftr-col ul li i { color: var(--c1); font-size: .8rem; margin-top: 3px; flex-shrink: 0; }
.ftr-col ul a { color: rgba(255,255,255,.6); transition: color .3s; }
.ftr-col ul a:hover { color: var(--white); }
.ftr-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}


.page-hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, #6C3FC5 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 30%, #3BAED4 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 80%, #E8612C 0%, transparent 45%),
    linear-gradient(135deg, #1A1535 0%, #2D1B69 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(20,15,45,.2); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 600px; line-height: 1.7; }


.val-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.val-crd {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all .3s;
}
.val-crd:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }
.val-ico {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--c4);
}
.val-crd h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.val-crd p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.65; }


.course-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh2);
  border: 1px solid rgba(108,63,197,.06);
}
.course-detail-card.reverse { direction: rtl; }
.course-detail-card.reverse > * { direction: ltr; }
.course-detail-card.dark {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.12);
}
.cdc-img img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.cdc-content { padding: 40px; }
.cdc-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c1);
  background: rgba(108,63,197,.08);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(108,63,197,.12);
}
.cdc-tag.light { color: var(--c4); background: rgba(245,166,35,.1); border-color: rgba(245,166,35,.2); }
.cdc-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--txt); margin-bottom: 16px; }
.cdc-content p { color: var(--txt2); font-size: .92rem; line-height: 1.75; }
.cdc-topics { margin-top: 24px; }
.cdc-topics h4 { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--txt2); margin-bottom: 12px; }
.cdc-topics ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cdc-topics ul li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--txt2); }
.cdc-topics ul li i { color: var(--c1); font-size: .8rem; flex-shrink: 0; }


.two-course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}
.two-crd {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--sh2);
  border: 1px solid rgba(108,63,197,.06);
  transition: all .3s;
}
.two-crd:hover { transform: translateY(-4px); box-shadow: var(--sh3); }
.two-crd-ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c1), var(--c3));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(108,63,197,.3);
}
.two-crd h3 { font-size: 1.15rem; font-weight: 700; color: var(--txt); margin-bottom: 14px; }
.two-crd p { color: var(--txt2); font-size: .9rem; line-height: 1.7; }
.two-crd-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.two-crd-list li { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--txt2); }
.two-crd-list li i { color: var(--c1); font-size: .75rem; }


.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.prod-crd {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all .3s;
}
.prod-crd:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }
.prod-ico {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--c4);
}
.prod-crd h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.prod-crd p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.65; }
.prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.prod-detail-crd {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh2);
  border: 1px solid rgba(108,63,197,.06);
  transition: all .3s;
}
.prod-detail-crd:hover { transform: translateY(-4px); box-shadow: var(--sh3); }
.prod-img { width: 100%; height: 200px; object-fit: cover; }
.prod-detail-content { padding: 24px; }
.prod-detail-content h3 { font-size: 1rem; font-weight: 600; color: var(--txt); margin-bottom: 10px; }
.prod-detail-content p { font-size: .88rem; color: var(--txt2); line-height: 1.65; }


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.crd { background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh2); border: 1px solid rgba(108,63,197,.06); }
.contact-crd h2 { font-size: 1.5rem; font-weight: 700; color: var(--txt); margin-bottom: 8px; }
.contact-info-crd {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh2);
  border: 1px solid rgba(108,63,197,.06);
  margin-bottom: 24px;
}
.contact-info-crd h3 { font-size: 1.1rem; font-weight: 700; color: var(--txt); margin-bottom: 24px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-ico {
  width: 44px; height: 44px;
  background: rgba(108,63,197,.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c1);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(108,63,197,.1);
}
.ci-item strong { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--txt2); margin-bottom: 4px; }
.ci-item p, .ci-item a { font-size: .9rem; color: var(--txt); }
.ci-item a:hover { color: var(--c1); }
.map-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh1); }


.frm { display: flex; flex-direction: column; gap: 20px; }
.frm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.frm-grp { display: flex; flex-direction: column; gap: 6px; }
.frm-grp label { font-size: .82rem; font-weight: 600; color: var(--txt); letter-spacing: .03em; }
.frm-grp input,
.frm-grp textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(108,63,197,.15);
  border-radius: var(--r-sm);
  font-family: 'Rubik', sans-serif;
  font-size: .9rem;
  color: var(--txt);
  background: var(--bg);
  transition: all .3s;
  outline: none;
}
.frm-grp input:focus,
.frm-grp textarea:focus {
  border-color: var(--c1);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(108,63,197,.1);
}
.frm-grp textarea { resize: vertical; min-height: 120px; }
.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--txt2);
}
.frm-check input { width: 18px; height: 18px; accent-color: var(--c1); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.frm-check a { color: var(--c1); text-decoration: underline; }
.frm-btn {
  background: var(--c1);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(108,63,197,.35);
  min-height: 52px;
}
.frm-btn:hover { background: var(--c2); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,97,44,.35); }


.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.news-crd {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--sh1);
  border: 1px solid rgba(108,63,197,.06);
  border-top: 3px solid var(--c1);
  transition: all .3s;
}
.news-crd:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.news-date { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--c1); margin-bottom: 10px; }
.news-crd h4 { font-size: .98rem; font-weight: 600; color: var(--txt); margin-bottom: 10px; }
.news-crd p { font-size: .86rem; color: var(--txt2); line-height: 1.65; margin-bottom: 16px; }
.news-link { font-size: .82rem; font-weight: 600; color: var(--c1); display: flex; align-items: center; gap: 6px; transition: gap .3s; }
.news-link:hover { gap: 10px; }


.legal-wrap {
  padding-top: 100px;
  min-height: 100vh;
}
.legal-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.legal-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(108,63,197,.1);
  margin-bottom: 48px;
}
.legal-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--txt); margin-bottom: 12px; }
.legal-meta { font-size: .85rem; color: var(--txt2); margin-top: 8px; }
.legal-intro { font-size: .95rem; color: var(--txt2); line-height: 1.8; margin-top: 20px; }
.legal-intro-short { font-size: .95rem; color: var(--txt2); line-height: 1.75; margin-top: 16px; }
.legal-body { padding-bottom: 80px; }
.legal-body h2 { font-size: 1.2rem; font-weight: 700; color: var(--txt); margin: 40px 0 14px; padding-top: 8px; border-top: 1px solid rgba(108,63,197,.08); }
.legal-body p { font-size: .92rem; color: var(--txt2); line-height: 1.8; margin-bottom: 14px; }
.legal-body a { color: var(--c1); text-decoration: underline; }
.legal-aside {
  background: rgba(108,63,197,.05);
  border: 1px solid rgba(108,63,197,.12);
  border-left: 4px solid var(--c1);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: .86rem;
  color: var(--txt2);
  line-height: 1.7;
}
.legal-aside.inline { margin: 20px 0; }
.legal-aside strong { display: block; font-weight: 700; color: var(--c1); margin-bottom: 6px; }
.def-term { color: var(--c1); font-weight: 600; }
.legal-list { list-style: none; margin: 12px 0 16px 0; display: flex; flex-direction: column; gap: 8px; }
.legal-list li { font-size: .9rem; color: var(--txt2); padding-left: 20px; position: relative; line-height: 1.7; }
.legal-list li::before { content: '·'; position: absolute; left: 6px; color: var(--c1); font-weight: 700; }
.legal-contact-box {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--sh1);
  border: 1px solid rgba(108,63,197,.08);
  margin-top: 12px;
}
.legal-contact-box p { margin-bottom: 6px; font-size: .9rem; color: var(--txt); }


.terms-body { }
.terms-clause { display: flex; gap: 28px; margin-bottom: 48px; align-items: flex-start; }
.clause-letter {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--c1), var(--c3));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(108,63,197,.25);
  margin-top: 4px;
}
.clause-content { flex: 1; }
.clause-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--txt); margin-bottom: 12px; }
.clause-content p { font-size: .91rem; color: var(--txt2); line-height: 1.8; margin-bottom: 12px; }


.cookies-intro-block {
  background: rgba(108,63,197,.04);
  border-radius: var(--r-md);
  padding: 24px;
  margin-bottom: 40px;
  border: 1px solid rgba(108,63,197,.08);
}
.cookies-intro-block p { font-size: .92rem; color: var(--txt2); line-height: 1.8; margin: 0; }
.cookies-explainer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--sh1);
  margin-bottom: 40px;
  border: 1px solid rgba(108,63,197,.06);
}
.ce-icon { font-size: 2rem; color: var(--c1); flex-shrink: 0; padding-top: 4px; }
.ce-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--txt); margin-bottom: 10px; }
.ce-content p { font-size: .9rem; color: var(--txt2); line-height: 1.75; }
.cookie-table-wrap { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
.cookie-cat { background: var(--white); border-radius: var(--r-md); padding: 28px; box-shadow: var(--sh1); border: 1px solid rgba(108,63,197,.06); }
.cc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cc-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 50px;
}
.cc-badge.necessary { background: rgba(59,174,212,.12); color: var(--c3); border: 1px solid rgba(59,174,212,.2); }
.cc-badge.analytics { background: rgba(108,63,197,.1); color: var(--c1); border: 1px solid rgba(108,63,197,.15); }
.cc-badge.functional { background: rgba(245,166,35,.12); color: #d4891a; border: 1px solid rgba(245,166,35,.2); }
.cc-header h3 { font-size: 1rem; font-weight: 600; color: var(--txt); }
.cookie-cat p { font-size: .88rem; color: var(--txt2); line-height: 1.7; margin-bottom: 12px; }
.ck-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: .84rem; }
.ck-table th { text-align: left; padding: 10px 12px; background: rgba(108,63,197,.05); color: var(--txt); font-weight: 600; border-bottom: 1px solid rgba(108,63,197,.1); }
.ck-table td { padding: 10px 12px; color: var(--txt2); border-bottom: 1px solid rgba(108,63,197,.06); }
.ck-table code { background: rgba(108,63,197,.07); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: .82rem; }
.ck-methods { display: flex; flex-direction: column; gap: 16px; margin: 16px 0 32px; }
.ck-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--sh1);
  border: 1px solid rgba(108,63,197,.06);
}
.ckm-ico {
  width: 44px; height: 44px;
  background: rgba(108,63,197,.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c1);
  font-size: 1rem;
  flex-shrink: 0;
}
.ck-method h4 { font-size: .92rem; font-weight: 600; color: var(--txt); margin-bottom: 6px; }
.ck-method p { font-size: .86rem; color: var(--txt2); line-height: 1.65; }


#hvx-cookie-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(26,21,53,.95);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.1);
  max-width: calc(100vw - 32px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
#hvx-cookie-pill.expanded {
  border-radius: 20px;
  padding: 28px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  white-space: normal;
  max-width: 480px;
  width: calc(100vw - 32px);
}
.hvx-pill-txt { font-size: .82rem; color: rgba(255,255,255,.85); font-family: 'Rubik', sans-serif; }
.hvx-pill-btns { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.hvx-btn-accept {
  background: var(--c1);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Rubik', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  min-height: 36px;
}
.hvx-btn-accept:hover { background: var(--c2); }
.hvx-btn-custom {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 8px 14px;
  font-family: 'Rubik', sans-serif;
  font-size: .78rem;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  min-height: 36px;
}
.hvx-btn-custom:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.hvx-btn-reject {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: none;
  font-family: 'Rubik', sans-serif;
  font-size: .75rem;
  cursor: pointer;
  transition: color .3s;
  padding: 4px 8px;
  min-height: 36px;
}
.hvx-btn-reject:hover { color: rgba(255,255,255,.8); }
.hvx-expanded-title { font-size: 1rem; font-weight: 700; color: var(--white); font-family: 'Rubik', sans-serif; }
.hvx-expanded-desc { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.6; font-family: 'Rubik', sans-serif; }
.hvx-cats { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.hvx-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.08);
}
.hvx-cat-label { font-size: .82rem; color: rgba(255,255,255,.85); font-family: 'Rubik', sans-serif; font-weight: 500; }
.hvx-toggle {
  position: relative;
  width: 38px; height: 20px;
  flex-shrink: 0;
}
.hvx-toggle input { opacity: 0; width: 0; height: 0; }
.hvx-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,.2);
  border-radius: 50px;
  transition: .3s;
}
.hvx-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px; width: 14px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: .3s;
}
.hvx-toggle input:checked + .hvx-toggle-slider { background: var(--c1); }
.hvx-toggle input:checked + .hvx-toggle-slider::before { transform: translateX(18px); }
.hvx-toggle input:disabled + .hvx-toggle-slider { opacity: .6; cursor: not-allowed; }
.hvx-expanded-btns { display: flex; gap: 10px; width: 100%; flex-wrap: wrap; }
.hvx-btn-save {
  background: var(--c1);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Rubik', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  flex: 1;
  min-height: 44px;
}
.hvx-btn-save:hover { background: var(--c2); }
.hvx-btn-all {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Rubik', sans-serif;
  font-size: .85rem;
  cursor: pointer;
  transition: all .3s;
  min-height: 44px;
}
.hvx-btn-all:hover { border-color: rgba(255,255,255,.5); color: var(--white); }


@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .hero-img-wrap { justify-content: center; }
  .hero-img-card img { max-width: 100%; height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 320px; }
  .course-detail-card { grid-template-columns: 1fr; }
  .course-detail-card.reverse { direction: ltr; }
  .cdc-img img { min-height: 220px; height: 220px; }
  .two-course-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .prod-detail-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr; gap: 40px; }
  .ftr-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .hdr-ham { display: flex; }
  .sec { padding: 70px 0; }
  .hero-inner { padding: 100px 20px 60px; }
  .hero-float-1, .hero-float-2 { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .plat-grid { grid-template-columns: 1fr; }
  .nl-content { flex-direction: column; gap: 24px; }
  .ftr-links { grid-template-columns: 1fr; }
  .ftr-bot { flex-direction: column; text-align: center; }
  .frm-row { grid-template-columns: 1fr; }
  .terms-clause { flex-direction: column; gap: 16px; }
  .cookies-explainer { flex-direction: column; }
  .news-grid { grid-template-columns: 1fr; }
  .legal-wrap { padding-top: 80px; }
  #hvx-cookie-pill { padding: 10px 16px; }
  #hvx-cookie-pill.expanded { padding: 24px 20px; }
  .page-hero { padding: 110px 0 60px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .btn-pri, .btn-sec { width: 100%; justify-content: center; }
  .sec-title { font-size: 1.6rem; }
  .cdc-content { padding: 24px; }
  .two-crd { padding: 24px; }
  .crd { padding: 24px; }
  .hvx-pill-btns { gap: 6px; }
  .hvx-btn-accept, .hvx-btn-custom { padding: 8px 12px; font-size: .74rem; }
}