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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: linear-gradient(180deg, #FAFBFF 0%, #F8F9FE 50%, #FFF9F5 100%);
  color: #3D3654;
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
}

img, video {
  max-width: 100%;
  height: auto;
}

::selection {
  background: #EDE9FE;
  color: #1C1832;
}

button, a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  button, a {
    min-height: 44px;
    min-width: 44px;
  }
}

div::-webkit-scrollbar {
  display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1.5deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.gradient-animate {
  background: linear-gradient(90deg, #7c3aed 0%, #ec4899 33%, #f97316 66%, #a855f7 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: gradientShift 6s ease-in-out infinite;
  position: relative;
  padding-bottom: 4px;
}

.gradient-animate::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed 0%, #ec4899 33%, #f97316 66%, #a855f7 100%);
  background-size: 200% auto;
  animation: gradientShift 6s ease-in-out infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.28s; }

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== UTILITIES ===== */
.dt {
  display: none;
}

.mb {
  display: block;
}

@media (min-width: 640px) {
  .dt {
    display: block;
  }
  .mb {
    display: none !important;
  }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 24px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  transition: all 0.35s ease;
}

.nav.scrolled .nav-bg {
  background: rgba(251, 251, 254, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E2DFF0;
  border-radius: 0 0 14px 14px;
}

.nav-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  color: #8C86A0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #7C3AED;
}

.btn-primary {
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #7E22CE 100%);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
  transform: translateY(-1px);
}

.btn-primary-large {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-large:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #2563EB 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4), 0 0 50px rgba(59, 130, 246, 0.15);
}

.menu-btn {
  background: none;
  border: none;
  color: #3D3654;
  font-size: 20px;
  cursor: pointer;
  padding: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(251, 251, 254, 0.98);
  backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #3D3654;
  cursor: pointer;
}

.mobile-menu-link {
  font-size: 20px;
  color: #1C1832;
  text-decoration: none;
  font-weight: 600;
}

/* ===== DECORATIVE ELEMENTS ===== */
.grid-overlay {
  position: absolute;
  top: -40px;
  left: -100px;
  right: -100px;
  bottom: 20%;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' fill='none' stroke='%23CBC6DA' stroke-width='0.6' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 35%, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 35%, black 25%, transparent 70%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.blob-1 {
  top: -5%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 70%);
}

.blob-2 {
  bottom: 5%;
  right: -15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.06) 0%, rgba(244, 114, 182, 0.03) 50%, transparent 70%);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(124, 58, 237, 0.14);
  pointer-events: none;
  animation: floatSlow 7s ease-in-out infinite;
}

.ring-1 {
  width: 220px;
  height: 220px;
  top: -30px;
  right: -80px;
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.1);
}

.ring-2 {
  width: 140px;
  height: 140px;
  top: 80px;
  left: -50px;
  animation-delay: 2s;
  border-color: rgba(59, 130, 246, 0.16);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.08);
}

.ring-3 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 0;
  animation-delay: 4s;
  border-color: rgba(236, 72, 153, 0.14);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.06);
}

.cross {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.cross::before,
.cross::after {
  content: '';
  position: absolute;
  background: rgba(124, 58, 237, 0.18);
}

.cross::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.cross::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.cross-1 {
  top: 12%;
  left: 8%;
}

.cross-2 {
  top: 25%;
  right: 6%;
  width: 12px;
  height: 12px;
  transform: rotate(15deg);
}

.cross-3 {
  bottom: 35%;
  left: 5%;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.cross-4 {
  bottom: 18%;
  right: 12%;
  width: 16px;
  height: 16px;
  transform: rotate(10deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 110dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-title {
  position: relative;
  font-size: clamp(40px, 10vw, 72px);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  color: #1C1832;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}

.text-violet {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 8s linear infinite;
  position: relative;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}

/* Seconds Highlight Animation */
.seconds-highlight {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 8s linear infinite;
}

/* Scanning light effect */
.seconds-highlight::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 40%;
  height: 120%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(251, 191, 36, 0.5) 50%, 
    transparent 100%);
  animation: scan 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

/* Pulsing glow behind text */
.seconds-highlight::after {
  content: '';
  position: absolute;
  inset: -15px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.25) 0%, rgba(251, 191, 36, 0.15) 50%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: glowPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Floating sparkles */
.seconds-highlight {
  overflow: visible;
}

/* Add sparkle particles dynamically positioned */
@keyframes sparkleFloat1 {
  0% {
    opacity: 0;
    transform: translate(-10px, 0) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -30px) scale(1);
  }
}

@keyframes sparkleFloat2 {
  0% {
    opacity: 0;
    transform: translate(10px, 0) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(10px, -30px) scale(1);
  }
}

@keyframes sparkleFloat3 {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, -35px) scale(1);
  }
}

.text-violet {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 8s linear infinite;
  position: relative;
}

.hero-subtitle {
  position: relative;
  font-size: clamp(18px, 4vw, 22px);
  color: #8C86A0;
  text-align: center;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-cta {
  position: relative;
  margin-bottom: 56px;
}

/* Hero Review */
.hero-review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.review-content {
  text-align: center;
}

.review-title {
  font-size: 11px;
  font-weight: 700;
  color: #3D3654;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.review-stars {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2px;
}

.review-laurel {
  height: 60px;
  width: auto;
  opacity: 0.85;
  filter: contrast(1.1);
}

/* Demo Section */
.demo-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
}

.demo-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 900;
  text-align: center;
  color: #1C1832;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 40px;
  display: block;
  position: relative;
  z-index: 10;
  animation: titlePulse 4s ease-in-out infinite;
  text-shadow: 0 2px 30px rgba(124, 58, 237, 0.4),
               0 4px 20px rgba(59, 130, 246, 0.2);
}

