/* ============================================
   PODOWIS MX - Candy Gradient E-Learning Platform
   Complete Stylesheet
   ============================================ */


:root {
  --candy-pink: #f472b6;
  --candy-purple: #a855f7;
  --candy-blue: #3b82f6;
  --candy-teal: #14b8a6;
  --candy-lavender: #c084fc;
  --candy-rose: #fb7185;

  --grad-primary: linear-gradient(135deg, #f472b6 0%, #a855f7 35%, #3b82f6 70%, #14b8a6 100%);
  --grad-hero: linear-gradient(145deg, #fdf4ff 0%, #eff6ff 40%, #f0fdfa 100%);
  --grad-section: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 50%, #eff6ff 100%);
  --grad-card: linear-gradient(135deg, #fff0f9 0%, #f5f0ff 100%);
  --grad-button: linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #3b82f6 100%);
  --grad-text: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
  --grad-teal: linear-gradient(135deg, #a855f7 0%, #3b82f6 40%, #14b8a6 100%);

  --bg-canvas: #fdfcff;
  --bg-card: #ffffff;
  --bg-section-alt: #f8f4ff;

  --text-primary: #1e1030;
  --text-secondary: #4a3f6b;
  --text-muted: #7c6fa0;
  --text-light: #b8a9d4;

  --border-soft: rgba(168, 85, 247, 0.12);
  --border-medium: rgba(168, 85, 247, 0.22);

  --shadow-xs: 0 1px 3px rgba(107, 33, 168, 0.06), 0 1px 2px rgba(107, 33, 168, 0.04);
  --shadow-sm: 0 2px 8px rgba(107, 33, 168, 0.08), 0 1px 3px rgba(107, 33, 168, 0.05);
  --shadow-md: 0 4px 16px rgba(107, 33, 168, 0.10), 0 2px 6px rgba(107, 33, 168, 0.06);
  --shadow-lg: 0 8px 32px rgba(107, 33, 168, 0.13), 0 4px 12px rgba(107, 33, 168, 0.07);
  --shadow-xl: 0 16px 48px rgba(107, 33, 168, 0.16), 0 6px 20px rgba(107, 33, 168, 0.09);
  --shadow-card-hover: 0 20px 60px rgba(107, 33, 168, 0.18), 0 8px 24px rgba(107, 33, 168, 0.10);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-canvas);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }


h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.75; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-teal {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-slow);
}


.nav-full {
  padding: 0.75rem 0;
  background: rgba(253, 252, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo img, .nav-logo svg {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--candy-purple);
  background: rgba(168, 85, 247, 0.08);
}

.nav-link.active-nav {
  color: var(--candy-purple);
  background: rgba(168, 85, 247, 0.1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.6rem;
}

.lang-btn {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.05em;
}

.lang-btn:hover { color: var(--candy-purple); }

.lang-btn.active {
  background: var(--grad-button);
  color: #fff;
  padding: 0.2rem 0.5rem;
}

.lang-divider {
  color: var(--border-medium);
  font-size: 0.7rem;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-button);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.3), 0 1px 4px rgba(168, 85, 247, 0.2);
  transition: all var(--transition-spring);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4), 0 3px 8px rgba(168, 85, 247, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--candy-purple);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--candy-purple);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--candy-purple);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition-base);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  background: transparent;
}

.nav-hamburger:hover { background: rgba(168, 85, 247, 0.08); }

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(253, 252, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-soft);
}

.drawer.open { max-height: 600px; }

.drawer-inner {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.drawer-link:hover, .drawer-link.active-nav {
  background: rgba(168, 85, 247, 0.08);
  color: var(--candy-purple);
}

.drawer-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 0.5rem 0;
}

.drawer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
}


.nav-pill {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 1001;
  background: var(--grad-button);
  border-radius: var(--radius-full);
  padding: 0.55rem 1rem;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35), 0 2px 8px rgba(168, 85, 247, 0.2);
  cursor: pointer;
  transition: all var(--transition-spring);
  border: none;
}

