/* ==========================================================================
   ASPIRA – UI UX BANGALORE LANDING PAGE
   Dark Theme · Mobile-first · Responsive: 320px, 360px and up
   ========================================================================== */

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

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

body {
  font-family: 'Inter', google sans, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #d1d5dc;
  background-color: #030712;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  --bg-base: #030712;
  --bg-section: #0d1117;
  --bg-card: #0d1117;
  --bg-input: #030712;

  --border: #1e2939;
  --border-strong: #364153;

  --primary: #155dfc;
  --primary-hover: #1e4ddb;
  --accent: #2b7fff;

  --text: #ffffff;
  --text-body: #d1d5dc;
  --text-muted: #99a1af;
  --text-subtle: #6a7282;

  --gradient-headline: linear-gradient(90deg, #2b7fff 0%, #ad46ff 50%, #f6339a 100%);
  --gradient-num: linear-gradient(90deg, #51a2ff 0%, #fb64b6 100%);
  --gradient-hero-bg: linear-gradient(157deg, rgba(22, 36, 86, 0.5) 5%, #030712 50%, rgba(81, 4, 36, 0.5) 95%);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --container-max: 1200px;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- TYPOGRAPHY ---------- */
.gradient-text {
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.gradient-num {
  background: var(--gradient-num);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: 'Google Sans', sans-serif;
  font-weight: 800;
}

.text-blue {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-body);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- MID-PAGE CTAs (contextual, outline-style) ---------- */
.mid-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding: 0 8px;
}

.btn-mid-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  /* Subtle gradient border feel via box-shadow */
  border: 1px solid rgba(43, 127, 255, 0.4);
  background: rgba(21, 93, 252, 0.06);
  color: var(--text);
  position: relative;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.3;
}

.btn-mid-cta::after {
  content: '→';
  margin-left: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn-mid-cta:hover {
  border-color: var(--accent);
  background: rgba(21, 93, 252, 0.15);
  color: var(--text);
}

.btn-mid-cta:hover::after {
  transform: translateX(4px);
}

/* ---------- Scholarship phone link in pricing card ---------- */
.scholarship-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 8px 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
  text-align: center;
}

.scholarship-link:hover {
  color: #51a2ff;
  text-decoration: underline;
}

.scholarship-link svg {
  flex-shrink: 0;
}

/* ---------- BADGE / PILL ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(21, 93, 252, 0.1);
  border: 1px solid rgba(21, 93, 252, 0.5);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-pill {
  display: inline-block;
  padding: 5px 13px;
  background: rgba(21, 93, 252, 0.1);
  border: 1px solid rgba(21, 93, 252, 0.3);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---------- SECTION HEADINGS ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
}

.section-heading {
  font-family: 'Google Sans', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-paragraph {
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.6;
  /*max-width: 600px;*/
}

.section-paragraph-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 12px;
}

.logo img {
  height: 28px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
}

.header-phone:hover {
  color: var(--accent);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--gradient-hero-bg);
  padding: 56px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}

.hero-blur-1 {
  width: 280px;
  height: 280px;
  background: var(--primary);
  opacity: 0.25;
  top: 60px;
  left: -120px;
  animation: heroBlurDrift1 12s ease-in-out infinite;
}

.hero-blur-2 {
  width: 320px;
  height: 320px;
  background: #ad46ff;
  opacity: 0.2;
  top: 200px;
  right: -120px;
  animation: heroBlurDrift2 14s ease-in-out infinite;
}

@keyframes heroBlurDrift1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.22;
  }
  50% {
    transform: translate(20px, -15px) scale(1.08);
    opacity: 0.32;
  }
}

@keyframes heroBlurDrift2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translate(-25px, 20px) scale(1.1);
    opacity: 0.28;
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-blur-1,
  .hero-blur-2 {
    animation: none;
  }
}

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

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-content .badge {
  margin: 0 auto 24px;
}

.hero-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

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

/* "in 4 Months" accent line — slightly smaller and lighter to create hierarchy */
.hero-title-accent {
  display: block;
  font-size: 0.72em;
  font-weight: 600;
  color: var(--text-body);
  margin-top: 8px;
  letter-spacing: -0.5px;
}

/* Utility: prevent line break inside (used for "AI-Powered") */
.nowrap {
  white-space: nowrap;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-subtitle strong {
  color: var(--text-body);
  font-weight: 600;
}

/* Hero trust strip — credibility row with rating, count, hiring brands */
.hero-trust-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-body);
}

