/* ============================================================
   CYBER SECURITY TRAINING — PAGE STYLES
   Reuses the AI Technoverse theme tokens (css/style.css)
   ============================================================ */

/* ── Shared section helpers (kept page-local, matching about.css) ── */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 560px;
}
.story-para {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── Buttons (page extras) ── */
.btn-lg { padding: 13px 28px; font-size: 0.95rem; }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }

/* ── Hero pieces reused from theme ── */
.page-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6,10,24,0.95) 0%, rgba(10,16,38,0.90) 50%, rgba(15,25,60,0.88) 100%),
    url('/images/hero-bg.jpg') center center / cover no-repeat;
  background-color: #06080f;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 56px;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::before {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

.page-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.42);
  margin-bottom: 22px; flex-wrap: wrap; justify-content: center;
  animation: hero-enter 0.6s cubic-bezier(0.4,0,0.2,1) 0.05s both;
}
.page-breadcrumb a { color: rgba(255,255,255,0.42); transition: color 0.2s; }
.page-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.page-breadcrumb .sep { opacity: 0.3; }
.page-breadcrumb .crumb-current { color: #7AABFF; font-weight: 500; }

.page-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7AABFF;
  background: rgba(44,110,232,0.18); border: 1px solid rgba(44,110,232,0.3);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
  animation: hero-enter 0.6s cubic-bezier(0.4,0,0.2,1) 0.12s both;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 18px;
  animation: hero-enter 0.5s cubic-bezier(0.4,0,0.2,1) 0.15s both;
  min-height: 1.3em;
}
.page-hero-title .accent { color: #7AABFF; }

.typo-cursor {
  display: inline-block; color: #7AABFF; font-weight: 200;
  margin-left: 2px; animation: blink-cur 0.75s step-end infinite;
}
@keyframes blink-cur { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.typo-cursor.done { animation: none; opacity: 0; transition: opacity 0.6s ease 0.2s; }

.page-hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.8;
  max-width: 620px; margin: 0 auto 28px;
  animation: hero-enter 0.75s cubic-bezier(0.4,0,0.2,1) 0.30s both;
}
.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 30px;
  animation: hero-enter 0.75s cubic-bezier(0.4,0,0.2,1) 0.44s both;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  padding: 7px 14px; border-radius: 20px; backdrop-filter: blur(6px);
}
.hero-chip i { color: #7AABFF; font-size: 0.9rem; }

.cst-hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  animation: hero-enter 0.75s cubic-bezier(0.4,0,0.2,1) 0.56s both;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Shared decorative blobs (from about.css) */
.about-deco, .mv-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about-deco .ab-blob1 {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.07) 0%, transparent 68%);
  top: -140px; right: -100px; animation: slow-drift 18s ease-in-out infinite alternate;
}
.about-deco .ab-blob2 {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.05) 0%, transparent 68%);
  bottom: -100px; left: 5%; animation: slow-drift 22s ease-in-out infinite alternate-reverse;
}
.mv-deco .mv-blob1 {
  position: absolute; width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.08) 0%, transparent 70%);
  top: -100px; right: -80px; animation: slow-drift 16s ease-in-out infinite alternate;
}
.mv-deco .mv-blob2 {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.06) 0%, transparent 70%);
  bottom: -80px; left: 5%; animation: slow-drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes slow-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(28px,18px) scale(1.07); }
}

/* Story highlights (reused) */
.story-highlights {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border);
}
.sh-item { display: flex; align-items: flex-start; gap: 14px; }
.sh-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1rem; flex-shrink: 0; margin-top: 1px;
}
.sh-title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.sh-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
.cst-overview-section { position: relative; overflow: hidden; }
.cst-overview-section > .container { position: relative; z-index: 1; }
.cst-overview-inner {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: center;
}

/* Quick-facts card */
.cst-fact-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  background: var(--white);
}
.cfc-top { background: var(--blue); padding: 32px 30px 28px; position: relative; overflow: hidden; }
.cfc-top-deco {
  position: absolute; top: -50px; right: -50px; width: 180px; height: 180px;
  border-radius: 50%; background: rgba(255,255,255,0.06);
}
.cfc-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin: 0 0 8px;
}
.cfc-heading {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: #fff;
  line-height: 1.25; letter-spacing: -0.02em; margin: 0 0 18px; position: relative; z-index: 1;
}
.cfc-tags { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.cfc-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.22); color: #fff;
}
.cfc-list { padding: 10px 30px 4px; }
.cfc-row {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 0; border-bottom: 1px solid var(--border);
}
.cfc-row:last-child { border-bottom: none; }
.cfc-row-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm); background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  font-size: 0.95rem; flex-shrink: 0;
}
.cfc-row-label { font-size: 0.83rem; color: var(--text-muted); }
.cfc-row-val {
  margin-left: auto; font-family: var(--font-head); font-size: 0.86rem;
  font-weight: 600; color: var(--text-primary); text-align: right;
}
.cfc-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 12px 24px 24px; padding: 12px; border-radius: var(--radius-md);
  background: var(--blue); color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem; box-shadow: var(--shadow-blue);
  transition: background var(--transition), transform var(--transition);
}
.cfc-cta:hover { background: var(--blue-hover); transform: translateY(-1px); }