.nav-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(168, 85, 247, 0.45), 0 3px 10px rgba(168, 85, 247, 0.25);
}

.nav-pill span {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.nav-pill-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-pill-icon span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-base);
}


.nav-wrapper.scrolled .nav-full { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.nav-wrapper.scrolled .nav-pill { display: flex; }


.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 16, 48, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(4px);
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.nav-expanded-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(253, 252, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xl);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}

.nav-expanded-panel.open { transform: translateY(0); }

.expanded-panel-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expanded-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.expanded-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.panel-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--candy-purple);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.panel-close:hover { background: var(--candy-purple); color: #fff; }

/* ============================================
   HERO / STAGE
   ============================================ */
.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: 100px;
}

.stage-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f472b6 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  top: 40%;
  left: 40%;
}

.blob-4 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
  bottom: 10%;
  right: 20%;
}

.stage-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stage-text { max-width: 580px; }

.stage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--candy-purple);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stage-title {
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.stage-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.stage-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stage-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--candy-teal);
  font-size: 0.9rem;
}


.stage-visual {
  position: relative;
  height: 480px;
}

.stage-main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.stage-main-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.stage-main-card-body {
  padding: 1.25rem;
}

.stage-main-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.stage-main-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-progress-bar {
  height: 6px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.card-progress-fill {
  height: 100%;
  background: var(--grad-button);
  border-radius: 3px;
  width: 65%;
}


.float-card {
  position: absolute;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: -1s; }
.float-card:nth-child(3) { animation-delay: -2s; }
.float-card:nth-child(4) { animation-delay: -0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.float-card-1 { top: 20px; left: 0; }
.float-card-2 { top: 60px; right: -10px; }
.float-card-3 { bottom: 80px; left: -10px; }
.float-card-4 { bottom: 30px; right: 20px; }

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.float-card-icon.pink { background: rgba(244, 114, 182, 0.12); color: var(--candy-pink); }
.float-card-icon.purple { background: rgba(168, 85, 247, 0.12); color: var(--candy-purple); }
.float-card-icon.blue { background: rgba(59, 130, 246, 0.12); color: var(--candy-blue); }
.float-card-icon.teal { background: rgba(20, 184, 166, 0.12); color: var(--candy-teal); }

.float-card-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

.float-card-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}


.stage-curtain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-canvas));
  pointer-events: none;
  z-index: 3;
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background: var(--grad-section);
}

.section-dark {
  background: linear-gradient(135deg, #1e1030 0%, #2d1b5e 50%, #0f3460 100%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--candy-purple);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   GALLERY / GRID SECTIONS
   ============================================ */
.gallery {
  display: grid;
  gap: 1.5rem;
}

.gallery-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-2 { grid-template-columns: repeat(2, 1fr); }


.shelf {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-medium) transparent;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(168, 85, 247, 0.2);
}

.card-body { padding: 1.75rem; }

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.card-icon-wrap.pink { background: rgba(244, 114, 182, 0.12); color: var(--candy-pink); }
.card-icon-wrap.purple { background: rgba(168, 85, 247, 0.12); color: var(--candy-purple); }
.card-icon-wrap.blue { background: rgba(59, 130, 246, 0.12); color: var(--candy-blue); }
.card-icon-wrap.teal { background: rgba(20, 184, 166, 0.12); color: var(--candy-teal); }
.card-icon-wrap.rose { background: rgba(251, 113, 133, 0.12); color: var(--candy-rose); }
.card-icon-wrap.lavender { background: rgba(192, 132, 252, 0.12); color: var(--candy-lavender); }

.card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


.course-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.course-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-card-body { padding: 1.5rem; }

.course-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.tag-pink { background: rgba(244, 114, 182, 0.12); color: var(--candy-pink); }
.tag-purple { background: rgba(168, 85, 247, 0.12); color: var(--candy-purple); }
.tag-blue { background: rgba(59, 130, 246, 0.12); color: var(--candy-blue); }
.tag-teal { background: rgba(20, 184, 166, 0.12); color: var(--candy-teal); }

.course-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.course-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.course-meta i { font-size: 0.8rem; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, #f472b6, #a855f7, #3b82f6, #14b8a6);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--grad-button);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.35);
  position: relative;
}

.process-step-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.process-step-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-family: 'DM Sans', sans-serif;
}

