:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --card: rgba(15, 23, 42, 0.72);
  --stroke: rgba(96, 165, 250, 0.18);
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --cyan: #06b6d4;
  --glow: #60a5fa;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --success: #22c55e;
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.55);
  --radius: 22px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.25), transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.18), transparent 22%),
    radial-gradient(circle at 50% 85%, rgba(96, 165, 250, 0.14), transparent 28%),
    linear-gradient(180deg, #020617 0%, #06101f 35%, #020617 100%);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(96,165,250,0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 40%, rgba(6,182,212,0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.10) 0 1px, transparent 2px);
  background-size: 220px 220px, 260px 260px, 180px 180px;
  animation: driftBg 18s linear infinite;
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(8px);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.75;
  font-size: 1rem;
}

.section-head {
  margin-bottom: 42px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #dbeafe;
  font-size: 0.95rem;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  animation: badgeFloat 4s ease-in-out infinite;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(96, 165, 250, 0.09);
  transition: 0.35s ease;
}

.navbar.scrolled {
  background: rgba(2, 6, 23, 0.82);
  box-shadow: 0 10px 35px rgba(0,0,0,0.24);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  font-weight: 800;
  animation: logoPulse 4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: 0.7s ease;
}

.btn:hover::before {
  left: 120%;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  color: var(--text);
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: rgba(96, 165, 250, 0.45);
  transform: translateY(-3px) scale(1.02);
}

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.16;
  pointer-events: none;
}

.hero-wave-1 {
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, var(--primary), transparent 60%);
  animation: rotateSlow 18s linear infinite;
}

.hero-wave-2 {
  bottom: -30%;
  left: -10%;
  background: radial-gradient(circle, var(--cyan), transparent 60%);
  animation: rotateSlow 22s linear infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-title {
  animation: heroTextUp 1s ease both;
}

.hero h1 span {
  background: linear-gradient(90deg, #ffffff, #93c5fd, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shineText 4s linear infinite;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat,
.card,
.about-text,
.about-visual,
.main-panel,
.profile-box,
.cta-banner,
.timeline-item,
.faq-item {
  transform-style: preserve-3d;
}

.stat {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: #dbeafe;
}

.stat p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted-2);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-block {
  animation: float 5s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: rgba(37, 99, 235, 0.18);
  top: 6%;
  right: 12%;
}

.orb-2 {
  width: 170px;
  height: 170px;
  background: rgba(6, 182, 212, 0.18);
  bottom: 12%;
  left: 10%;
  animation-delay: 1s;
}

.orb-3 {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.09);
  top: 40%;
  left: 4%;
  animation-delay: 2s;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.82));
  border: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.6);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.13), transparent 45%, rgba(6, 182, 212, 0.1));
  pointer-events: none;
}

.main-panel {
  width: 100%;
  max-width: 520px;
  border-radius: 32px;
  padding: 24px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  animation: blinkDots 2s ease-in-out infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.panel-label {
  color: #dbeafe;
  font-size: 0.95rem;
  font-weight: 600;
}

.ai-screen {
  display: grid;
  gap: 16px;
}

.screen-box {
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(96, 165, 250, 0.12);
}

.neon-border {
  box-shadow: inset 0 0 0 1px rgba(96,165,250,0.08), 0 0 25px rgba(37,99,235,0.08);
}

.screen-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.screen-title h4 {
  font-size: 1rem;
  color: #f8fafc;
}

.tiny-pill {
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
}

.line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.95), rgba(6, 182, 212, 0.45));
  margin-bottom: 10px;
  animation: pulseLine 3s ease-in-out infinite;
  transform-origin: left;
}

.line:nth-child(2) { width: 92%; }
.line:nth-child(3) { width: 75%; }
.line:nth-child(4) { width: 84%; }
.line:nth-child(5) { width: 64%; }

.learn-grid,
.benefit-grid,
.module-grid,
.testimonial-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.learn-grid,
.benefit-grid,
.module-grid,
.testimonial-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.09), transparent 45%, rgba(6, 182, 212, 0.05));
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.65);
}

.card:hover::before {
  opacity: 1;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(6, 182, 212, 0.18));
  border: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow: inset 0 0 25px rgba(255,255,255,0.02);
  animation: iconBob 3.6s ease-in-out infinite;
}

.card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.about-text {
  padding: 30px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.about-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dbeafe;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.12);
  transition: 0.3s ease;
}

.point:hover {
  transform: translateX(6px);
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.timeline {
  width: 100%;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(96, 165, 250, 0.12);
}

.timeline-no {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 800;
  flex-shrink: 0;
}

.module-card ul,
.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.module-card li::before,
.pricing-card li::before {
  content: "✓";
  color: #86efac;
  margin-right: 10px;
  font-weight: 700;
}

.highlight-card {
  border-color: rgba(6, 182, 212, 0.24);
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.16), rgba(15, 23, 42, 0.82));
}

.instructor {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.profile-box {
  min-height: 420px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(96, 165, 250, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.84));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.profile-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.85));
  display: grid;
  place-items: center;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
  position: relative;
  animation: profileSpin 10s linear infinite;
}

.profile-ring::after {
  content: "Your Image";
  width: 198px;
  height: 198px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.95));
  border: 1px solid rgba(255,255,255,0.07);
  color: #dbeafe;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.03em;
}

.testimonial-card .stars {
  color: #facc15;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial-card .name {
  margin-top: 16px;
  color: #dbeafe;
  font-weight: 700;
}

.pricing-card {
  position: relative;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0;
}

.price h3 {
  font-size: 2.7rem;
  line-height: 1;
  margin: 0;
}

.price span {
  color: var(--muted-2);
  padding-bottom: 5px;
}

.faq-wrap {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.faq-item {
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.4rem;
  color: #bfdbfe;
  flex-shrink: 0;
}

.cta-banner {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(6, 182, 212, 0.55));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.28);
}

.cta-banner h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  max-width: 650px;
}

footer {
  padding: 34px 0 28px;
  border-top: 1px solid rgba(96, 165, 250, 0.08);
  background: rgba(2, 6, 23, 0.45);
  position: relative;
  z-index: 2;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  align-items: start;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.9;
  font-size: 0.96rem;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted-2);
  text-align: center;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: pulseButton 2.6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.8; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.03); }
}

@keyframes pulseButton {
  0%, 100% { box-shadow: 0 14px 36px rgba(37, 99, 235, 0.35); }
  50% { box-shadow: 0 18px 50px rgba(37, 99, 235, 0.55); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35); }
  50% { box-shadow: 0 16px 40px rgba(6, 182, 212, 0.42); }
}

@keyframes blinkDots {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes iconBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shineText {
  to { background-position: 200% center; }
}

@keyframes heroTextUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes profileSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes driftBg {
  from { transform: translateY(0px); }
  to { transform: translateY(-120px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-wrap,
  .instructor,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .learn-grid,
  .benefit-grid,
  .module-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 16px 24px;
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-stats,
  .learn-grid,
  .benefit-grid,
  .module-grid,
  .testimonial-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .main-panel,
  .about-text,
  .about-visual,
  .profile-box,
  .cta-banner,
  .card {
    border-radius: 24px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .btn-group {
    width: 100%;
  }
}
/* ===== FIX: Instructor Image Full Card ===== */

.profile-box {
  height: 420px !important;
  overflow: hidden !important;
  display: block !important;
  padding: 0 !important;
}

.profile-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top;
  display: block;
}