.demo-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #7C3AED, #3B82F6, transparent);
  border-radius: 2px;
  animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% {
    opacity: 0.5;
    width: 200px;
  }
  50% {
    opacity: 1;
    width: 280px;
  }
}

@keyframes titlePulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 2px 30px rgba(124, 58, 237, 0.4),
                 0 4px 20px rgba(59, 130, 246, 0.2);
  }
  50% {
    transform: scale(1.02);
    text-shadow: 0 4px 40px rgba(124, 58, 237, 0.6),
                 0 6px 30px rgba(59, 130, 246, 0.3),
                 0 0 50px rgba(236, 72, 153, 0.2);
  }
}

.demo-title::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.8;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-demo {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.demo-description {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 3.5vw, 18px);
  color: #8C86A0;
  text-align: center;
  max-width: 800px;
  margin: 32px auto 0;
  line-height: 1.6;
  position: relative;
}

/* Brackets */
.bracket {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.bracket.tl {
  top: 0;
  left: 0;
  border-top: 2px solid rgba(124, 58, 237, 0.2);
  border-left: 2px solid rgba(124, 58, 237, 0.2);
}

.bracket.tr {
  top: 0;
  right: 0;
  border-top: 2px solid rgba(124, 58, 237, 0.2);
  border-right: 2px solid rgba(124, 58, 237, 0.2);
}

.bracket.bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid rgba(124, 58, 237, 0.2);
  border-left: 2px solid rgba(124, 58, 237, 0.2);
}

.bracket.br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid rgba(124, 58, 237, 0.2);
  border-right: 2px solid rgba(124, 58, 237, 0.2);
}

.corner-cross {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  pointer-events: none;
}

.corner-cross::before,
.corner-cross::after {
  content: '';
  position: absolute;
  background: rgba(124, 58, 237, 0.25);
}

.corner-cross::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.corner-cross::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.c1 { top: -6px; left: -6px; }
.c2 { top: -6px; right: -6px; }
.c3 { bottom: -6px; left: -6px; }
.c4 { bottom: -6px; right: -6px; }

.demo-card {
  width: 100%;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFBFF 100%);
  border-radius: 16px;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.12), 
              0 0 0 1px rgba(124, 58, 237, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  position: relative;
}

.demo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(59, 130, 246, 0.2), rgba(236, 72, 153, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #F5F4F9;
  border-bottom: 1px solid #E2DFF0;
}

.demo-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.demo-url-bar {
  margin-left: 10px;
  flex: 1;
  height: 30px;
  border-radius: 7px;
  background: #FFFFFF;
  border: 1px solid #E2DFF0;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.demo-url-bar span {
  font-size: 13px;
  color: #8C86A0;
  font-family: monospace;
}

.demo-content {
  padding: 16px 16px 20px;
}

.demo-video-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(28, 24, 50, 0.15),
              0 0 0 1px rgba(124, 58, 237, 0.1);
  transition: all 0.3s;
}