/* ============================================================
   COURSE TIERS
   ============================================================ */
.cst-tiers-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
.cst-tier {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 36px 32px; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.cst-tier::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, #7AABFF 100%);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.cst-tier-active:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cst-tier-active:hover::before { transform: scaleX(1); }
.cst-tier-soon { background: var(--off-white); }
.cst-tier-soon::before { background: linear-gradient(90deg, var(--text-muted) 0%, #cbd5e1 100%); }

.cst-tier-badge {
  position: absolute; top: 20px; right: 20px; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 20px;
}
.cst-tier-badge-live { color: #059669; background: #ECFDF5; border: 1px solid #A7F3D0; }
.cst-tier-badge-soon { color: var(--text-muted); background: #F1F5F9; border: 1px solid var(--border); }

.cst-tier-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  font-size: 1.4rem; margin-bottom: 18px;
}
.cst-tier-soon .cst-tier-icon { background: #F1F5F9; color: var(--text-muted); }
.cst-tier-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.01em; }
.cst-tier-desc { font-size: 0.88rem; color: var(--text-sec); line-height: 1.7; margin-bottom: 22px; }
.cst-tier-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.cst-tier-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-primary); font-weight: 500; }
.cst-tier-list li i { font-size: 0.95rem; flex-shrink: 0; }
.cst-tier-active .cst-tier-list li i { color: var(--blue); }
.cst-tier-soon .cst-tier-list li { color: var(--text-muted); font-weight: 400; }
.cst-tier-soon .cst-tier-list li i { color: var(--text-muted); }
.cst-tier-btn { width: 100%; justify-content: center; }

/* ============================================================
   CURRICULUM ACCORDION
   ============================================================ */
.cst-curriculum-section { position: relative; overflow: hidden; }
.cst-curriculum-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(44,110,232,0.045) 1.5px, transparent 1.5px);
  background-size: 30px 30px; pointer-events: none;
}
.cst-curriculum-section > .container { position: relative; z-index: 1; }

.cst-accordion {
  max-width: 820px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.cst-acc-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cst-acc-item.open { border-color: rgba(44,110,232,0.35); box-shadow: 0 8px 28px rgba(44,110,232,0.09); }

.cst-acc-head {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 20px 22px; text-align: left; background: transparent;
  font-family: var(--font-head); cursor: pointer;
}
.cst-acc-num {
  font-size: 0.85rem; font-weight: 800; color: var(--blue);
  background: var(--blue-light); border-radius: var(--radius-sm);
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--transition), color var(--transition);
}
.cst-acc-item.open .cst-acc-num { background: var(--blue); color: #fff; }
.cst-acc-title {
  flex: 1; font-size: 0.98rem; font-weight: 600; color: var(--text-primary);
  letter-spacing: -0.01em; line-height: 1.4;
}
.cst-acc-icon {
  width: 30px; height: 30px; border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  flex-shrink: 0; transition: transform var(--transition), background var(--transition), color var(--transition);
}
.cst-acc-item.open .cst-acc-icon { transform: rotate(135deg); background: var(--blue); color: #fff; }

.cst-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cst-topics {
  padding: 4px 22px 22px 76px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.cst-topics li {
  position: relative; font-size: 0.87rem; color: var(--text-sec);
  line-height: 1.5; padding-left: 22px;
}
.cst-topics li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  color: var(--blue); font-weight: 700; font-size: 0.8rem;
}

/* ============================================================
   OUTCOMES
   ============================================================ */
.cst-outcomes-section { position: relative; overflow: hidden; }
.cst-outcomes-section > .container { position: relative; z-index: 1; }
.cst-outcomes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.cst-outcome {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 24px; text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.cst-outcome:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(44,110,232,0.25); }
.cst-outcome-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  font-size: 1.35rem; margin: 0 auto 16px; transition: background var(--transition), color var(--transition);
}
.cst-outcome:hover .cst-outcome-icon { background: var(--blue); color: #fff; }
.cst-outcome h4 { font-family: var(--font-head); font-size: 0.98rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.cst-outcome p { font-size: 0.83rem; color: var(--text-sec); line-height: 1.6; }

/* ============================================================
   WHY US
   ============================================================ */
.cst-why-section { position: relative; overflow: hidden; }
.cst-why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.cst-why-card {
  padding: 30px 24px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.cst-why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.cst-why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.cst-why-card:hover::before { transform: scaleX(1); }
.cst-why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  font-size: 1.3rem; margin-bottom: 16px; transition: background var(--transition), color var(--transition);
}
.cst-why-card:hover .cst-why-icon { background: var(--blue); color: #fff; }
.cst-why-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.cst-why-desc { font-size: 0.83rem; color: var(--text-sec); line-height: 1.65; }

/* ============================================================
   ENQUIRY / LEAD FORM
   ============================================================ */
.cst-enquiry-section {
  position: relative; overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, #0a1024 0%, #0f1a3c 55%, #142a5c 100%);
}
.cst-enquiry-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cst-enquiry-deco .ce-blob1 {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,110,232,0.22) 0%, transparent 70%);
  top: -120px; right: -100px; animation: slow-drift 18s ease-in-out infinite alternate;
}
.cst-enquiry-deco .ce-blob2 {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.12) 0%, transparent 70%);
  bottom: -100px; left: 3%; animation: slow-drift 22s ease-in-out infinite alternate-reverse;
}
.cst-enquiry-section > .container { position: relative; z-index: 1; }

