/* ============================================
   BUILDERS DAY CLUB — Design Tokens
   Theme: Purple (#5B21E6) + Yellow (#E8F048)
   Style: Dark mode, pixel/retro accents
   ============================================ */

:root {
  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-pixel: 'Press Start 2P', monospace;

  /* Type Scale */
  --text-xs:   clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  --text-sm:   clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6vw, 6rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Colors — Dark Mode (default) */
  --color-bg: #0A0A0B;
  --color-surface: #111113;
  --color-surface-2: #18181B;
  --color-surface-3: #1E1E22;
  --color-border: #2A2A30;
  --color-border-light: #3A3A42;
  --color-text: #F0F0F2;
  --color-text-muted: #8B8B95;
  --color-text-faint: #55555E;

  /* Brand Colors */
  --color-accent: #5B21E6;
  --color-accent-hover: #7C3AED;
  --color-accent-glow: rgba(91, 33, 230, 0.3);
  --color-yellow: #E8F048;
  --color-yellow-muted: rgba(232, 240, 72, 0.15);
  --color-yellow-hover: #f0f560;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease-out);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(91, 33, 230, 0.15);

  /* Layout */
  --sidebar-width: 200px;
  --content-max: 1200px;
}

/* ============================================
   PIXEL TEXT UTILITY
   ============================================ */
.pixel-text {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--color-yellow);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100dvh;
  background: var(--color-bg);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-8) var(--space-5);
  z-index: 100;
}

.sidebar-logo {
  margin-bottom: var(--space-10);
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
  background: var(--color-surface-2);
}

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

.nav-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.nav-link:hover svg,
.nav-link.active svg {
  opacity: 1;
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

.member-login {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  transition: color var(--transition);
}
.member-login:hover {
  color: var(--color-text);
}

/* ============================================
   MOBILE HEADER
   ============================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: 0 var(--space-5);
  align-items: center;
  justify-content: space-between;
  z-index: 200;
}

.mobile-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.mobile-menu-btn {
  color: var(--color-text);
  padding: var(--space-2);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.98);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: var(--color-text);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.cta-mobile {
  color: var(--color-yellow) !important;
  font-family: var(--font-pixel) !important;
  font-size: var(--text-sm) !important;
  margin-top: var(--space-4);
}

/* ============================================
   STICKY BAR
   ============================================ */
.sticky-bar {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  height: 60px;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.3s var(--ease-out);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-8);
}

.sticky-logo-text {
  font-family: var(--font-pixel);
  font-size: var(--text-sm);
  color: var(--color-yellow);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--color-yellow);
  color: #0A0A0B;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-yellow);
  transition: all var(--transition);
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--color-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 240, 72, 0.25);
}

.cta-btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  margin-left: var(--sidebar-width);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-16) var(--space-8);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91, 33, 230, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(232, 240, 72, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, rgba(10, 10, 11, 0.85) 40%, var(--color-bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-tag {
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--color-yellow);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-cta {
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: -8px;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-faint);
  animation: bounce 2s ease-in-out infinite;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   LOGOS MARQUEE
   ============================================ */
.logos-section {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.logos-marquee {
  overflow: hidden;
  position: relative;
}

.logos-marquee::before,
.logos-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.logos-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

.logos-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg), transparent);
}

.logos-track {
  display: flex;
  gap: var(--space-10);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.logo-item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-faint);
  white-space: nowrap;
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

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

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section-tag {
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.section-title em {
  font-style: italic;
  color: var(--color-yellow);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--space-12);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-yellow-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-yellow);
}

.feature-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   INSIDE GRID
   ============================================ */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.inside-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.inside-card-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.inside-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.inside-card:hover img {
  transform: scale(1.05);
}

.inside-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  background: linear-gradient(transparent, rgba(10, 10, 11, 0.9));
}

.inside-card-tag {
  display: inline-block;
  margin-bottom: var(--space-2);
}

.inside-card-overlay p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.process-step {
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: all var(--transition);
}

.process-step:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 30px rgba(91, 33, 230, 0.1);
}

.step-number {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  color: var(--color-accent);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.process-cta-wrap {
  text-align: center;
  margin-top: var(--space-12);
}

.process-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-6);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--color-border-light);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.faq-list {
  max-width: 760px;
  margin-top: var(--space-10);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-yellow);
}

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

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ============================================
   APPLY CTA SECTION
   ============================================ */
.apply-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(var(--space-20), 10vw, var(--space-32)) 0;
}

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

.apply-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 33, 230, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.apply-tag {
  margin-bottom: var(--space-4);
}

.apply-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.apply-title em {
  font-style: italic;
  color: var(--color-yellow);
}

.apply-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 550px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.apply-cta-btn {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-10);
}

.apply-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-12);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.stat-number {
  font-family: var(--font-pixel);
  font-size: var(--text-xl);
  color: var(--color-yellow);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
  background: var(--color-bg);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 250px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col-title {
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.pplx-link {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  transition: color var(--transition);
}

.pplx-link:hover {
  color: var(--color-text-muted);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid,
  .process-steps,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .inside-card-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .sticky-bar {
    left: 0;
  }

  .main-content {
    margin-left: 0;
    padding-top: 64px;
  }

  .hero {
    min-height: calc(100dvh - 64px);
    padding: var(--space-10) var(--space-5);
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-social-proof {
    flex-direction: column;
    gap: var(--space-3);
  }

  .section-inner {
    padding: 0 var(--space-5);
  }

  .features-grid,
  .process-steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .inside-card-large {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16/9;
  }

  .inside-card {
    aspect-ratio: 16/9;
  }

  .apply-stats {
    flex-direction: column;
    gap: var(--space-6);
  }

  .footer-top {
    flex-direction: column;
    gap: var(--space-8);
  }

  .footer-links {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .sticky-bar-inner {
    padding: 0 var(--space-5);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-2xl);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .apply-title {
    font-size: var(--text-2xl);
  }

  .feature-card,
  .process-step,
  .testimonial-card {
    padding: var(--space-6);
  }
}