.demo-video-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(28, 24, 50, 0.2),
              0 0 0 1px rgba(124, 58, 237, 0.15);
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    padding: 90px 20px 50px;
    min-height: 100dvh;
  }
  
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 17px;
    padding: 0 10px;
    max-width: 90%;
    margin-bottom: 36px;
  }
  
  .hero-cta {
    margin-bottom: 40px;
  }
  
  .demo-title {
    font-size: clamp(24px, 7vw, 34px);
    margin-bottom: 28px;
  }
  
  .demo-title::after {
    width: 150px;
  }
  
  .hero-demo {
    max-width: 100%;
    padding: 16px;
  }
  
  .demo-description {
    font-size: 15px;
    max-width: 90%;
    margin-top: 24px;
    padding: 0 16px;
  }
  
  .hero-review {
    margin-bottom: 16px;
  }
  
  .logos-inline {
    padding: 4px 0 48px;
  }
  
  .review-title {
    font-size: 10px;
  }
  
  .review-stars {
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .review-laurel {
    height: 45px;
  }
  
  /* Video */
  .demo-video-container {
    border-radius: 12px;
  }
  
  /* Brackets - smaller on mobile */
  .bracket {
    width: 20px;
    height: 20px;
  }
  
  .corner-cross {
    width: 8px;
    height: 8px;
  }
  
  /* Navigation */
  .nav {
    padding: 10px 16px;
  }
  
  .nav-logo {
    height: 34px;
  }
  
  /* Buttons */
  .btn-primary-large {
    padding: 15px 32px;
    font-size: 16px;
  }
  
  /* Logo Carousel */
  .logo-badge {
    height: 18px;
    margin-right: 32px;
  }
  
  .logos-label {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  /* Features */
  .features {
    padding: 40px 20px;
  }
  
  .feature-item {
    margin-bottom: 32px;
  }
  
  .feature-title {
    font-size: clamp(20px, 5vw, 26px);
  }
  
  .feature-text {
    font-size: 14px;
  }
  
  /* Career Paths */
  .career-paths {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  /* Template Tabs */
  .template-tab {
    font-size: 11px;
    padding: 10px 0;
  }
  
  /* Blog */
  .blog {
    padding: 40px 0;
  }
  
  .blog-post {
    width: 240px;
  }
  
  /* Pricing */
  .pricing-banner {
    padding: 32px 16px;
  }
  
  .pricing-banner-content {
    padding: 24px 20px;
  }
  
  .pricing-banner-text {
    font-size: 20px;
  }
  
  .pricing {
    padding: 40px 16px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pricing-card.pro {
    transform: scale(1);
  }
  
  .pricing-card.pro:hover {
    transform: scale(1) translateY(-4px);
  }
  
  /* CTA */
  .cta {
    padding: 40px 20px 56px;
  }
  
  .cta-card {
    padding: 36px 20px;
  }
  
  /* Footer */
  .footer {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Section titles */
  .section-title {
    font-size: clamp(22px, 5.5vw, 32px);
  }
  
  /* Diamond divider */
  .diamond {
    padding: 0 20px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn-primary-large {
    padding: 13px 26px;
    font-size: 15px;
  }
  
  .review-stars {
    font-size: 14px;
  }
  
  .review-laurel {
    height: 40px;
  }
  
  .logo-badge {
    height: 15px;
    margin-right: 28px;
  }
  
  .demo-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .demo-title::after {
    width: 120px;
  }
  
  .demo-description {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .blog-post {
    width: 220px;
  }
  
  .pricing-card {
    padding: 32px 20px;
  }
  
  .pricing-price, .pricing-price-free {
    font-size: 40px;
  }
  
  .pricing-badges {
    top: -6px;
    right: -6px;
  }
  
  .pricing-badge {
    font-size: 9px;
    padding: 5px 12px;
  }
}

.demo-input {
  background: linear-gradient(135deg, #EDE9FE 0%, #DBEAFE 100%);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.demo-input-label {
  font-size: 10px;
  color: #8C86A0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.demo-input-text {
  font-size: 12px;
  color: #3D3654;
  font-family: monospace;
  line-height: 1.5;
  min-height: 32px;
}

.demo-input-text .placeholder {
  color: #8C86A0;
}

.demo-input-text .cursor {
  display: inline-block;
  width: 2px;
  height: 11px;
  background: #7C3AED;
  margin-left: 1px;
  animation: blink 1s infinite;
}

.demo-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.demo-btn {
  background: linear-gradient(135deg, #EDE9FE 0%, #DBEAFE 100%);
  border-radius: 8px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  cursor: pointer;
  transition: all 0.35s;
  font-family: 'DM Sans', sans-serif;
}

.demo-btn.active {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3),
              0 0 20px rgba(59, 130, 246, 0.15);
  border-color: transparent;
}

.demo-btn span {
  font-size: 12px;
  font-weight: 700;
  color: #7C3AED;
  transition: color 0.35s;
}

.demo-btn.active span {
  color: #fff;
}

.demo-btn.done #demoBtnIcon::before {
  content: '✓';
}

.demo-comparison {
  display: flex;
  gap: 8px;
}

.demo-col {
  flex: 1;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #E2DFF0;
  background: #FFFFFF;
  transition: all 0.4s;
}

.demo-col.before {
  opacity: 1;
}

.demo-col.before.faded {
  opacity: 0.5;
  background: #FEF2F2;
}

.demo-col.after {
  background: #FFFFFF;
}

.demo-col.after.active {
  background: #ECFDF5;
  border-color: rgba(5, 150, 105, 0.25);
}

.demo-col-label {
  font-size: 10px;
  font-weight: 700;
  color: #8C86A0;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
  transition: color 0.4s;
}

.demo-col.before.faded .demo-col-label {
  color: #DC2626;
}

.demo-col.after.active .demo-col-label {
  color: #059669;
}

.demo-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #1C1832;
  margin-bottom: 6px;
}

.demo-col-text {
  font-size: 10.5px;
  color: #8C86A0;
  line-height: 1.5;
  transition: color 0.4s;
}

.demo-col.after.active .demo-col-text {
  color: #3D3654;
}

.demo-tags {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.4s;
}

.demo-tags.visible {
  opacity: 1;
  animation: fadeIn 0.4s;
}

.demo-tag {
  font-size: 8px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 2px 6px;
  border-radius: 3px;
}

/* ===== LOGO CAROUSEL ===== */
.logos {
  padding: 20px 0 36px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, 
    rgba(124, 58, 237, 0.02) 0%, 
    rgba(59, 130, 246, 0.03) 50%, 
    rgba(236, 72, 153, 0.02) 100%);
}

.logos-inline {
  padding: 8px 0 64px;
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.logos-track-wrapper {
  overflow: hidden;
  position: relative;
}

.logos-fade-left,
.logos-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.logos-fade-left {
  left: 0;
  background: linear-gradient(90deg, #FBFBFE, transparent);
}

.logos-fade-right {
  right: 0;
  background: linear-gradient(270deg, #FBFBFE, transparent);
}

.logos-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #8C86A0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.logos-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.logo-badge {
  height: 22px;
  width: auto;
  object-fit: contain;
  margin-right: 48px;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s;
}

.logo-badge:hover {
  filter: grayscale(0%) opacity(0.9);
  transform: scale(1.05);
}

/* Individual logo adjustments */
.logo-badge[alt="Pokemon"] {
  transform: translateY(-6px);
}

.logo-badge[alt="Pokemon"]:hover {
  transform: translateY(-6px) scale(1.05);
}

.logo-badge[alt="NetEase"] {
  height: 36px;
  transform: translateY(4px);
}

.logo-badge[alt="NetEase"]:hover {
  height: 36px;
  transform: translateY(4px) scale(1.05);
}

.logo-badge[alt="Amazon"] {
  transform: translateY(4px);
}

.logo-badge[alt="Amazon"]:hover {
  transform: translateY(4px) scale(1.05);
}

.logo-badge[alt="Microsoft"] {
  transform: translateY(-4px);
}

.logo-badge[alt="Microsoft"]:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ===== DIAMOND DIVIDER ===== */
.diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  max-width: 600px;
  margin: 0 auto;
}

.diamond-line {
  flex: 1;
  height: 1px;
}

.diamond-line.left {
  background: linear-gradient(90deg, transparent, #E2DFF0);
}

.diamond-line.right {
  background: linear-gradient(270deg, transparent, #E2DFF0);
}

.diamond-shape {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #EDE9FE 0%, #DBEAFE 100%);
  border: 1.5px solid #E2DFF0;
  margin: 0 14px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.1);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 56px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.grid-overlay-features {
  position: absolute;
  inset: 0;
  left: -10%;
  right: -10%;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' fill='none' stroke='%23CBC6DA' stroke-width='0.6' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ring-features {
  width: 160px;
  height: 160px;
  top: -30px;
  left: -70px;
  animation-delay: 1s;
}

.cross-features {
  top: 1%;
  right: 3%;
}

.blob-features {
  top: -5%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.04) 0%, transparent 70%);
}

.features-header {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 800;
  color: #1C1832;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: clamp(15px, 3.5vw, 18px);
  color: #8C86A0;
  margin-top: 8px;
}

/* Industry Showcase - Simplified */
.industry-showcase {
  max-width: 100%;
  width: 100%;
  margin: 40px auto 64px;
  padding: 0 6%;
  overflow-x: hidden;
}

.industry-visual-container {
  background: white;
  border-radius: 20px;
  padding: 48px 64px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-grid-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  width: 100%;
}

.role-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fafbfc;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.role-card:hover {
  background: white;
  border-color: #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.role-card.active {
  background: white;
  border-color: #7C3AED;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.12);
}

.role-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.role-icon svg {
  width: 26px;
  height: 26px;
}

.role-info {
  flex: 1;
}

.role-title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 3px;
  line-height: 1.3;
}

.role-industry {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.role-arrow {
  font-size: 18px;
  color: #d1d5db;
  opacity: 0;
  transition: all 0.25s ease;
}

.role-card:hover .role-arrow,
.role-card.active .role-arrow {
  opacity: 1;
  color: #7C3AED;
}

  .industry-visual-container {
  }

.industry-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #faf5ff 0%, #f3f4ff 100%);
  border-radius: 12px;
  border: 1px solid #e9d5ff;
}

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-text strong {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.benefit-text span {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .industry-showcase {
    margin: 32px auto 48px;
    padding: 0 16px;
  }
  
  .industry-visual-container {
    padding: 24px 20px;
  }
  
  .industry-grid-simple {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .role-card {
    padding: 12px;
    gap: 10px;
  }
  
  .role-icon {
    width: 40px;
    height: 40px;
  }
  
  .role-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .role-title {
    font-size: 13px;
  }
  
  .role-industry {
    font-size: 11px;
  }
  
  .industry-benefit {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 10px;
  }
  
  .benefit-icon {
    font-size: 24px;
  }
  
  .benefit-text strong {
    font-size: 13px;
  }
  
  .benefit-text span {
    font-size: 11px;
  }
}

.feature-item {
  margin-bottom: 48px;
  position: relative;
}

.feature-header {
  margin-bottom: 20px;
}

.feature-number {
  font-size: 11px;
  font-weight: 700;
  color: #7C3AED;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-item:nth-child(2) .feature-number {
  background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-item:nth-child(3) .feature-number {
  background: linear-gradient(135deg, #F59E0B 0%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-title {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  color: #1C1832;
  letter-spacing: -0.03em;
  margin-top: 4px;
  line-height: 1.2;
}

.feature-text {
  font-size: 15px;
  color: #8C86A0;
  line-height: 1.55;
  margin-top: 8px;
  max-width: 440px;
}

.feature-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FEFEFF 100%);
  border-radius: 16px;
  border: 1px solid rgba(226, 223, 240, 0.6);
  box-shadow: 0 4px 20px rgba(28, 24, 50, 0.08), 
              0 1px 3px rgba(124, 58, 237, 0.05);
  overflow: hidden;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(28, 24, 50, 0.12), 
              0 2px 8px rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

.feature-card-content {
  padding: 20px 20px 8px;
}

.feature-input {
  background: linear-gradient(135deg, #EDE9FE 0%, #DBEAFE 100%);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #3D3654;
  font-family: monospace;
  line-height: 1.5;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.feature-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-toggle-btn {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.25),
              0 0 20px rgba(59, 130, 246, 0.1);
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}

.feature-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35),
              0 0 30px rgba(59, 130, 246, 0.15);
  background: linear-gradient(135deg, #6D28D9 0%, #2563EB 100%);
}

.feature-toggle-btn span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.feature-comparison {
  display: flex;
  border-top: 1px solid #E2DFF0;
}

.feature-col {
  flex: 1;
  padding: 16px;
  transition: all 0.4s;
}

.before-col {
  border-right: 1px solid #E2DFF0;
  opacity: 1;
}

.before-col.faded {
  opacity: 0.4;
}

.after-col {
  background: #FFFFFF;
}

.after-col.active {
  background: rgba(5, 150, 105, 0.03);
}

.feature-col-label {
  font-size: 9px;
  font-weight: 700;
  color: #8C86A0;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  transition: color 0.4s;
}

.before-label.red {
  color: #DC2626;
}

.after-label.green {
  color: #059669;
}

.feature-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #1C1832;
  margin-bottom: 6px;
}

.feature-col-text {
  font-size: 10.5px;
  color: #8C86A0;
  line-height: 1.5;
}

.after-text.active {
  color: #3D3654;
}

.feature-tags {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-tags.visible {
  opacity: 1;
  animation: fadeIn 0.4s;
}

.feature-tag {
  font-size: 8px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Career Paths */
.career-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 20px 18px;
}

.career-btn {
  background: #F5F4F9;
  border: 1.5px solid #E2DFF0;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}

.career-btn:hover {
  border-color: #A78BFA;
}

.career-btn.active {
  background: #7C3AED;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.15);
}

.career-industry {
  font-size: 14px;
  font-weight: 700;
  color: #1C1832;
  margin-bottom: 2px;
  transition: color 0.25s;
}

.career-btn.active .career-industry {
  color: #fff;
}

.career-details {
  font-size: 11px;
  color: #8C86A0;
  transition: color 0.25s;
}

.career-btn.active .career-details {
  color: rgba(255, 255, 255, 0.75);
}

.career-result {
  margin: 0 18px 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #ECFDF5 0%, #DBEAFE 100%);
  border-radius: 10px;
  display: none;
  animation: fadeIn 0.3s;
  border: 1px solid rgba(5, 150, 105, 0.15);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.1);
}

.career-result.visible {
  display: block;
}

.career-result-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.career-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
}

.career-result-label {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
}

.career-result-text {
  font-size: 12px;
  color: #3D3654;
  line-height: 1.5;
}

/* Template Tabs */
.template-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #E2DFF0;
}

.template-tab {
  flex: 1;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  background: #F5F4F9;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  font-weight: 600;
  color: #8C86A0;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.template-tab:hover {
  color: #3D3654;
}

.template-tab.active {
  background: #FFFFFF;
  color: #1C1832;
}

.template-preview {
  padding: 20px;
  transition: all 0.3s;
}

.resume-preview {
  background: #FAFAFA;
  border-radius: 10px;
  padding: 20px 18px;
  border: 1px solid #E2DFF0;
  transition: all 0.3s;
}

.resume-accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: #7C3AED;
  margin-bottom: 12px;
  transition: background 0.3s;
}

.resume-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
  transition: font-family 0.3s;
}

.resume-title {
  font-size: 10px;
  color: #8C86A0;
  margin-bottom: 12px;
  transition: font-family 0.3s;
}

.resume-divider {
  height: 1px;
  background: #E2DFF0;
  margin-bottom: 12px;
}

.resume-section-title {
  font-size: 9px;
  font-weight: 700;
  color: #7C3AED;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.skills-title {
  margin-top: 12px;
}

.resume-entry {
  margin-bottom: 8px;
}

.resume-bar {
  height: 2.5px;
  border-radius: 1px;
  background: #ddd;
  margin-bottom: 3px;
}

.resume-bar-thin {
  height: 2px;
  border-radius: 1px;
  background: #eee;
}

.resume-skills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.resume-skill {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(124, 58, 237, 0.12);
  color: #7C3AED;
  font-weight: 600;
  transition: all 0.3s;
}

/* ===== BLOG SECTION ===== */
.blog {
  padding: 56px 0;
  position: relative;
}

.cross-blog {
  top: 8%;
  right: 8%;
  transform: rotate(20deg);
}

.blog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 24px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.blog-view-all {
  font-size: 14px;
  font-weight: 600;
  color: #7C3AED;
  text-decoration: none;
  white-space: nowrap;
}

.blog-view-all:hover {
  text-decoration: underline;
}

.blog-posts {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 24px 16px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  justify-content: center;
}

.blog-posts::-webkit-scrollbar {
  display: none;
}

.blog-post {
  text-decoration: none;
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: start;
  background: linear-gradient(135deg, #FFFFFF 0%, #FEFEFF 100%);
  border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid #E2DFF0;
  box-shadow: 0 2px 8px rgba(28, 24, 50, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color, #7C3AED), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.blog-post:hover::before {
  opacity: 1;
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 24, 50, 0.12),
              0 0 0 1px rgba(124, 58, 237, 0.05);
}

.blog-accent {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
  opacity: 0.7;
}

.blog-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-post-title {
  font-size: 15px;
  font-weight: 700;
  color: #1C1832;
  margin: 0 0 8px;
  line-height: 1.3;
  flex: 1;
}

.blog-excerpt {
  font-size: 12.5px;
  color: #8C86A0;
  line-height: 1.5;
  margin: 0 0 12px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #8C86A0;
  margin-top: auto;
}

/* ===== PRICING BANNER ===== */
.pricing-banner {
  padding: 48px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-banner-content {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  border: 1px solid #FDE68A;
  position: relative;
  overflow: hidden;
}

.pricing-banner-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-banner-text {
  font-family: 'Kalam', cursive;
  font-size: 26px;
  line-height: 1.5;
  color: #3D3654;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 48px 24px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.cross-pricing-1 {
  top: 20%;
  left: 3%;
  transform: rotate(15deg);
  width: 12px;
  height: 12px;
}

.cross-pricing-2 {
  bottom: 15%;
  right: 5%;
  width: 14px;
  height: 14px;
  transform: rotate(30deg);
}

.cross-pricing-2::before,
.cross-pricing-2::after {
  background: rgba(124, 58, 237, 0.15);
}

.pricing-header {
  margin-bottom: 24px;
  margin-top: 48px;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #F3F2F7;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 24, 50, 0.1);
  border-color: #E2DFF0;
}

.pricing-card.pro {
  background: linear-gradient(135deg, #FDFBFF 0%, #F5F3FF 100%);
  border: 2px solid #7C3AED;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.12);
  position: relative;
  transform: scale(1.05);
}

.pricing-card.pro:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.pricing-badges {
  position: absolute;
  top: 4px;
  right: -35px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.pricing-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-badge.popular {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  color: #fff;
  transform: rotate(8deg);
}

.pricing-badge.productivity {
  background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  color: #000;
  transform: rotate(12deg);
}

.pricing-plan {
  font-size: 18px;
  font-weight: 700;
  color: #3D3654;
  margin-bottom: 12px;
  text-align: center;
}

.pro-text {
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: #1C1832;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-price-free {
  font-size: 28px;
  font-weight: 800;
  color: #1C1832;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-period {
  font-size: 14px;
  color: #8C86A0;
  font-weight: 500;
}

.pricing-features {
  margin-bottom: 28px;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-feature {
  font-size: 15px;
  color: #3D3654;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}

.pricing-feature::before {
  content: '✓';
  color: white;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #7C3AED;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pro-feature {
  color: #1C1832;
  font-weight: 500;
}

.pricing-btn {
  width: 100%;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.pricing-btn.free {
  background: #F3F2F7;
  color: #3D3654;
  border: 2px solid #E2DFF0;
}

.pricing-btn.free:hover {
  background: #E2DFF0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-btn.pro-btn {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.pricing-btn.pro-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 56px 24px 72px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-card {
  background: linear-gradient(135deg, #EDE9FE 0%, #DBEAFE 50%, #FCE7F3 100%);
  border-radius: 20px;
  padding: 48px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' fill='none' stroke='%23CBC6DA' stroke-width='0.6' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.cta-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.cta-corner.tl {
  top: 18px;
  left: 18px;
  border-top: 2px solid rgba(124, 58, 237, 0.2);
  border-left: 2px solid rgba(124, 58, 237, 0.2);
}

.cta-corner.tr {
  top: 18px;
  right: 18px;
  border-top: 2px solid rgba(124, 58, 237, 0.2);
  border-right: 2px solid rgba(124, 58, 237, 0.2);
}

.cta-corner.bl {
  bottom: 18px;
  left: 18px;
  border-bottom: 2px solid rgba(124, 58, 237, 0.2);
  border-left: 2px solid rgba(124, 58, 237, 0.2);
}

.cta-corner.br {
  bottom: 18px;
  right: 18px;
  border-bottom: 2px solid rgba(124, 58, 237, 0.2);
  border-right: 2px solid rgba(124, 58, 237, 0.2);
}

.ring-cta-1 {
  width: 120px;
  height: 120px;
  top: -25px;
  right: -25px;
  border-color: rgba(124, 58, 237, 0.12);
}

.ring-cta-2 {
  width: 70px;
  height: 70px;
  bottom: -15px;
  left: -15px;
  border-color: rgba(124, 58, 237, 0.1);
  animation-delay: 2s;
}

.cta-title {
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 800;
  color: #1C1832;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
}

.cta-text {
  font-size: 16px;
  color: #8C86A0;
  margin-bottom: 28px;
  line-height: 1.5;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 24px;
  border-top: 1px solid #E2DFF0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 14px;
  color: #3D3654;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #7C3AED;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  color: #3D3654;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: #7C3AED;
}

.footer-copy {
  font-size: 12px;
  color: #8C86A0;
}
.demo-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 900;
  text-align: center;
  color: #1C1832;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 40px;
  display: block;
  position: relative;
  z-index: 10;
}

.gradient-text {
  background: linear-gradient(90deg, #7C3AED 0%, #A855F7 25%, #EC4899 50%, #A855F7 75%, #7C3AED 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s linear infinite;
  display: inline-block;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@media (max-width: 980px) and (min-width: 769px) {
  .industry-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industry-visual-container {
    padding: 32px;
  }
}



/* Large screens - expand container */
@media (min-width: 1400px) {
  .industry-visual-container {
    max-width: 1400px;
    padding: 56px 80px;
  }
  
  .industry-grid-simple {
    gap: 28px;
  }
  
  .role-card {
    padding: 18px 24px;
    gap: 16px;
  }
  
  .role-icon {
    width: 56px;
    height: 56px;
  }
  
  .role-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .role-title {
    font-size: 16px;
  }
  
  .role-industry {
    font-size: 14px;
  }
}

@media (min-width: 1800px) {
  .industry-visual-container {
    max-width: 1600px;
    padding: 64px 100px;
  }
  
  .industry-grid-simple {
    gap: 32px;
  }
  
  .role-card {
    padding: 20px 28px;
    gap: 18px;
  }
  
  .role-icon {
    width: 60px;
    height: 60px;
  }
  
  .role-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .role-title {
    font-size: 17px;
  }
  
  .role-industry {
    font-size: 15px;
  }
}

/* ====== Industry Showcase - NEW Two Panel Layout ====== */
.industry-showcase {
  max-width: 100%;
  width: 100%;
  margin: 40px auto 64px;
  padding: 0 5%;
}

.industry-window {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.window-header {
  background: #f8f9fa;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.wdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.wdot.red { background: #ff5f57; }
.wdot.yellow { background: #ffbd2e; }
.wdot.green { background: #28ca42; }

.window-title {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  flex: 1;
  text-align: center;
  padding-right: 60px;
}

.window-content {
  display: flex;
  min-height: 420px;
}

/* Left Panel - Roles */
.roles-panel {
  width: 340px;
  flex-shrink: 0;
  padding: 24px;
  background: #fafbfc;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.role-item:hover {
  border-color: #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.role-item.active {
  border-color: #7C3AED;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.role-item .role-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}

.role-item .role-icon svg {
  width: 22px;
  height: 22px;
}

.role-item .role-info {
  flex: 1;
  min-width: 0;
}

.role-item .role-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2px;
}

.role-item .role-industry {
  font-size: 12px;
  color: #9ca3af;
}

.role-item .role-arrow {
  font-size: 16px;
  color: #d1d5db;
  opacity: 0;
  transition: all 0.2s ease;
}

.role-item:hover .role-arrow,
.role-item.active .role-arrow {
  opacity: 1;
  color: #7C3AED;
}

/* Right Panel - Preview */
.preview-panel {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
}

.preview-label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-resume {
  background: #fafbfc;
  border-radius: 12px;
  padding: 28px;
  flex: 1;
  border: 1px solid #e5e7eb;
}

.preview-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #7C3AED;
}

.preview-name {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.preview-role {
  font-size: 14px;
  color: #7C3AED;
  font-weight: 500;
}

.preview-section {
  margin-bottom: 20px;
}

.preview-section-title {
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.preview-bar {
  height: 8px;
  background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 100%);
  border-radius: 4px;
  margin-bottom: 8px;
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-tag {
  background: linear-gradient(135deg, #ede9fe 0%, #fae8ff 100%);
  color: #7C3AED;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.preview-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #faf5ff 0%, #f0fdf4 100%);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

.preview-badge span {
  font-size: 16px;
}

/* Mobile Responsive for Industry Window */
@media (max-width: 768px) {
  .industry-showcase {
    padding: 0 16px;
  }
  
  .window-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .roles-panel {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px;
  }
  
  .preview-panel {
    padding: 20px;
  }
  
  .preview-resume {
    padding: 20px;
  }
}

/* Large screens */
@media (min-width: 1400px) {
  .industry-window {
    max-width: 1300px;
  }
  
  .roles-panel {
    width: 380px;
    padding: 28px;
  }
  
  .role-item {
    padding: 16px 18px;
  }
  
  .role-item .role-icon {
    width: 48px;
    height: 48px;
  }
  
  .role-item .role-title {
    font-size: 15px;
  }
  
  .preview-panel {
    padding: 40px;
  }
}

/* FIX: Remove height constraints, let content determine size */
.industry-window {
  overflow: visible !important;
}

.window-content {
  min-height: auto !important;
  height: auto !important;
}

.roles-panel {
  height: auto !important;
}

.preview-panel {
  height: auto !important;
  min-height: 500px;
}

.preview-resume {
  flex: none !important;
  height: auto !important;
}

/* FIX: Allow window to use full width */
.industry-window {
  max-width: 95% !important;
  width: 95% !important;
}

@media (min-width: 1200px) {
  .industry-window {
    max-width: 1400px !important;
  }
}

@media (min-width: 1600px) {
  .industry-window {
    max-width: 1600px !important;
  }
}

/* FIX: Expand features section to allow wider content */
.features {
  max-width: 100% !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

.features-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

/* FIX: Balance the two panels */
.window-content {
  display: flex !important;
  align-items: stretch !important;
}

.roles-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.preview-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.preview-resume {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Ensure window has visible bottom */
.industry-window {
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
}

/* FIX: Rounded corners on window */
.industry-window {
  border-radius: 20px !important;
  overflow: hidden !important;
}

.window-header {
  border-radius: 20px 20px 0 0 !important;
}

.window-content {
  border-radius: 0 0 20px 20px !important;
}

.roles-panel {
  border-radius: 0 0 0 20px !important;
}

.preview-panel {
  border-radius: 0 0 20px 0 !important;
}

/* ===== MOBILE FIXES (SURGICAL) ===== */

/* Fix horizontal scroll */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  /* Fix pricing badges overflow on mobile */
  .pricing-badges {
    right: 8px;
    top: 8px;
  }
  
  .pricing-card.pro {
    transform: scale(1);
  }
  
  .pricing-card.pro:hover {
    transform: translateY(-4px);
  }
  
  /* Ensure blog section doesn't cause horizontal scroll */
  .blog {
    overflow-x: hidden;
  }
  
  .blog-posts {
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Force pricing cards to stack on mobile */
@media (max-width: 768px) {
  .pricing-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Blog cards: stack vertically on mobile like Kickresume */
@media (max-width: 768px) {
  .blog-posts {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-x: visible;
    padding: 0 20px 32px;
    scroll-snap-type: none;
  }
  
  .blog-post {
    width: 100%;
    max-width: 100%;
    flex-shrink: 1;
  }
  
  .blog-post-image {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
}

/* Ensure blog cards are NOT rotated on mobile */
@media (max-width: 768px) {
  .blog-post {
    transform: none;
  }
  
  .blog-post:hover {
    transform: translateY(-4px);
  }
}

/* Hide decorative elements on mobile */
@media (max-width: 768px) {
  .cross, .diamond {
    display: none;
  }
}

/* Center blog cards on mobile */
@media (max-width: 768px) {
  .blog-posts {
    align-items: center;
  }
  
  .blog-post {
    align-self: center;
  }
}

/* Match blog page card design on homepage mobile */
@media (max-width: 768px) {
  .blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(28, 24, 50, 0.08);
    padding: 0;
    border: none;
  }
  
  .blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(28, 24, 50, 0.12);
  }
  
  .blog-post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
  }
  
  .blog-accent {
    display: none;
  }
  
  .blog-post-content {
    padding: 20px;
  }
  
  .blog-post h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1C1832;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  
  .blog-post p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .blog-post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  
  .blog-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .blog-post-footer {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #9CA3AF;
  }
}

/* Ensure homepage blog cards match blog page width exactly */
@media (max-width: 768px) {
  .blog {
    padding: 56px 24px;
  }
  
  .blog-posts {
    padding: 0;
    max-width: 100%;
  }
  
  .blog-post {
    width: 100%;
    max-width: none;
  }
}

/* Remove max-width constraint on blog header for full-width cards */
@media (max-width: 768px) {
  .blog-header {
    max-width: none;
    padding: 0 24px;
    margin: 0 0 20px;
  }
}

/* ===== CONSOLIDATED MOBILE BLOG FIX - MATCH BLOG PAGE EXACTLY ===== */
@media (max-width: 768px) {
  /* Blog section - match blog page padding (16px horizontal) */
  .blog {
    padding: 24px 16px 60px !important;
    overflow-x: hidden !important;
  }
  
  /* Blog header - no constraints */
  .blog-header {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 0 20px !important;
  }
  
  /* Blog posts container - full width */
  .blog-posts {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0 !important;
    max-width: 100% !important;
    overflow-x: visible !important;
    align-items: stretch !important;
  }
  
  /* Individual cards - stretch full width */
  .blog-post {
    width: 100% !important;
    max-width: none !important;
    background: white !important;
    border-radius: 12px !important;
    padding: 0 !important;
    border: none !important;
    align-self: stretch !important;
  }
  
  /* Image height matches blog page */
  .blog-post-image {
    height: 160px !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  
  /* Content padding matches blog page */
  .blog-post-content {
    padding: 16px !important;
  }
}

/* Video play button for mobile */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 10;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Pricing footer text */
.pricing-footer-text {
  font-size: 12px;
  color: #8C86A0;
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* Better footer design for mobile */
@media (max-width: 768px) {
  .footer {
    padding: 32px 24px 24px;
    background: #FAFBFF;
  }
  
  .footer-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 20px;
  }
  
  .footer-link {
    font-size: 14px;
    color: #6B7280;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .footer-social {
    display: flex;
    gap: 16px;
  }
  
  .footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #7C3AED;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(28, 24, 50, 0.08);
  }
  
  .footer-social-link:hover {
    background: #7C3AED;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  }
  
  .footer-copy {
    font-size: 13px;
    color: #9CA3AF;
  }
}
