:root {
  --primary-color: #8a56ff; /* pulled from 46137.original.avif palette */
  --primary-glow: rgba(138, 86, 255, 0.5);
  
  --text-color: #e5e7eb;
  --text-primary: #ffffff;
  --text-light: #9ca3af;
  --text-muted: #6b7280;
  --bg-dark: #0a0a1a;     /* slightly bluer deep navy */
  --bg-darker: #080818;
  
  --bg-card-dark: #0d0f2b;
  --bg-card-highlight: #121449;
  --card-border: #1a1e6e;
  --card-highlight-border: #8a56ff;
  
  --border-radius: 12px;
  --button-radius: 100px;
  --gradient-primary: linear-gradient(135deg, #6f6bff 0%, #8a56ff 100%);
  
  --gradient-text: linear-gradient(90deg, #33c9ff 0%, #ff5ad6 50%, #8a56ff 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-dark);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(138, 86, 255, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(138, 86, 255, 0.10) 0%, transparent 50%),
    url('46137.original.avif');
  background-attachment: fixed, fixed, fixed;
  background-size: auto, auto, cover;
  background-position: center, center, center;
}

/* Avoid iOS/Android jank from fixed backgrounds; drop heavy bg image on mobile/tablet */
@media screen and (max-width: 1024px) {
  body {
    background-image:
      radial-gradient(circle at 10% 30%, rgba(138, 86, 255, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 90% 70%, rgba(138, 86, 255, 0.10) 0%, transparent 50%);
    background-attachment: scroll, scroll;
    background-size: auto, auto;
  }
}

.container {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  padding: 14px 28px;
  border-radius: var(--button-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-glow), 
              0 0 0 1px rgba(153, 51, 255, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2),
              0 8px 20px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(153, 51, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9933FF 0%, #8A2BE2 100%);
  color: white;
  transform: none;
  box-shadow: 0 10px 25px var(--primary-glow), 
              0 0 0 1px rgba(153, 51, 255, 0.5), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 12px 28px rgba(0, 0, 0, 0.35),
              0 0 25px rgba(153, 51, 255, 0.5);
}

.btn-primary:active {
  transform: none;
  box-shadow: 0 4px 10px var(--primary-glow), 
              0 0 0 1px rgba(153, 51, 255, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.1s ease;
}

/* removed unused: .btn-primary.outline */

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.5);
  color: var(--text-color);
  padding: 14px 28px;
  border-radius: var(--button-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05),
              0 8px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.6;
  pointer-events: none;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.7);
  color: white;
  transform: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1),
              0 12px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:active {
  transform: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.1s ease;
}

/* removed unused: .btn-secondary.outline */

.btn-current {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin: 20px 0;
  width: 100%;
  cursor: default;
}

/* Header */
header {
  padding: 18px 0;
  position: fixed;
  width: 100%;
  z-index: 101;
  background-color: transparent;
  backdrop-filter: blur(25px);
  border-bottom: none;
  top: 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
}

/* Right-side Offer badge (hidden on desktop by default, shown on mobile) */
.offer-badge {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: linear-gradient(180deg, rgba(220, 20, 60, 0.18) 0%, rgba(139, 0, 0, 0.18) 100%);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 8px 20px rgba(0,0,0,0.25), 0 0 20px rgba(255,0,0,0.25);
}

.offer-dot {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #ff4444 0%, #ff0000 60%, #aa0000 100%);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255,0,0,0.15), 0 0 18px rgba(255,0,0,0.8);
  animation: pulse-offer 1.6s infinite ease-in-out;
}

.offer-text { font-size: 0.75rem; }

@keyframes pulse-offer {
  0% { transform: scale(1); box-shadow: 0 0 0 4px rgba(255,0,0,0.15), 0 0 18px rgba(255,0,0,0.8); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(255,0,0,0.22), 0 0 24px rgba(255,0,0,0.95); }
  100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(255,0,0,0.15), 0 0 18px rgba(255,0,0,0.8); }
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.logo img {
  height: 32px;
  margin-right: 12px;
  border-radius: 8px;
  object-fit: contain;
}

.logo span {
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  gap: 25px;
  justify-content: center;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.95rem;
}

nav ul li a:hover {
  color: white;
}

.download-btn {
  margin-left: 15px;
}

.download-btn .btn-primary {
  padding: 10px 22px;
  font-size: 0.95rem;
}

/* Hero Section */
.hero {
  padding: 0;
  position: relative;
  overflow: visible;
  background: var(--bg-darker);
  text-align: center;
  margin-top: 0;
  padding-top: 75px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 26, 0.6) 0%, rgba(10, 10, 26, 0.2) 30%, rgba(10, 10, 26, 0.7) 100%),
              radial-gradient(circle at 50% 0%, rgba(138, 86, 255, 0.18) 0%, rgba(255, 90, 214, 0.06) 25%, rgba(6, 6, 32, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content-wrapper {
  background: linear-gradient(180deg, rgba(6, 6, 32, 0.95) 0%, rgba(10, 10, 50, 0.95) 100%);
  border-radius: 0 0 32px 32px;
  padding: 40px 40px 50px;
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5), 
              0 4px 8px rgba(0, 0, 0, 0.3), 
              0 0 0 1px rgba(255, 255, 255, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.05),
              0 0 60px rgba(153, 51, 255, 0.2),
              inset 0 0 15px rgba(153, 51, 255, 0.15);
  backdrop-filter: blur(15px);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  overflow: hidden;
  height: auto;
}

.hero-content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Noise texture using a repeating PNG image */
  background: url('assets/noise.png') repeat;
  opacity: 0.08; /* Adjust opacity as needed */
  border-radius: 0 0 32px 32px;
  pointer-events: none;
  z-index: 1;
}

.hero-content-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(153, 51, 255, 0.06) 0%, transparent 70%),
              radial-gradient(circle at 70% 60%, rgba(153, 51, 255, 0.06) 0%, transparent 70%);
  border-radius: 0 0 32px 32px;
  z-index: -1;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 85, 221, 0.4) 0%, rgba(153, 51, 255, 0.5) 100%);
  color: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 85, 221, 0.4);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2),
              0 0 15px rgba(255, 85, 221, 0.2);
}