.cst-enquiry-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

/* Left pitch */
.cst-tag-light { color: #7AABFF; background: rgba(44,110,232,0.18); border: 1px solid rgba(44,110,232,0.3); }
.cst-enquiry-title {
  font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.cst-enquiry-sub { font-size: 0.96rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 26px; max-width: 440px; }
.cst-enquiry-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.cst-enquiry-points li { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.cst-enquiry-points li i { color: #34d399; font-size: 1.1rem; flex-shrink: 0; }

.cst-enquiry-contact { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.cst-ec-item {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.8); transition: color var(--transition);
}
.cst-ec-item i { color: #7AABFF; font-size: 1rem; }
.cst-ec-item:hover { color: #fff; }

/* Form card */
.cst-form-box {
  background: var(--white); border-radius: 20px; padding: 38px 34px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35); position: relative; overflow: hidden;
}
.cst-form-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, #7AABFF 100%);
}
.form-box-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; letter-spacing: -0.02em; }
.form-box-desc { font-size: 0.86rem; color: var(--text-sec); margin-bottom: 24px; line-height: 1.6; }

/* Honeypot — visually hidden but present for bots */
.cst-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-primary); margin-bottom: 7px; }
.form-label .req { color: var(--blue); margin-left: 2px; }
.cst-optional { color: var(--text-muted); font-weight: 400; font-size: 0.75rem; }

.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.875rem;
  color: var(--text-primary); background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(44,110,232,0.11); }
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: #EF4444; }
.form-control.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }

.cst-textarea { resize: vertical; min-height: 96px; line-height: 1.6; }

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px;
}

.form-submit {
  width: 100%; padding: 13px 24px; background: var(--blue); color: var(--white);
  border: none; border-radius: var(--radius-md); font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-blue); margin-top: 4px;
}
.form-submit:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(44,110,232,0.32); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.85; cursor: default; }
.form-submit .spin { display: none; }
.form-submit.loading .spin { display: inline-block; animation: spin 0.7s linear infinite; }
.form-submit.loading .send-icon { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.cst-form-note {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 14px;
}
.cst-form-note i { font-size: 0.85rem; }

/* Success state (shared visual language) */
.form-success-wrap { display: none; text-align: center; padding: 30px 10px 14px; }
.form-success-wrap.show { display: block; }
.success-icon-ring {
  width: 72px; height: 72px; border-radius: 50%; background: #ECFDF5; border: 2px solid #A7F3D0;
  display: flex; align-items: center; justify-content: center; color: #059669; font-size: 1.8rem;
  margin: 0 auto 18px; animation: scale-in 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes scale-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.success-msg { font-size: 0.875rem; color: var(--text-sec); line-height: 1.7; }

/* ============================================================
   CTA BANNER (shared)
   ============================================================ */
.cta-banner { background: var(--blue); padding: 72px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255,255,255,0.06);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -60px; left: 200px; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(255,255,255,0.05);
}
.cta-inner {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-title { font-family: var(--font-head); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em; }
.cta-desc { font-size: 0.95rem; color: rgba(255,255,255,0.8); max-width: 520px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.btn-white { background: var(--white); color: var(--blue); font-family: var(--font-head); font-weight: 600; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cst-outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .cst-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .cst-overview-inner { grid-template-columns: 1fr; gap: 44px; }
  .cst-tiers-grid { grid-template-columns: 1fr; }
  .cst-enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .cst-topics { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .page-hero { padding-top: calc(var(--nav-height) + 24px); padding-bottom: 40px; }
  .page-hero-title { font-size: 1.85rem; }
  .cst-hero-actions .btn { width: 100%; justify-content: center; }
  .cst-outcomes-grid { grid-template-columns: 1fr; }
  .cst-why-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cst-form-box { padding: 28px 22px; }
  .cst-enquiry-section { padding: 72px 0; }
  .cst-acc-head { padding: 16px 16px; gap: 12px; }
  .cst-topics { padding-left: 22px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ab-blob1, .ab-blob2, .mv-blob1, .mv-blob2, .ce-blob1, .ce-blob2, .typo-cursor {
    animation: none !important;
  }
}