.hero-trust-strip .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-strip .trust-item strong {
  color: var(--text);
  font-weight: 700;
}

.hero-trust-strip .trust-divider {
  color: var(--text-subtle);
  opacity: 0.5;
}

/* Old class kept for any legacy references — set to display:none if unused */
.hero-trust {
  color: var(--text-subtle);
  font-size: 13px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-buttons .btn {
  width: 100%;
}

.hero-micro {
  color: var(--text-subtle);
  font-size: 12px;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: rgba(21, 93, 252, 0.15);
  border: 1px solid rgba(21, 93, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-number {
  font-size: 28px;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.stat-label {
  color: var(--text-subtle);
  font-size: 13px;
}

/* ==========================================================================
   VIDEO TESTIMONIALS / STUDENT STORIES
   ========================================================================== */
.video-reels {
  background: var(--bg-base);
  padding: 60px 0;
  overflow: hidden;
}

.video-carousel {
  position: relative;
}

/* Track: horizontal scroll with snap on mobile */
.video-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 16px;
  /* Side padding so the first/last cards are not flush to the edge */
  padding-left: max(16px, calc((100% - 100vw) / 2 + 16px));
  padding-right: max(16px, calc((100% - 100vw) / 2 + 16px));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  scroll-padding-left: 16px;
}

.video-track::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 220px;
  background: #101828;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.video-card:hover {
  border-color: var(--accent);
}

.video-frame {
  position: relative;
  width: 100%;
  /* 9:16 portrait aspect ratio for YouTube Shorts */
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Navigation buttons (visible on tablet+) */
.video-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(13, 17, 23, 0.92);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  z-index: 5;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.video-nav-prev {
  left: -8px;
}

.video-nav-next {
  right: -8px;
}

.video-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.video-nav:disabled:hover {
  background: rgba(13, 17, 23, 0.92);
  border-color: var(--border);
}

/* Dots indicator (mobile) */
.video-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.video-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

.video-dot:hover:not(.active) {
  background: var(--text-subtle);
}

/* ==========================================================================
   APPLICATION FORM SECTION
   ========================================================================== */
.application-form-section {
  background: var(--bg-base);
  padding: 60px 0;
}

.form-grid {
  display: grid;
  gap: 32px;
}

.form-info .section-heading {
  text-align: left;
  margin-bottom: 16px;
}

.checklist {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-body);
  font-size: 14px;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(21, 93, 252, 0.2);
  border: 1px solid rgba(21, 93, 252, 0.5);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* ==========================================================================
   STUDENT SUCCESS / TESTIMONIALS
   ========================================================================== */
.student-success {
  background: var(--bg-section);
  padding: 60px 0;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.story-card:hover {
  border-color: var(--accent);
}

.story-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 2px solid var(--border);
}

.story-name {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.story-title {
  color: var(--text-subtle);
  font-size: 13px;
  margin-bottom: 12px;
}

.story-salary {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(21, 93, 252, 0.15);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.story-company-badge {
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
}

/* HIRING PARTNERS MARQUEE */
.hiring-partners {
  margin: 40px -16px;
}

.hiring-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--text);
  margin-bottom: 20px;
}

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  animation: marquee 40s linear infinite;
  width: fit-content;
}

.partner-pill {
  flex-shrink: 0;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-body);
  font-weight: 500;
  font-size: 14px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* TESTIMONIALS */
.student-says-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 24px;
  margin-top:24px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}

.author-role {
  color: var(--text-subtle);
  font-size: 12px;
}

/* ==========================================================================
   PORTFOLIO PROOF
   ========================================================================== */
.portfolio-proof {
  background: var(--bg-base);
  padding: 60px 0;
  overflow: hidden;
}

.behance-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.behance-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  text-align: center;
}

.behance-num {
  font-size: 24px;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.behance-label {
  color: var(--text-subtle);
  font-size: 12px;
}

.portfolio-marquee {
  margin: 0 -16px 32px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.portfolio-track {
  display: flex;
  gap: 12px;
  animation: marquee 50s linear infinite;
  width: fit-content;
}

.portfolio-item {
  flex-shrink: 0;
  width: 300px;
  height: 225px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.95));
  padding: 24px 16px 12px;
}