.comparison-table th {
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border-soft);
}

.comparison-table th:first-child { text-align: left; }

.col-recommended {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.06));
  border-left: 1px solid var(--border-medium);
  border-right: 1px solid var(--border-medium);
}

.recommended-badge {
  display: inline-block;
  background: var(--grad-button);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-top: 0.4rem;
}

.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table td:not(:first-child) { text-align: center; }

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td { background: rgba(168, 85, 247, 0.03); }

.check-yes { color: var(--candy-teal); font-size: 1.1rem; }
.check-no { color: var(--text-light); font-size: 1rem; }
.check-partial { color: var(--candy-blue); font-size: 1rem; }

/* ============================================
   STICKY SCROLL SECTION
   ============================================ */
.sticky-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.sticky-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.sticky-visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.sticky-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 16, 48, 0.55) 0%, rgba(45, 27, 94, 0.35) 100%);
}

.sticky-visual-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
}

.sticky-visual-badge h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.sticky-visual-badge p {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
}

.sticky-scroll-content {
  padding: 6rem 3rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.scroll-item {
  opacity: 0.5;
  transition: opacity var(--transition-slow);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition-slow);
}

.scroll-item.active {
  opacity: 1;
  background: var(--bg-card);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-md);
}

.scroll-item-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--candy-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.scroll-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* ============================================
   BEFORE/AFTER CSS SLIDER
   ============================================ */
.comparison-slider-section {
  background: var(--grad-section);
}

.ba-container {
  max-width: 800px;
  margin: 0 auto;
}

.ba-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
}

.ba-wrapper input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  -webkit-appearance: none;
  appearance: none;
}

.ba-before, .ba-after {
  position: relative;
  width: 100%;
}

.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.ba-before img, .ba-after img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.ba-after img { width: calc(800px * 1); }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.2);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 6;
}

.ba-handle i { color: var(--candy-purple); font-size: 0.9rem; }

