/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a12;
  --bg-dark-2: #0f0f1a;
  --bg-light: #ffffff;
  --bg-light-2: #f8f8fc;
  --text-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #9ca3af;
  --text-muted-dark: #6b7280;
  --accent-blue: #6366f1;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --accent-orange: #f97316;
  --accent-green: #10b981;
  --accent-cyan: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  --gradient-warm: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  --max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* Center nav pill */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  background: rgba(255,255,255,0.03);
}

.nav-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 28px;
  transition: all 0.25s;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link.active {
  color: var(--text-white);
}

/* Right nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.btn-all-courses {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  z-index: 1;
  transition: opacity 0.3s;
}

.btn-all-courses span {
  background-image: linear-gradient(90deg, #f97316, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-all-courses::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1.5px;
  background: linear-gradient(90deg, #f97316, #ec4899, #a855f7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-all-courses:hover {
  opacity: 0.8;
}

.btn-login {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 16px;
  transition: color 0.2s;
}

.btn-login:hover {
  color: var(--text-white);
}


/* ========== HERO ========== */
.hero {
  background: #050510;
  padding: 130px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 115vh;
  border-radius: 0 0 48px 48px;
}

/* Earth background — positioned so horizon glow aligns with CTA button */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  width: 160%;
  left: -30%;
  top: -35%;
  height: auto;
  will-change: transform;
  transform-origin: center center;
  animation: earth-breathe 3.2s ease-in-out infinite alternate;
}

@keyframes earth-breathe {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-subtitle-top {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-subtitle-top strong {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.gradient-text-ai {
  background: linear-gradient(180deg, #8b5cf6 0%, #a855f7 30%, #ec4899 70%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-white {
  color: var(--text-white);
}

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

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

/* Hero CTA Button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background: rgba(10, 10, 18, 0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15), 0 0 60px rgba(99, 102, 241, 0.05);
  margin-bottom: 20px;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 62px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 30%, rgba(99, 102, 241, 0.3) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.hero-cta-btn:hover {
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3), 0 0 80px rgba(99, 102, 241, 0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ========== CARD STACK ========== */
.card-stack {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  height: 440px;
}

.role-card {
  position: absolute;
  height: 300px;
  width: auto;
  border-radius: 18px;
  object-fit: contain;
  transform-origin: bottom center;
}

/* Entrepreneur — center, tallest, front */
.card-entrepreneur {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 390px;
  z-index: 5;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}

/* Freelancer — left of center */
.card-freelancer {
  left: 50%;
  bottom: 10px;
  transform: translateX(calc(-50% - 180px)) rotate(-10deg);
  height: 340px;
  z-index: 4;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.4));
}

/* Graphic Designer — right of center */
.card-designer {
  left: 50%;
  bottom: 10px;
  transform: translateX(calc(-50% + 180px)) rotate(10deg);
  height: 340px;
  z-index: 4;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.4));
}

/* Digital Marketer — far left, lower than middle cards */
.card-marketer {
  left: 50%;
  bottom: -30px;
  transform: translateX(calc(-50% - 280px)) rotate(-14deg);
  height: 310px;
  z-index: 3;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
}

/* Content Creator — far right, lower than middle cards (same as marketer) */
.card-creator {
  left: 50%;
  bottom: -30px;
  transform: translateX(calc(-50% + 280px)) rotate(14deg);
  height: 310px;
  z-index: 3;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
}

/* ========== PROMPT LIBRARY ========== */
.prompt-library {
  padding: 80px 0 100px;
  background: var(--bg-light);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted-dark);
  max-width: 500px;
  line-height: 1.6;
}

.section-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.25);
}

.see-all-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Scroll navigation arrows */
.scroll-nav {
  display: flex;
  gap: 10px;
}

.scroll-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: white;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.scroll-nav-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.scroll-nav-btn.scroll-next {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: white;
}

.scroll-nav-btn.scroll-next:hover {
  background: #2d2d44;
}

/* Carousel fade-out wrapper — smooth right edge */
.carousel-fade-wrapper {
  position: relative;
}

.carousel-fade-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--bg-light));
  pointer-events: none;
  z-index: 2;
}