.hero-badge i {
  margin-right: 8px;
  font-size: 1rem;
  color: white;
}

.hero-badge #student-counter {
  font-weight: 700;
  color: white;
  display: inline-block;
  margin: 0 1px;
}

.hero h1 {
  font-size: 3.15rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
}

.text-highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  text-shadow: none;
  font-size: 4.2rem;
}

/* Hero typewriter caret (inherits current heading font/size) */
.hero-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 6px;
  background: #ffffff;
  opacity: 0.9;
  animation: hero-caret-blink 1.05s steps(1, end) infinite;
}

@keyframes hero-caret-blink { 50% { opacity: 0; } }

/* Ensure gradient applies to typed text nested inside highlight */
.text-highlight #hero-typed {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-width: 1px;
  white-space: nowrap;
}

.hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 10px;
}

/* Floating Icons - Natural floating like EduTools */
.floating-icon {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(153, 51, 255, 0.2) 0%, rgba(0, 195, 255, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 255, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border: 1px solid rgba(153, 51, 255, 0.15);
  z-index: 5;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:hover {
  filter: brightness(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 255, 255, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(153, 51, 255, 0.25) 0%, rgba(0, 195, 255, 0.15) 100%);
}

.floating-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes float1 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
  }
  50% {
    transform: translateY(-18px) rotate(2deg) scale(1.04);
  }
  75% {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  30% {
    transform: translateY(-10px) rotate(-1.5deg) scale(0.98);
  }
  50% {
    transform: translateY(-15px) rotate(-2.5deg) scale(0.97);
  }
  70% {
    transform: translateY(-10px) rotate(-1.5deg) scale(0.98);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float3 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  20% {
    transform: translateY(-5px) rotate(1deg) scale(1.01);
  }
  50% {
    transform: translateY(-12px) rotate(3deg) scale(1.03);
  }
  80% {
    transform: translateY(-5px) rotate(1deg) scale(1.01);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float4 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-7px) rotate(-1deg) scale(0.99);
  }
  50% {
    transform: translateY(-16px) rotate(-3deg) scale(0.98);
  }
  67% {
    transform: translateY(-7px) rotate(-1deg) scale(0.99);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Randomly positioned floating icons to match EduTools */
.icon-brain {
  top: 137px;
  left: 15%;
  z-index: 5;
  animation: float1 8.5s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(153, 51, 255, 0.2) 0%, rgba(0, 195, 255, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(153, 51, 255, 0.1), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.icon-brain:hover {
  filter: brightness(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(153, 51, 255, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-chatgpt {
  top: 172px;
  right: 17%;
  z-index: 5;
  animation: float2 7.6s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(153, 51, 255, 0.2) 0%, rgba(0, 195, 255, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(153, 51, 255, 0.1), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.icon-chatgpt:hover {
  filter: brightness(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(153, 51, 255, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-canva {
  bottom: 142px;
  right: 13%;
  z-index: 5;
  animation: float3 9.2s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(255, 85, 221, 0.2) 0%, rgba(0, 195, 255, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 85, 221, 0.1), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.icon-canva:hover {
  filter: brightness(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 85, 221, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-piclumen {
  bottom: 133px;
  left: 18%;
  z-index: 5;
  animation: float4 8.8s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(255, 85, 221, 0.2) 0%, rgba(0, 195, 255, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 85, 221, 0.1), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.icon-piclumen:hover {
  filter: brightness(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 85, 221, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Tool Logos Section - Infinite marquee with all logos */
.tool-logos {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(10, 10, 26, 0.85) 0%, rgba(12, 12, 48, 0.88) 40%, rgba(12, 12, 48, 0.88) 60%, rgba(10, 10, 26, 0.85) 100%);
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
  margin-top: 0;
  margin-bottom: 0px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  height: 100%;
  width: 120px;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(6, 7, 26, 0) 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(6, 7, 26, 0) 100%);
}

.logo-scroll {
  display: flex;
  animation: marquee 40s linear infinite;
  width: max-content;
  position: relative;
  pointer-events: none;
  animation-play-state: running !important;
}

.logo-scroll img {
  height: 48px;
  opacity: 0.9;
  margin: 0 50px;
  transition: all 0.3s ease;
  object-fit: contain;
  border-radius: 6px;
  pointer-events: none;
}

.logo-scroll img:hover {
  opacity: 1;
  transform: scale(1.15);
  filter: grayscale(0);
  animation-play-state: running !important;
}

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

/* Ensure marquee runs smoothly */
.marquee-container { pointer-events: none; }

/* Benefits Section */
.benefits {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, rgba(10, 10, 26, 1) 0%, rgba(16, 16, 64, 0.9) 40%, rgba(16, 16, 64, 0.9) 60%, rgba(10, 10, 26, 1) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(153, 51, 255, 0.15) 0%, rgba(8, 10, 24, 0) 70%);
  pointer-events: none;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 800;
  color: white;
}

.benefits h2 .text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.8rem;
}

.subscription-highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  text-shadow: none;
  font-size: 2.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(12, 12, 56, 0.4);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 195, 255, 0.7) 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(153, 51, 255, 0.2);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(153, 51, 255, 0.2);
  background: rgba(14, 14, 66, 0.6);
}

.benefit-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  clear: both;
  margin-top: 5px;
}

/* Testimonials Section */
.testimonials {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--bg-card-dark);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(153, 51, 255, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

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

.testimonial-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.testimonial-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.rating {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.rating i {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-content {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}

.testimonial-date {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

/* Removed unused Reviews/Read-more/Load-more styles */

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.97);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Tablet Responsive */
@media screen and (max-width: 992px) {
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonials {
    padding: 50px 0;
  }

  .testimonials h2 {
    font-size: 2rem;
    padding: 0 15px;
  }

  .subtitle {
    font-size: 1rem;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .testimonial-content {
    font-size: 14px;
  }

  .testimonial-header h4 {
    font-size: 15px;
  }
  /* FAQ on mobile */
  .faq { padding: 40px 0; }
  .faq .container { padding: 0 16px; }
  .faq h2 { font-size: 1.6rem; margin-bottom: 8px; font-weight: 700; }
  .faq .subtitle { font-size: 0.95rem; opacity: 0.85; }
  .faq-list { margin-top: 24px; }
  .question { padding: 14px 16px; }
  .question h3 { font-size: 1rem; line-height: 1.35; }
  .answer { padding: 0 16px; }
  .answer.active { padding: 16px; }

  /* Footer mobile structure */
  footer { padding: 40px 0 60px; }
  .footer-content { gap: 20px; }
  .footer-links { grid-template-columns: 1fr; gap: 20px; }
  .link-group h4 { margin-bottom: 12px; }
  .link-group ul li { margin-bottom: 10px; }
  .footer-bottom { padding-top: 16px; }
  .footer-logo img { width: 72px; }
}

/* Testimonial Avatar Container with Whop Logo */
.testimonial-avatar-container {
  position: relative;
  display: inline-block;
}

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

.whop-logo-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 21px;
  height: 21px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.whop-logo-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .whop-logo-badge {
    width: 18px;
    height: 18px;
    bottom: -1px;
    right: -1px;
  }
  
  .whop-logo-badge img {
    width: 18px;
    height: 18px;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0 90px;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 100%, rgba(153, 51, 255, 0.1) 0%, rgba(8, 10, 24, 0) 70%);
  pointer-events: none;
}

.pricing h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.pricing .subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 40px;
  opacity: 0.8;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  cursor: pointer;
  background: linear-gradient(180deg, rgba(16,18,48,0.85) 0%, rgba(10,12,32,0.85) 100%);
  border-radius: 16px;
  padding: 28px 24px 88px;  /* Extra padding at bottom for buttons */
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
  box-sizing: border-box; /* Prevent border-width changes from shifting layout */
  min-height: 560px;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-card.selected {
  transform: translateY(-2px);
  border: 1px solid rgba(138,86,255,0.9);
  background: linear-gradient(180deg, rgba(20,22,60,0.95) 0%, rgba(14,16,44,0.95) 100%);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45), 
              0 0 0 1px rgba(138,86,255,0.35),
              0 0 40px rgba(138, 86, 255, 0.25);
  z-index: 3;
}

.price-card.selected .btn-primary {
  box-shadow: 0 10px 25px rgba(153, 51, 255, 0.5), 
              0 0 0 1px rgba(153, 51, 255, 0.5), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 0 25px rgba(153, 51, 255, 0.5);
}

.price-card.lifetime {
  border: 1px solid rgba(0, 195, 255, 0.3);
  background: rgba(12, 12, 66, 0.5);
}

.price-card.lifetime:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1),
              0 0 25px rgba(0, 195, 255, 0.3);
  border-color: rgba(0, 195, 255, 0.4);
}

.price-card.lifetime .price {
  color: rgba(0, 195, 255, 0.9);
}

.price-card.lifetime.selected {
  border: 2px solid rgba(0, 195, 255, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1),
              0 0 25px rgba(0, 195, 255, 0.3);
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.price-card .billing-info {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 16px;
  min-height: 18px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: white;
}

/* Price badges to match screenshot accents */
.price-card.free .price { color: #fff; }
.price-card.monthly .price { color: #ffffff; text-shadow: 0 0 24px rgba(138,86,255,0.35); }
.price-card.quarterly .price { color: #ffffff; text-shadow: 0 0 24px rgba(138,86,255,0.35); }
.price-card.lifetime .price { color: #33c9ff; text-shadow: 0 0 28px rgba(51,201,255,0.35); }

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  min-height: 56px;
}

.price-container.column {
  flex-direction: column;
  gap: 6px;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.95rem;
  opacity: 0.75;
}

.highlighted {
  transform: translateY(-2px);
  border-color: rgba(138,86,255,0.7);
  background: linear-gradient(180deg, rgba(22,24,72,0.95) 0%, rgba(16,18,56,0.95) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 36px rgba(138,86,255,0.25);
  z-index: 2;
}

.highlighted:hover {
  transform: none;
}

.btn-current {
  background-color: transparent;
  border: 1px solid rgba(153, 51, 255, 0.5);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: var(--button-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: default;
}

.price-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF55DD 0%, #8a56ff 100%);
  color: white;
  padding: 3px 12px;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.price-card.lifetime .price-label {
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.8) 0%, rgba(0, 150, 255, 1) 100%);
  animation: pulse-glow 3s infinite;
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.6);
}

.price-card.lifetime .price-container {
  position: relative;
}

.price-card.lifetime .original-price::after {
  content: "";
  display: none;
}

.price-card.lifetime .original-price {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: #FF3333;
  position: relative;
}

.price-card.lifetime .btn-primary {
  background: linear-gradient(135deg, #00AAFF 0%, #0080FF 100%);
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.5), 
              0 0 0 1px rgba(0, 170, 255, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2),
              0 8px 20px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(0, 170, 255, 0.4);
}

.price-card.lifetime .btn-primary:hover {
  background: linear-gradient(135deg, #00BBFF 0%, #0090FF 100%);
  box-shadow: 0 10px 25px rgba(0, 170, 255, 0.5), 
              0 0 0 1px rgba(0, 170, 255, 0.5), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 12px 28px rgba(0, 0, 0, 0.35),
              0 0 25px rgba(0, 170, 255, 0.5);
}

.price-card.lifetime.selected .btn-primary {
  box-shadow: 0 10px 25px rgba(0, 170, 255, 0.5), 
              0 0 0 1px rgba(0, 170, 255, 0.5), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 0 25px rgba(0, 170, 255, 0.5);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.6);
    transform: scale(1) translateX(-50%);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.9), 0 0 20px rgba(0, 195, 255, 0.4);
    transform: scale(1.05) translateX(-48%);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.6);
    transform: scale(1) translateX(-50%);
  }
}

.price-card .features {
  margin-top: 0;
  text-align: left;
  padding-bottom: 20px;
}

.price-card ul {
  text-align: left;
  margin-top: auto;
}

.price-card .features li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-light);
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9933FF;
  font-weight: 700;
}

/* FAQ Section */
.faq {
  padding: 50px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 6, 32, 1) 0%, rgba(12, 12, 56, 0.9) 40%, rgba(12, 12, 56, 0.9) 60%, rgba(6, 6, 32, 1) 100%);
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(153, 51, 255, 0.08) 0%, rgba(8, 10, 24, 0) 60%);
  pointer-events: none;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.faq-list {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: rgba(12, 12, 56, 0.4);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.question:hover {
  background: rgba(14, 14, 66, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.icon i {
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.answer.active {
  padding: 20px;
  max-height: 200px;
  background: rgba(10, 12, 24, 0.3);
  margin: 5px 0;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Footer */
footer {
  padding: 80px 0 20px;
  background: linear-gradient(180deg, #0a0a1a 0%, #080818 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: radial-gradient(circle at 80% 80%, rgba(153, 51, 255, 0.05) 0%, rgba(8, 10, 24, 0) 60%);
  pointer-events: none;
}

footer .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 35px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.footer-logo h3 {
  margin: 15px 0;
  font-weight: 700;
  color: white;
}

.footer-logo p {
  color: var(--text-light);
  max-width: 300px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(153, 51, 255, 0.2);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.link-group h4 {
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.link-group ul li {
  margin-bottom: 15px;
}

.link-group ul li a {
  color: var(--text-light);
  transition: all 0.3s ease;
}

.link-group ul li a:hover {
  color: #9933FF;
  transform: translateX(3px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  
  .highlighted {
    transform: scale(1);
  }
  
  .highlighted:hover {
    transform: translateY(-5px) scale(1);
  }

  /* Prevent selected state from growing the card on mobile to avoid outline misalignment */
  .price-card.selected {
    transform: none;
  }

  /* Disable hover lift on touch devices to keep layout steady */
  .price-card:hover,
  .highlighted:hover {
    transform: none;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .footer-logo {
    text-align: center;
    align-items: center;
  }
  
  .footer-logo p {
    margin: 0 auto 20px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

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

@media screen and (max-width: 768px) {
  .container {
    padding: 0;
    overflow: hidden;
  }
  
  header {
    padding: 15px 16px;
    background-color: transparent;
    backdrop-filter: blur(15px);
  }
  
  header .container {
    max-width: 100%;
    padding: 0 10px;
    margin: 0;
    justify-content: space-between;
    position: relative;
    min-height: 44px;
  }
  
  .logo {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 26px;
    margin-right: 8px;
  }
  
  nav { display: none; }
  
  .download-btn { display: none; }

  /* Show right badge on mobile and keep logo left, both vertically centered */
  .offer-badge { display: inline-flex; }
  
  .hero {
    padding-top: 60px;
    overflow: hidden;
  }
  
  .hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .hero-content-wrapper {
    padding: 40px 16px 50px;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, rgba(6, 6, 32, 0.98) 0%, rgba(10, 10, 50, 0.98) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 4px 8px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 0 40px rgba(153, 51, 255, 0.2);
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  .hero-content-wrapper::before {
    border-radius: 0 0 24px 24px;
    background: url('assets/noise.png') repeat;
    opacity: 0.08;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 0;
    padding: 0 10px;
  }
  
  .text-highlight {
    font-size: 2.0rem;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 15px;
    display: block;
  }
  
  .subscription-highlight {
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 15px;
    display: block;
  }
  
  .hero p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto 25px;
    max-width: 100%;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
  }
  
  .hero-badge i {
    font-size: 0.9rem;
    margin-right: 6px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 220px;
    margin: 5px auto 0;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }
  
  .btn-primary {
    box-shadow: 0 4px 15px rgba(153, 51, 255, 0.4), 
                0 0 0 1px rgba(153, 51, 255, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.35);
  }
  
  .btn-secondary {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(12, 14, 28, 0.7);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 15px rgba(0, 195, 255, 0.15);
    z-index: 5;
  }
  
  .floating-icon img {
    width: 32px;
    height: 32px;
  }
  
  .icon-brain {
    top: 85px;
    left: 12%;
  }
  
  .icon-chatgpt {
    top: 95px;
    right: 14%;
  }
  
  .icon-canva {
    bottom: 125px;
    right: 7%;
  }
  
  .icon-piclumen {
    bottom: 90px;
    left: 10%;
  }
  
  .tool-logos {
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(6, 6, 32, 1) 0%, rgba(10, 10, 50, 0.9) 40%, rgba(10, 10, 50, 0.9) 60%, rgba(6, 6, 32, 1) 100%);
    margin-bottom: 0;
  }
  
  .logo-scroll {
    animation: marquee 25s linear infinite;
    pointer-events: none;
    animation-play-state: running !important;
  }
  
  .logo-scroll img {
    height: 36px;
    margin: 0 22px;
  }
  
  .marquee-container::before,
  .marquee-container::after {
    width: 50px;
  }
  
  .benefits {
    padding: 40px 16px 70px;
    background: linear-gradient(180deg, rgba(6, 6, 32, 1) 0%, rgba(12, 12, 56, 0.9) 40%, rgba(12, 12, 56, 0.9) 60%, rgba(6, 6, 32, 1) 100%);
  }
  
  .benefits .container {
    padding: 0;
  }
  
  .benefits h2 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    padding: 0 10px;
  }
  
  .benefits h2 .text-gradient {
    font-size: 1.5rem;
    display: block;
    margin-top: 5px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 5px;
  }
  
  .benefit-card {
    padding: 20px;
    background: rgba(17, 21, 40, 0.6);
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0.9rem;
  }
  
  .benefit-card p {
    font-size: 0.9rem;
  }
  
  .pricing {
    padding: 40px 16px 60px;
  }
  
  .pricing h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .pricing .subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .pricing-grid {
    gap: 16px;
  }
  
  .price-card {
    padding: 25px;
  }
  
  .price-card h3 {
    font-size: 1.3rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .features li {
    font-size: 0.9rem;
    padding-left: 25px;
    margin-bottom: 12px;
  }
  
  .features li::before {
    left: 5px;
  }
  
  .btn-current {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .testimonial-card {
    padding: 14px;
  }
  
  .testimonials {
    padding: 50px 16px;
  }
  
  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .testimonials .subtitle {
    margin-bottom: 30px;
    font-size: 0.95rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .testimonial-card {
    padding: 16px;
  }
  
  .tools-list {
    padding: 60px 16px;
  }
  
  .tools-list h2 {
    font-size: 1.8rem;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .tools-categories {
    gap: 40px;
  }
  
  .tool-card {
    padding: 20px;
  }
  
  footer {
    padding: 50px 0 20px;
  }
  
  footer .container {
    padding: 0 16px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
}

@media screen and (max-width: 420px) {
  header {
    padding: 12px 16px;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .logo img {
    height: 26px;
    margin-right: 8px;
  }
  
  .hero h1 {
    font-size: 1.45rem;
    padding: 0 5px;
  }
  
  .text-highlight {
    font-size: 1.95rem;
    margin-bottom: 12px;
  }
  
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 0 5px;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 15px;
  }
  
  .hero-badge i {
    font-size: 0.8rem;
    margin-right: 5px;
  }
  
  .cta-buttons {
    max-width: 180px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  
  .floating-icon img {
    width: 28px;
    height: 28px;
  }
  
  .icon-brain {
    top: 100px;
    left: 9%;
  }
  
  .icon-chatgpt {
    top: 88px;
    right: 11%;
  }
  
  .icon-canva {
    bottom: 92px;
    right: 9%;
  }
  
  .icon-piclumen {
    bottom: 82px;
    left: 11%;
  }
  
  .tool-logos {
    padding: 30px 0;
  }
  
  .logo-scroll img {
    height: 34px;
    margin: 0 22px;
  }
}

/* Sticky bottom CTA on mobile */
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 110;
  display: none; /* only visible on mobile via media query */
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8A2BE2 0%, #9933FF 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 0 0 1px rgba(153,51,255,0.45), 0 0 26px rgba(153,51,255,0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, filter .2s ease;
}

@media screen and (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}

/* Visibility toggled by JS when past hero + logos and not overlapping pricing */
.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keep gradient on active/visited states */
.mobile-sticky-cta:active,
.mobile-sticky-cta:focus,
.mobile-sticky-cta:visited {
  color: #fff;
  background: linear-gradient(135deg, #8A2BE2 0%, #9933FF 100%);
}

.mobile-sticky-cta:hover { filter: brightness(1.05); }

/* Tools List Section */
.tools-list {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

/* Comparison Section */
.comparison {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(10, 10, 26, 1) 0%, rgba(16, 16, 64, 0.9) 50%, rgba(10, 10, 26, 1) 100%);
}

.comparison h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.comparison .subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.comparison-grid {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 12, 56, 0.55) 0%, rgba(8, 10, 28, 0.65) 100%);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  padding: 16px 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-head { 
  background: rgba(138, 86, 255, 0.08);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.comparison-row .center { text-align: center; }

.comparison-row i { color: #33c9ff; }

.comparison-cta { text-align: center; margin-top: 24px; }

/* New: savings badge + tool icons + totals rows + value cards */
.savings-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin: 10px auto 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 214, 0.28) 0%, rgba(138, 86, 255, 0.4) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
  width: fit-content;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25), 0 0 18px rgba(138,86,255,0.25);
}

.tool-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tool-cell .tool-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-block;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: none;
  vertical-align: middle;
}

.tool-cell span { font-weight: 800; letter-spacing: 0.2px; }

/* Fallback badge tile for tools without an image */
.tool-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(138,86,255,0.35) 0%, rgba(51,201,255,0.35) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  margin-right: 10px;
}

.comparison-row:hover {
  background: rgba(16, 18, 48, 0.5);
}

.comparison-total {
  background: rgba(0,0,0,0.2);
  font-weight: 700;
}

.comparison-savings {
  background: linear-gradient(135deg, rgba(51, 201, 255, 0.16) 0%, rgba(138, 86, 255, 0.16) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-weight: 800;
}

.value-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 18px auto 8px;
}

.value-card {
  background: rgba(12, 12, 56, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.value-card i {
  color: #33c9ff;
  margin-bottom: 8px;
}

.value-card h4 {
  margin: 6px 0 4px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

@media screen and (max-width: 640px) {
  .comparison-grid { border-radius: 10px; }
  .comparison-row { grid-template-columns: 1.2fr 0.8fr 0.8fr; padding: 14px 12px; }
  .comparison h2 { font-size: 1.8rem; }
  .value-highlights { grid-template-columns: 1fr; gap: 12px; }
  .tool-cell .tool-icon { width: 24px; height: 24px; }
}

.tools-list .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.tools-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(153, 51, 255, 0.05) 0%, rgba(8, 10, 24, 0) 70%);
  pointer-events: none;
}

.tools-list h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.tools-list .text-highlight {
  font-size: 2.6rem;
  color: #9933FF;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tools-list .subtitle {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.tools-categories {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.tools-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #9933FF;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #9933FF;
  border-radius: 3px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-card {
  background: rgba(12, 12, 56, 0.8);
  border-radius: var(--border-radius);
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2), 
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(153, 51, 255, 0.15);
  background: rgba(14, 14, 66, 0.9);
}

.tool-card .tool-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.tool-card .tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.tool-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
}

.tool-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.tool-price {
  position: absolute;
  top: 18px;
  right: 18px;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: radial-gradient(100% 100% at 30% 0%, rgba(148, 66, 255, 0.85) 0%, rgba(106, 56, 255, 0.85) 100%);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25), 0 0 18px rgba(138,86,255,0.35);
}

.tool-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tools-list h2, .tools-list .text-highlight {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .tools-list {
    padding: 60px 16px;
  }
  .price-card { padding: 22px 18px 76px; min-height: unset; }
  .price { font-size: 2.1rem; }
  
  .tools-list h2 {
    font-size: 1.8rem;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .tools-categories {
    gap: 40px;
  }
  
  .tool-card {
    padding: 18px 16px 16px;
  }
  
  .category-title {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 420px) {
  .tools-list {
    padding: 40px 16px;
  }
  
  .tools-list h2, .tools-list .text-highlight {
    font-size: 1.8rem;
  }
  
  .tool-card { padding: 14px; }
  
  .tool-icon { width: 36px; height: 36px; min-width: 36px; }
  
  .tool-header h4 {
    font-size: 1rem;
  }
  
  .tool-price { font-size: 0.85rem; }
  
  .tool-card p { font-size: 0.82rem; }
}

/* Add a slight purple accent to the secondary highlight elements */
.floating-icon.icon-canva,
.floating-icon.icon-piclumen {
  background: linear-gradient(135deg, rgba(255, 85, 221, 0.2) 0%, rgba(0, 195, 255, 0.1) 100%);
  border: 1px solid rgba(255, 85, 221, 0.1);
}

.floating-icon.icon-canva:hover,
.floating-icon.icon-piclumen:hover {
  background: linear-gradient(135deg, rgba(255, 85, 221, 0.25) 0%, rgba(0, 195, 255, 0.15) 100%);
}

/* Add secondary color to highlight certain elements for visual interest */
.testimonials .text-highlight {
  background: linear-gradient(135deg, #FF55DD 0%, #9933FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card .btn-primary, 
.price-card .btn-current {
  width: 75%;
  padding: 14px 20px;
  display: block;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

/* Keep absolute-centered button from shifting on hover/active */
.price-card .btn-primary:hover,
.price-card .btn-primary:active {
  transform: translateX(-50%);
}

.price-card.highlighted.highlight-hidden {
  transform: none;
  border-color: rgba(255, 255, 255, 0.05);
  background: rgba(12, 12, 56, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1;
} 