.ba-label {
  position: absolute;
  bottom: 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* ============================================
   SPOTLIGHT (Featured Element)
   ============================================ */
.spotlight {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.spotlight::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.spotlight-inner { position: relative; z-index: 1; }

.spotlight h2 { color: #fff; margin-bottom: 1rem; }
.spotlight p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(180deg, #1a0d35 0%, #0f1a3c 100%);
  color: #fff;
  margin-top: auto;
}

.footer-testimonial {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.footer-quote-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-quote p {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  font-style: italic;
}

.footer-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

.footer-main {
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--candy-purple);
  margin-top: 0.15rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-heading {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
}

.footer-links a:hover { color: var(--candy-lavender); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.footer-disclaimer {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-disclaimer p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-canvas);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--transition-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--candy-purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237c6fa0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--candy-purple);
  flex-shrink: 0;
  cursor: pointer;
}

.form-check-label {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-check-label a {
  color: var(--candy-purple);
  text-decoration: underline;
}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--grad-section);
  position: relative;
  overflow: hidden;
}

.page-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--candy-purple); }
.breadcrumb span { color: var(--text-light); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-hero {
  padding: 8rem 0 5rem;
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.thanks-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.thanks-hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #fff;
}

.thanks-hero h1 { color: #fff; margin-bottom: 1rem; }
.thanks-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

.thanks-body {
  padding: 4rem 0;
  text-align: center;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-soft);
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.legal-date {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(168, 85, 247, 0.07);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

/* ============================================
   COOKIE CONSENT (Split Banner)
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(30, 16, 48, 0.2);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-left {
  flex: 1;
  background: #fff;
  padding: 1.5rem 2rem;
  border-top: 3px solid transparent;
  border-image: var(--grad-primary) 1;
}

.cookie-right {
  flex: 1;
  background: #fdf8ff;
  padding: 1.5rem 2rem;
  border-top: 3px solid rgba(168, 85, 247, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-title i { color: var(--candy-purple); }

.cookie-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cookie-text a {
  color: var(--candy-purple);
  text-decoration: underline;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-toggle-info {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.cookie-toggle-info span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.1rem;
}

.toggle-switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1c4e9;
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider { background: var(--candy-purple); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(16px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.7; cursor: not-allowed; }

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.cookie-btn-accept {
  background: var(--grad-button);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.25);
}

.cookie-btn-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(168, 85, 247, 0.35); }

.cookie-btn-save {
  background: transparent;
  color: var(--candy-purple);
  border: 1.5px solid var(--candy-purple);
}

.cookie-btn-save:hover { background: rgba(168, 85, 247, 0.08); }

.cookie-btn-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-medium);
}

.cookie-btn-reject:hover { color: var(--text-primary); border-color: var(--text-muted); }

/* ============================================
   TIPPY THEME
   ============================================ */
.tippy-box[data-theme~="custom"] {
  background: linear-gradient(135deg, #1e1030 0%, #2d1b5e 100%);
  color: rgba(255,255,255,0.9);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(168, 85, 247, 0.25);
  max-width: 240px;
  padding: 0.5rem 0.25rem;
}

.tippy-box[data-theme~="custom"] .tippy-arrow::before {
  color: #2d1b5e;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gradient { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(168, 85, 247, 0.1);
  color: var(--candy-purple);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(168, 85, 247, 0.18);
}

.divider {
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  width: 60px;
  margin: 1rem auto 2rem;
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.info-note i {
  color: var(--candy-blue);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */


@media (max-width: 1200px) {
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}


@media (max-width: 1024px) {
  .gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .stage-content { grid-template-columns: 1fr; gap: 3rem; }
  .stage-visual { height: 380px; }
  .stage-main-card { width: 240px; }
  .sticky-section { grid-template-columns: 1fr; min-height: auto; }
  .sticky-visual { position: relative; height: 400px; }
  .sticky-scroll-content { padding: 3rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav-links, .nav-right .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right { gap: 0.5rem; }

  .gallery-3, .gallery-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid::before { display: none; }

  .stage-content { text-align: center; padding: 3rem 1.5rem; }
  .stage-trust { justify-content: center; }
  .stage-actions { justify-content: center; }
  .stage-visual { height: 320px; display: none; }

  .float-card { display: none; }
  .float-card-1, .float-card-2 { display: flex; }

  .spotlight { padding: 2.5rem 1.75rem; }

  .comparison-slider-section .ba-before img,
  .comparison-slider-section .ba-after img { height: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-banner { flex-direction: column; }
  .cookie-left, .cookie-right { flex: none; }

  .scroll-item { padding: 1.25rem; }
  .sticky-scroll-content { padding: 2rem 1rem; gap: 1.5rem; }

  .comparison-wrap { border-radius: var(--radius-lg); }

  .contact-form-card, .contact-info-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .stage-eyebrow { font-size: 0.72rem; }
  .section-header { margin-bottom: 2.5rem; }
  .process-step { padding: 0 0.5rem; }
  .thanks-hero { padding: 7rem 0 4rem; }
}

/* ============================================
   AOS OVERRIDES
   ============================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================
   INTL TEL INPUT OVERRIDE
   ============================================ */
.iti, #phone { width: 100%; }
.iti__flag-container { z-index: 20; }


.card-gradient-border {
  position: relative;
}

.card-gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


.entrepreneur-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.entrepreneur-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: rgba(168, 85, 247, 0.2);
}

.entrepreneur-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.entrepreneur-feature-body h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.entrepreneur-feature-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--candy-pink), var(--candy-purple), var(--candy-blue), var(--candy-teal));
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.5rem;
}

.timeline-dot {
  position: absolute;
  left: -1.65rem;
  top: 0.25rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-button);
  border: 3px solid var(--bg-canvas);
  box-shadow: 0 0 0 2px var(--candy-purple);
}

.timeline-date {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--candy-purple);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.timeline-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

.scroll-indicator i { font-size: 1rem; color: var(--candy-purple); }