/* News carousel wrapper — align padding with section-container */
.news-carousel-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Prompt cards scroll container */
.prompt-cards-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 10px 0 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.prompt-cards-scroll::-webkit-scrollbar {
  display: none;
}

/* Prompt card */
.prompt-card {
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, transform 0.3s;
  cursor: pointer;
  background: #f3ebe0;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
}

.prompt-card:hover {
  background: #1a1a2e;
  transform: translateY(-4px);
}

.prompt-card:hover .prompt-card-title {
  color: white;
}

/* Fixed-height top content area so images always align */
.prompt-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.prompt-tags {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.prompt-tag {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 8px;
  font-weight: 500;
  color: var(--text-dark);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  white-space: nowrap;
}

.prompt-card:hover .prompt-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
}

/* Arrow button — hidden by default, shown on hover */
.prompt-card-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: white;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}

.prompt-card:hover .prompt-card-arrow {
  opacity: 1;
  transform: scale(1);
}

/* Card title — fixed height for 2 lines so images align */
.prompt-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 10px;
  height: 43px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Card image */
.prompt-card-img {
  margin-top: auto;
}

.prompt-card-photo {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0 120px;
  background: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#servicesCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.services .section-container {
  position: relative;
  z-index: 1;
}

.services-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.grad-replacing {
  background: linear-gradient(135deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.grad-slowwork {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.services-subtext {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 720px;
  margin: 0 auto 0;
  line-height: 1.8;
}

.services-subtext strong {
  color: rgba(255,255,255,0.9);
}

.services-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.15) 70%, transparent 100%);
  margin: 48px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

/* Service card */
.service-card {
  background: #0a0a14;
  border-radius: 16px;
  padding: 0 20px 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 17.5px;
  padding: 1.5px;
  background: transparent;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.3s;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover::before {
  background: var(--card-gradient);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15), 0 8px 40px rgba(0,0,0,0.3);
}

/* Title box inside card */
.svc-title-box {
  background: #000000;
  border-radius: 12px;
  border: none;
  padding: 24px 16px;
  margin: 0 -4px 16px;
  text-align: center;
  margin-top: 16px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient colors per card title — matched to reference */
.svc-grad-red { background-image: linear-gradient(135deg, #dc2626, #f97316); }
.svc-grad-blue { background-image: linear-gradient(135deg, #3b82f6, #22d3ee); }
.svc-grad-yellow { background-image: linear-gradient(135deg, #facc15, #c084fc); }
.svc-grad-green { background-image: linear-gradient(135deg, #34d399, #22d3ee); }
.svc-grad-teal { background-image: linear-gradient(135deg, #10b981, #6ee7b7); }
.svc-grad-purple { background-image: linear-gradient(135deg, #818cf8, #c084fc); }
.svc-grad-pink { background-image: linear-gradient(135deg, #f472b6, #ef4444); }
.svc-grad-multi { background-image: linear-gradient(135deg, #f97316, #ec4899, #a855f7); }

/* Card description */
.svc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

/* Learn More button */
.svc-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 5px 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  align-self: center;
}

.svc-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.service-card:hover .svc-learn {
  background: white;
  color: #0a0a1a;
  border-color: white;
}

.service-card:hover .svc-arrow {
  background: #0a0a1a;
  color: white;
}


/* CTA text at bottom */
.services-cta-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981, #06b6d4, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== DAILY AI NEWS ========== */
.news {
  padding: 80px 0 100px;
  background: var(--bg-light);
  overflow: hidden;
}

.news-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.news-desc {
  font-size: 15px;
  color: var(--text-muted-dark);
  max-width: 560px;
  line-height: 1.6;
}

.section-title-center {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc-center {
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* News carousel */
.news-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 20px 0 16px;
  align-items: flex-end;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.news-carousel::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.news-card:hover {
  transform: scale(1.05);
  z-index: 2;
}

.news-card-short {
  width: 240px;
}

.news-card-tall {
  width: 240px;
}

.news-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Browse Latest AI News — outlined gradient pill */
.news-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  background-image: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  white-space: nowrap;
  z-index: 1;
  transition: opacity 0.3s;
}

.news-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1.5px;
  background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.news-cta-btn:hover {
  opacity: 0.8;
}

/* ========== AI COURSES ========== */
.courses {
  padding: 80px 0 100px;
  background: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#coursesCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.courses .section-container {
  position: relative;
  z-index: 1;
}

.courses-title {
  color: #4ade80 !important;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
}

.courses-desc {
  color: #d1d5db !important;
  font-size: 20px;
  margin-bottom: 72px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Course banner cards */
.course-banners {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 66.666%;
  margin: 0 auto;
}

.course-banner-link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.course-banner-link:hover {
  transform: translateY(-4px);
}

.course-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.course-card {
  border-radius: 24px;
  padding: 48px 40px 44px;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
}

.course-card:hover {
  transform: translateY(-4px);
}

.course-free {
  background: linear-gradient(160deg, #0d1117 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.course-premium {
  background: linear-gradient(160deg, #0d1117 0%, #0f172a 100%);
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.course-premium::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 25px;
  padding: 1.5px;
  background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.course-icon-wrap {
  margin-bottom: 20px;
}

.course-icon {
  font-size: 48px;
  display: inline-block;
  filter: grayscale(0.2);
}

.course-icon-premium {
  font-size: 48px;
  filter: none;
  color: #c4b5fd;
  text-shadow: 0 0 16px rgba(168, 85, 247, 0.5);
}

.course-icon-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
}

.course-free h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 20px;
}

.course-premium h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.course-card p {
  font-size: 15px;
  color: #d1d5db;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.course-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  transition: transform 0.3s;
}

.course-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.cream-btn {
  background: #e8e0d4;
  color: #1a1a2e;
}

.cream-btn .btn-arrow {
  background: #c4b9a8;
  color: #1a1a2e;
}

.cream-btn:hover {
  background: #d9d0c2;
}

.gradient-btn {
  background: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
  color: white;
}

.gradient-btn .btn-arrow {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.gradient-btn:hover {
  opacity: 0.9;
}


/* ========== EXPERT TESTIMONIALS ========== */
.testimonials {
  padding: 42px 0 100px;
  background: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#testimonialsCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.testimonials .section-container {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  margin-bottom: 56px;
}

.testimonials-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.6);
}

.testimonials-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.testimonials-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  border-radius: 20px;
  background: #000;
  position: relative;
  transition: transform 0.3s;
  overflow: visible;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-thumb {
  display: none;
}

.testimonial-iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  border-radius: 20px;
}

.testimonial-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.4) 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.testimonial-mute-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.25s;
}

.testimonial-card:hover .testimonial-mute-btn {
  opacity: 1;
}

.testimonial-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  text-align: center;
  z-index: 2;
}

.testimonial-company-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
  background: rgba(255,255,255,0.1);
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ========== NEWSLETTER V2 ========== */
.newsletter-v2 {
  padding: 160px 0 100px;
  background: var(--bg-light);
}

.nl2-card {
  max-width: 1030px;
  margin: 0 auto;
  background: #000;
  border-radius: 28px;
  position: relative;
  overflow: visible;
  padding-left: 500px;
}

.nl2-left {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 500px;
}

.nl2-person {
  display: block;
  width: 100%;
  height: auto;
}

.nl2-right {
  padding: 48px 56px 48px 24px;
}

.nl2-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.nl2-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 380px;
}

.nl2-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  padding: 5px 5px 5px 20px;
  max-width: 380px;
}

.nl2-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #1a1a2e;
  font-size: 14px;
  outline: none;
  padding: 10px 0;
}

.nl2-input::placeholder {
  color: #999;
}

.nl2-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
  border: none;
  border-radius: 32px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nl2-btn:hover {
  opacity: 0.9;
}

.nl-magazine-preview {
  display: flex;
  gap: 12px;
}

.magazine-thumb {
  width: 80px;
  height: 100px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(168,85,247,0.3));
  border: 1px solid rgba(255,255,255,0.08);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(99,102,241,0.15);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-credit {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.gradient-text-footer {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ========== ANIMATIONS ========== */
/* Card fan scroll animation handled by JS */

/* Hover glow on service cards */
.service-card:hover .icon-circle {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* (smooth scroll handled in prompt-cards-scroll main block) */

/* (earth glow removed — using real image) */

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .nav {
    gap: 16px;
  }

  .prompt-cards-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-headline {
    font-size: 28px;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