.portfolio-overlay p {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.portfolio-cta {
  text-align: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 12px;
}

/* ==========================================================================
   WHY ASPIRA
   ========================================================================== */
.why-aspira {
  background: var(--bg-section);
  padding: 60px 0;
}

.why-grid {
  display: grid;
  gap: 16px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 21px;
  transition: border-color 0.2s ease;
}

.why-card:hover {
  border-color: var(--accent);
}

.why-emoji {
  font-size: 28px;
  margin-bottom: 12px;
}

/* SVG icon for Why Aspira cards (replaces emoji) */
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(21, 93, 252, 0.12);
  border: 1px solid rgba(21, 93, 252, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

.why-desc {
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.5;
}

/* ==========================================================================
   MENTOR SECTION
   ========================================================================== */
.mentor-section {
  background: var(--bg-base);
  padding: 60px 0;
}

/* Pull quote from Rambal — anchors the section */
.mentor-quote {
  position: relative;
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.08), rgba(173, 70, 255, 0.05));
  border: 1px solid rgba(21, 93, 252, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
}

.mentor-quote .quote-mark {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--bg-base);
  padding: 0 8px;
  box-sizing: content-box;
}

.mentor-quote p {
  font-family: 'Google Sans', sans-serif;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 12px;
  font-style: italic;
}

.mentor-quote cite {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
}

.mentor-main {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

/* Image card combines photo + credentials chips */
.mentor-image-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mentor-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.mentor-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Credentials chips below photo */
.mentor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-subtle);
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.credential-chip strong {
  color: var(--text);
  font-weight: 600;
}

.mentor-info-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.mentor-info-sub {
  color: var(--text-subtle);
  font-size: 13px;
  margin-bottom: 20px;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workshop-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}

.workshop-item:hover {
  border-color: rgba(21, 93, 252, 0.4);
}

.workshop-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: rgba(21, 93, 252, 0.15);
  border: 1px solid rgba(21, 93, 252, 0.3);
  color: var(--accent);
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop-item h4 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}

.workshop-item .workshop-outcome {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.workshop-item p {
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.5;
}

.workshop-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.workshop-meta li {
  position: relative;
  padding-left: 16px;
  color: var(--text-subtle);
  font-size: 12px;
  line-height: 1.4;
}

.workshop-meta li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-weight: 700;
}

/* MENTOR SUPPORT */
.mentor-support {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
}

.mentor-support-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.mentor-support-sub {
  color: var(--text-subtle);
  font-size: 13px;
  margin-bottom: 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.support-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-body);
  font-size: 13px;
}

.support-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* MEET MENTORS */
.meet-mentors-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

.mentors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mentor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
}

.mentor-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 2px solid var(--border);
}

.mentor-card h4 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.mentor-role {
  color: var(--text-body);
  font-size: 12px;
  margin-bottom: 2px;
}

.mentor-company {
  color: var(--text-subtle);
  font-size: 11px;
}

/* ==========================================================================
   CURRICULUM + JOURNEY
   ========================================================================== */
.curriculum-journey {
  background: var(--bg-section);
  padding: 60px 0;
}

.curriculum-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 60px;
}

.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.curriculum-item span:last-child {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.5;
}

.curriculum-item .check-icon {
  margin-top: 2px;
}

/* ==========================================================================
   CURRICULUM ACCORDION (10 modules)
   ========================================================================== */
.curriculum-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto 60px;
}

.curriculum-accordion .curriculum-item {
  display: block;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.curriculum-accordion .curriculum-item[open] {
  border-color: rgba(21, 93, 252, 0.4);
}

/* Featured module (M4 - AI) gets accent treatment */
.curriculum-accordion .curriculum-item.module-featured {
  border-color: rgba(21, 93, 252, 0.5);
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.06), rgba(173, 70, 255, 0.03));
}

.curriculum-accordion .curriculum-item.module-featured[open] {
  border-color: var(--accent);
}

.curriculum-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.curriculum-accordion summary::-webkit-details-marker,
.curriculum-accordion summary::marker {
  display: none;
}

.curriculum-summary-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.module-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: rgba(21, 93, 252, 0.12);
  border: 1px solid rgba(21, 93, 252, 0.25);
  color: var(--accent);
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-num-featured {
  background: var(--gradient-headline);
  color: #fff;
  border-color: transparent;
}

.module-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.featured-pill {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(43, 127, 255, 0.15);
  border: 1px solid rgba(43, 127, 255, 0.4);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.curriculum-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.curriculum-accordion .curriculum-item[open] .curriculum-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.curriculum-content {
  padding: 0 18px 18px 68px;
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.6;
}

.curriculum-content p {
  margin-bottom: 10px;
}

.curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.curriculum-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.5;
}

.curriculum-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.curriculum-takeaway {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(21, 93, 252, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.5;
}

.curriculum-takeaway strong {
  color: var(--text);
  font-weight: 600;
}

/* "How You'll Study at Aspira" sub-section heading */
.how-you-study {
  margin-top: 48px;
}

.how-you-study-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.how-you-study-sub {
  color: var(--text-subtle);
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.journey-grid {
  padding: 20px 0;
  display: grid;
  gap: 16px;
}

.journey-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 21px;
  position: relative;
}

.phase-label {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(21, 93, 252, 0.15);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.phase-icon {
  width: 48px;
  height: 48px;
  background: rgba(21, 93, 252, 0.15);
  border: 1px solid rgba(21, 93, 252, 0.3);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.journey-card h3 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}

.phase-duration {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(21, 93, 252, 0.1);
  border: 1px solid rgba(21, 93, 252, 0.3);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.journey-card p {
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.5;
}

/* ==========================================================================
   TOOLS
   ========================================================================== */
.tools-section {
  background: var(--bg-base);
  padding: 60px 0;
  overflow: hidden;
}

.tools-marquee {
  margin: 0 -16px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tools-track {
  display: flex;
  gap: 12px;
  animation: marquee 60s linear infinite;
  width: fit-content;
}

.tool-card {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  position: relative;
}

/* AI tool variant — subtle accent border to signal AI workflow tools */
.tool-card.tool-ai {
  border-color: rgba(21, 93, 252, 0.4);
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.06), rgba(173, 70, 255, 0.04));
}

.tool-card.tool-ai::after {
  content: 'AI';
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: rgba(21, 93, 252, 0.15);
  border: 1px solid rgba(21, 93, 252, 0.3);
  padding: 1px 5px;
  border-radius: 4px;
  line-height: 1.2;
}

.tool-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tool-card span {
  color: var(--text-body);
  font-size: 11px;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

/* ==========================================================================
   ONE-LINE PROOF (replaces dropped text testimonials)
   ========================================================================== */
.proof-line {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.proof-line p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
  background: var(--bg-section);
  padding: 60px 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 480px;
  margin: 0 auto;
}

.pricing-top {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-starts {
  color: var(--text-body);
  font-size: 14px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Google Sans', sans-serif;
  margin-bottom: 8px;
}

.pricing-amount .gradient-num {
  font-size: 32px;
  letter-spacing: -1px;
}

.pricing-month {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 600;
}

.pricing-emi {
  color: var(--text-subtle);
  font-size: 12px;
}

.scholarship-pill {
  background: rgba(21, 93, 252, 0.1);
  border: 1px solid rgba(21, 93, 252, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  color: var(--text-body);
  font-size: 13px;
  margin-bottom: 24px;
}

.pricing-features h3 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-features .check-icon {
  margin-top: 2px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  background: var(--bg-section);
  padding: 60px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(21, 93, 252, 0.4);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  background: var(--bg-base);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}

.cta-blur-1 {
  width: 240px;
  height: 240px;
  background: var(--primary);
  opacity: 0.15;
  top: 0;
  left: -80px;
}

.cta-blur-2 {
  width: 280px;
  height: 280px;
  background: #ad46ff;
  opacity: 0.15;
  bottom: -80px;
  right: -80px;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons .btn {
  width: 100%;
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

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

/* ---------- 360px and up (default mobile baseline) ---------- */
@media (min-width: 360px) {
  .hero-title {
    font-size: 38px;
  }

  .section-heading {
    font-size: 30px;
  }
}

/* ---------- 480px and up ---------- */
@media (min-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 72px 0 80px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: auto;
  }

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

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

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

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

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

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

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

  .behance-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .behance-num {
    font-size: 28px;
  }

  /* Video carousel: slightly larger cards on small tablets */
  .video-card {
    width: 240px;
  }

  .header-phone {
    display: inline-flex;
  }

  .cta-buttons {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .cta-buttons .btn {
    width: auto;
  }
}

/* ---------- 768px and up (tablet) ---------- */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .hero {
    padding: 96px 0 100px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-heading {
    font-size: 36px;
  }

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

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

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

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

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

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

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

  .stats {
    padding: 48px 0;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Video carousel on tablet: show navigation buttons, hide dots, larger cards */
  .video-card {
    width: 260px;
  }

  .video-nav {
    display: flex;
  }

  .video-dots {
    display: none;
  }

  .video-track {
    /* Reset edge-bleed on tablet so cards align with the container */
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .form-card {
    padding: 12px;
  }

  .mentor-main {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: start;
  }

  .mentor-image-card {
    position: sticky;
    top: 80px;
  }

  .mentor-quote p {
    font-size: 19px;
  }

  .mentor-support {
    padding: 32px;
  }

  .pricing-card {
    padding: 32px;
    max-width: 600px;
  }

  .application-form-section,
  .student-success,
  .portfolio-proof,
  .why-aspira,
  .mentor-section,
  .curriculum-journey,
  .tools-section,
  .pricing-section,
  .faq-section {
    padding: 80px 0;
  }
}

/* ---------- 1024px and up (desktop) ---------- */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }

  .section-heading {
    font-size: 40px;
  }

  .behance-num {
    font-size: 36px;
  }

  .pricing-amount .gradient-num {
    font-size: 48px;
  }

  /* Video carousel on desktop: 5 cards visible at once */
  .video-track {
    /* Disable scroll snap on desktop since all 5 fit; user uses nav buttons */
    overflow-x: hidden;
    scroll-snap-type: none;
    padding: 4px 0 0;
    transition: transform 0.4s ease;
  }

  .video-card {
    width: calc((100% - 48px) / 5);
    min-width: 0;
  }

  .video-nav-prev {
    left: -22px;
  }

  .video-nav-next {
    right: -22px;
  }
}

/* ==========================================================================
   320px BREAKPOINT (ultra-small devices)
   ========================================================================== */
@media (max-width: 359px) {
  .container {
    padding: 0 12px;
  }

  body {
    font-size: 13px;
  }

  /* Header */
  .header-container {
    padding: 10px 12px;
    gap: 8px;
  }

  .logo img {
    height: 24px;
  }

  .btn-sm {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* Hero */
  .hero {
    padding: 40px 0 48px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-trust {
    font-size: 12px;
  }

  .hero-micro {
    font-size: 11px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  /* Section headings */
  .section-heading {
    font-size: 24px;
  }

  .section-paragraph {
    font-size: 13px;
  }

  /* Stats */
  .stats {
    padding: 32px 0;
  }

  .stats-grid {
    gap: 16px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  /* Sections */
  .application-form-section,
  .student-success,
  .portfolio-proof,
  .why-aspira,
  .mentor-section,
  .curriculum-journey,
  .tools-section,
  .pricing-section,
  .faq-section,
  .final-cta {
    padding: 44px 0;
  }

  /* Cards */
  .form-card,
  .pricing-card,
  .mentor-support {
    padding: 16px;
  }

  .story-card,
  .why-card,
  .journey-card,
  .testimonial-card {
    padding: 16px;
  }

  .story-avatar {
    width: 64px;
    height: 64px;
  }

  /* Behance stats */
  .behance-stat {
    padding: 14px 8px;
  }

  .behance-num {
    font-size: 20px;
  }

  .behance-label {
    font-size: 11px;
  }

  /* Video carousel: smaller cards on 320px */
  .video-card {
    width: 200px;
  }

  /* Portfolio cards */
  .portfolio-item {
    width: 200px;
    height: 150px;
  }

  /* Tools */
  .tool-card {
    width: 84px;
    height: 84px;
  }

  .tool-card img {
    width: 28px;
    height: 28px;
  }

  .tool-card span {
    font-size: 10px;
  }

  /* Partner pill */
  .partner-pill {
    padding: 10px 18px;
    font-size: 12px;
  }

  /* FAQ */
  .faq-item summary {
    padding: 14px 16px;
    font-size: 13px;
  }

  .faq-item p {
    padding: 0 16px 16px;
    font-size: 12px;
  }

  /* Mentor card */
  .mentor-card {
    padding: 12px 8px;
  }

  .mentor-card img {
    width: 48px;
    height: 48px;
  }

  /* Pricing */
  .pricing-amount .gradient-num {
    font-size: 26px;
  }

  .pricing-month {
    font-size: 16px;
  }

  /* WhatsApp float smaller */
  .whatsapp-float {
    width: 44px;
    height: 44px;
    bottom: 12px;
    right: 12px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}
