/* CSS Variables - Original Calm Green Palette */
:root {
  --primary: #84e4c8;
  --primary-dark: #065f46;
  --primary-light: #b4f1d9;
  --primary-ultra-light: #f0fff9;
  --accent: #3cd278;
  --accent-light: #b8ffe1;
  --neutral-900: #222222;
  --neutral-800: #333333;
  --neutral-700: #444444;
  --neutral-600: #666666;
  --neutral-500: #888888;
  --neutral-400: #aaaaaa;
  --neutral-300: #cccccc;
  --neutral-200: #e0e0e0;
  --neutral-100: #f5f5f5;
  --white: #ffffff;
  --success: #3cd278;
  --warning: #fdcb6e;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--neutral-800);
  background: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--white) 30%, var(--primary-ultra-light) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* 3D Background Video/GIF Effect */
.background-demo {
  position: fixed;
  top: 10%;
  right: -10%;
  width: 400px;
  height: 300px;
  z-index: -1;
  opacity: 0.15;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: all 0.3s ease;
  pointer-events: none;
}

.background-demo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Sticky Top Bar */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10001;
  box-shadow: var(--shadow-md);
}

.sticky-bar .cta-link {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(132, 228, 200, 0.2);
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.logo img {
  height: 32px;
  width: 32px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--neutral-700);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--primary-ultra-light);
  border-radius: 20px;
  padding: 0.25rem;
  border: 1px solid var(--primary-light);
}

.lang-btn {
  padding: 0.25rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--primary-dark);
  border-radius: 15px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--primary);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  background: var(--primary-light);
}

.cta-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
  padding: 12rem 2rem 4rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--white) 50%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero .subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  color: var(--neutral-600);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.primary-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(132, 228, 200, 0.4);
  position: relative;
  overflow: hidden;
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(132, 228, 200, 0.6);
}

.secondary-cta {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.secondary-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Social Proof */
.social-proof {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--neutral-200);
}

.social-proof h3 {
  color: var(--neutral-600);
  font-size: 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.7;
}

.trust-logo {
  font-size: 1.2rem;
  color: var(--neutral-500);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  background: var(--neutral-100);
}

/* Problem Section */
.problems {
  background: var(--primary-ultra-light);
  padding: 6rem 2rem;
}

.problems-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.problems h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.problems .subtitle {
  font-size: 1.3rem;
  color: var(--neutral-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

/* Add a special hover area in the right area of the grid */
.pain-points::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33.33%; /* Right third of the grid */
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.pain-points:hover .cat-therapy-card {
  opacity: 1;
  transform: scale(1.02);
  z-index: 10;
}

.pain-point {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid #ff6b6b;
  transition: transform 0.3s ease;
}

.pain-point:hover {
  transform: translateY(-4px);
}

.pain-point .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pain-point h3 {
  color: var(--neutral-900);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pain-point p {
  color: var(--neutral-600);
}

/* Cat Therapy Card - normal card but with special styling */
.cat-therapy-card {
  /* Initially invisible */
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
  cursor: pointer;
  background-color: #fff;
  border-left: 4px solid #ff9d7a;  /* Different border color for the cat card */
}

/* Make the card visible when hovered */
.cat-therapy-card:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* Position the cat therapy card on the right side of the grid */
@media (min-width: 768px) {
  .cat-therapy-card {
    grid-column: 3;
    grid-row: 2;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
  }
  
  .cat-therapy-card:hover {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Solutions Section - NEW REDESIGNED STYLES */
.solutions {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-ultra-light) 50%, var(--white) 100%);
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.solutions h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.solutions .subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  max-width: 700px;
  margin: 0 auto 4rem auto;
  line-height: 1.6;
}

/* Feature Showcase */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
  text-align: left;
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-content {
  padding: 2rem;
}

.feature-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  margin: 1.5rem 0 2rem 0;
  padding: 0;
}

.solution-features li {
  padding: 0.5rem 0;
  color: var(--neutral-700);
  font-size: 1rem;
  line-height: 1.5;
}

.try-feature-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.try-feature-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Feature Image Demos - 3D Screenshot Placeholders */
.feature-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

/* 3D Screenshot Template */
.screenshot-3d {
  width: 100%;
  max-width: 480px;
  height: 360px;
  background: linear-gradient(135deg, var(--white) 0%, var(--neutral-100) 100%);
  border-radius: 12px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: rotateY(15deg) rotateX(5deg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary-light);
}

.screenshot-3d:hover {
  transform: rotateY(12deg) rotateX(3deg) translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.screenshot-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--primary-ultra-light);
  border-bottom: 1px solid var(--primary-light);
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.screenshot-3d::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #28ca42;
}

/* Screenshot Content Area */
.screenshot-content {
  padding: 50px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--neutral-600);
  font-size: 14px;
  text-align: center;
}

.screenshot-placeholder {
  width: 80%;
  height: 60%;
  background: var(--primary-ultra-light);
  border: 2px dashed var(--primary-light);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-weight: 600;
}

.screenshot-icon {
  font-size: 2rem;
  opacity: 0.7;
}

.screenshot-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .screenshot-3d {
    transform: rotateY(8deg) rotateX(3deg);
    max-width: 360px;
    height: 270px;
  }
  
  .screenshot-3d:hover {
    transform: rotateY(5deg) rotateX(2deg) translateY(-5px);
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--white) 50%, var(--primary-ultra-light) 100%);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-header {
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 1.2rem;
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.billing-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-300);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.billing-label {
  font-weight: 600;
  color: var(--neutral-700);
}

.billing-label.active {
  color: var(--primary-dark);
}

.pricing-badge {
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--neutral-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.pricing-price {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.pricing-period {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin-left: 0.5rem;
}

.pricing-note {
  color: var(--neutral-500);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-100);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.feature-unavailable {
  background: var(--neutral-300);
}

.pricing-cta {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-cta.primary {
  background: var(--primary);
  color: var(--white);
}

.pricing-cta.primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.pricing-cta.secondary {
  background: var(--neutral-100);
  color: var(--neutral-700);
  border: 2px solid var(--neutral-300);
}

.pricing-cta.secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.pricing-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 2rem;
  border-radius: 0 0 20px 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-faq {
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-faq h3 {
  font-size: 2rem;
  color: var(--neutral-900);
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  background: var(--primary-ultra-light);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--neutral-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--neutral-700);
  line-height: 1.6;
}

.faq-answer.open {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

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

.pricing-guarantee {
  background: var(--primary-ultra-light);
  border: 2px solid var(--primary-light);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.pricing-guarantee h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.pricing-comparison {
  margin-top: 4rem;
}

.comparison-table {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.comparison-header {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  font-weight: 700;
}

.comparison-row {
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--neutral-100);
  align-items: center;
}

.comparison-row:nth-child(even) {
  background: var(--primary-ultra-light);
}

.comparison-feature {
  font-weight: 600;
  color: var(--neutral-900);
}

.comparison-check {
  text-align: center;
  font-size: 1.2rem;
}

/* Focus Demo Section */
.focus-demo-text {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-light);
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.focus-demo-text.focus-mode {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(132, 228, 200, 0.5);
  transform: scale(1.02);
}

.focus-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.focus-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Focus Mode Arrow */
.focus-arrow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  pointer-events: none;
  box-shadow: var(--shadow-xl);
}

.focus-arrow.show {
  opacity: 1;
  visibility: visible;
  animation: bounce-arrow 2s ease-in-out infinite;
}

.focus-arrow::after {
  content: '↓';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, -50%); }
  40% { transform: translate(-50%, -60%); }
  60% { transform: translate(-50%, -55%); }
}

/* Literal Language Feature */
.literal-highlight {
  position: relative;
  cursor: help;
  border-bottom: 2px dotted var(--primary);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.literal-highlight.active {
  opacity: 1;
  background: var(--primary-ultra-light);
  padding: 2px 4px;
  border-radius: 4px;
}

.literal-tool-tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.literal-tool-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--primary-dark);
}

.literal-highlight.active:hover .literal-tool-tip {
  opacity: 1;
  visibility: visible;
}

/* Testimonials Section */
.testimonials {
  background: var(--primary-ultra-light);
  padding: 6rem 2rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 2px solid var(--primary-light);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary);
  font-weight: bold;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  color: var(--neutral-900);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.testimonial-info p {
  color: var(--neutral-500);
  font-size: 0.9rem;
}

.testimonial-rating {
  color: #ffd700;
  margin-top: 0.5rem;
}

/* Use Cases Section */
.use-cases {
  background: var(--white);
  padding: 6rem 2rem;
}

.use-cases-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.use-cases h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 3rem;
}

.use-cases-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.use-case-tab {
  background: var(--neutral-100);
  color: var(--neutral-600);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.use-case-tab.active {
  background: var(--primary);
  color: var(--white);
}

.use-case-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  background: var(--primary-ultra-light);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--primary-light);
}

.use-case-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.use-case-content h3 {
  font-size: 1.8rem;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.use-case-content p {
  font-size: 1.1rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.use-case-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.use-case-feature {
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--neutral-700);
  border-left: 3px solid var(--primary);
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.final-cta .primary-cta {
  background: var(--white);
  color: var(--primary-dark);
  font-size: 1.2rem;
  padding: 1.5rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta .primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.urgency-text {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Feature Control Panel - Bottom Left Bar */
#feature-control-panel {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary);
  padding: 8px 12px;
  display: none;
  z-index: 10000;
  max-width: 300px;
}

.control-helper-text {
  font-size: 10px;
  color: var(--neutral-500);
  margin-bottom: 6px;
  text-align: center;
  font-weight: 500;
}

.control-panel-header {
  display: none;
}

.control-panel-close {
  display: none;
}

.active-features {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-chip {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid var(--primary);
  width: 32px;
  height: 32px;
}

.feature-chip:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.feature-chip .remove-x {
  display: none;
}

/* Floating UI Styles */

/* Floating Timer UI - Smaller and repositioned */
#floating-timer {
  position: fixed;
  top: 120px;
  right: 20px;
  background: linear-gradient(to bottom right, var(--primary-ultra-light), var(--primary-light));
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
  color: var(--primary-dark);
  font-family: inherit;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  width: 140px;
  cursor: move;
  user-select: none;
  border: 2px solid var(--primary);
}

#floating-timer.dragging {
  opacity: 0.8;
  transform: rotate(2deg);
}

.timer-display {
  font-size: 24px;
  font-weight: bold;
  margin: 3px 0;
  font-variant-numeric: tabular-nums;
  color: var(--primary-dark);
}

.timer-status {
  font-size: 11px;
  margin-bottom: 8px;
  text-align: center;
  color: var(--primary-dark);
}

.timer-controls {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.timer-button {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--primary-dark);
}

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

/* Floating Notes UI - Back to corner */
#floating-notes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}

.notes-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 4s infinite;
}

.notes-button:hover {
  transform: scale(1.1);
  animation: none;
}

/* Title Fall Animation */
@keyframes titleFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(100px) rotate(180deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(200px) rotate(360deg);
    opacity: 0;
  }
}

.title-falling {
  animation: titleFall 1.5s ease-in-out;
  pointer-events: none;
}

/* Cat1 reveal styles */
.cat1-reveal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  max-height: 450px;
  z-index: 10000;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid var(--primary-light);
}

.cat1-reveal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cat1-reveal img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  margin-bottom: 10px;
}

.cat1-reveal button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cat1-reveal button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Bounce animation for founder cat */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0) scale(1.1);
  }
  40% {
    transform: translateX(-50%) translateY(-10px) scale(1.1);
  }
  60% {
    transform: translateX(-50%) translateY(-5px) scale(1.1);
  }
}

.notes-panel {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary-light);
  display: none;
  max-height: 350px;
  overflow: hidden;
}

.notes-panel.show {
  display: block;
  animation: slideUp 0.3s ease;
}

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

.notes-header {
  background: var(--primary-ultra-light);
  padding: 15px;
  border-bottom: 2px solid var(--primary-light);
  font-weight: 600;
  color: var(--primary-dark);
}

.notes-content {
  padding: 15px;
}

.notes-textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 10px;
}

.notes-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.notes-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.voice-note-btn, .save-note-btn, .undo-note-btn {
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  flex: 1;
  border: 2px solid;
}

.voice-note-btn {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--primary-dark);
}

.voice-note-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.save-note-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.save-note-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.undo-note-btn {
  background: var(--neutral-100);
  border-color: var(--neutral-400);
  color: var(--neutral-600);
}

.undo-note-btn:hover {
  background: var(--neutral-200);
  color: var(--neutral-800);
}

.notes-list {
  max-height: 150px;
  overflow-y: auto;
}

.note-item {
  background: var(--primary-ultra-light);
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  border-left: 3px solid var(--primary);
  font-size: 14px;
}

/* Floating Accessibility UI - Compact */
#floating-accessibility {
  position: fixed;
  top: 120px;
  left: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light);
  padding: 12px;
  display: none;
  z-index: 9998;
  width: 200px;
}

.accessibility-header {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
  text-align: center;
  font-size: 12px;
}

.control-group {
  margin-bottom: 10px;
}

.control-group label {
  display: block;
  font-size: 10px;
  color: var(--neutral-600);
  margin-bottom: 4px;
  font-weight: 500;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-container input[type="range"] {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--primary-light);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.slider-value {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-dark);
  min-width: 35px;
}

/* Floating Background Noise UI - Compact */
#floating-background-noise {
  position: fixed;
  top: 280px;
  right: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light);
  padding: 12px;
  display: none;
  z-index: 9997;
  width: 180px;
}

.noise-header {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-align: center;
  font-size: 12px;
}

.noise-type-selector {
  width: 100%;
  padding: 6px;
  border: 1px solid var(--primary-light);
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 10px;
}

.noise-controls {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.noise-btn {
  flex: 1;
  padding: 4px 6px;
  border: 1px solid var(--primary-light);
  background: var(--primary-ultra-light);
  color: var(--primary-dark);
  border-radius: 4px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.noise-btn:hover, .noise-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* Floating Site Blocker UI - More Compact */
#floating-site-blocker {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  padding: 12px;
  display: none;
  z-index: 9996;
  width: 240px;
}

.blocker-header {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-align: center;
  font-size: 12px;
}

.blocked-sites-list {
  max-height: 100px;
  overflow-y: auto;
  margin-bottom: 8px;
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  padding: 4px;
}

.site-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 6px;
  margin-bottom: 2px;
  background: var(--neutral-100);
  border-radius: 3px;
  font-size: 10px;
}

.remove-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  cursor: pointer;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-site-container {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.site-input {
  flex: 1;
  padding: 4px 6px;
  border: 1px solid var(--neutral-300);
  border-radius: 3px;
  font-size: 10px;
}

.add-site-btn {
  padding: 4px 6px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
}

.blocker-controls {
  display: flex;
  gap: 4px;
}

.blocker-btn {
  flex: 1;
  padding: 4px 6px;
  border: 1px solid var(--primary);
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 4px;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.blocker-btn:hover, .blocker-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* Floating Font Controls UI - Spaced out from accessibility */
#floating-font-controls {
  position: fixed;
  top: 380px;
  left: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light);
  padding: 12px;
  display: none;
  z-index: 9995;
  width: 220px;
}

.font-header {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-align: center;
  font-size: 12px;
}

.font-family-selector {
  width: 100%;
  padding: 4px 6px;
  border: 1px solid var(--neutral-300);
  border-radius: 4px;
  margin-bottom: 4px;
  font-size: 9px;
}

.font-controls {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.font-btn {
  flex: 1;
  padding: 4px 6px;
  border: 1px solid var(--primary-light);
  background: var(--primary-ultra-light);
  color: var(--primary-dark);
  border-radius: 4px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.font-btn:hover, .font-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* Founder Section */
.founder-section {
  background: var(--primary-ultra-light);
  padding: 4em 2em;
}

.founder-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
}

.founder-message {
  flex: 1 1 500px;
  background: var(--white);
  padding: 2em;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light);
}

.founder-message h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5em;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.founder-message h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
  color: var(--neutral-900);
}

.founder-signature {
  margin-top: 2em;
}

.founder-photo {
  flex: 1 1 400px;
  text-align: center;
}

.founder-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-light);
}

/* Hidden Cats */
.hidden-cat {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
  z-index: 100;
}

.hidden-cat:hover {
  opacity: 1;
  transform: scale(1.2);
}

#cat1 { top: 20%; right: 5%; }
#cat2 { bottom: 30%; left: 3%; }
#cat3 { top: 60%; right: 10%; }

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--primary-light);
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--primary);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--primary-light);
}

/* Responsive Design */
@media (min-width: 769px) {
  .pain-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
  }
  
  .pain-point:nth-child(4):nth-last-child(2),
  .pain-point:nth-child(5):last-child {
    grid-column: span 1;
  }
  
  .pain-point:nth-child(4):nth-last-child(2) {
    justify-self: end;
  }
  
  .pain-point:nth-child(5):last-child {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .nav-right {
    gap: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .language-switcher {
    order: -1;
  }
  
  .hero {
    padding: 8rem 1rem 3rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pain-points, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cat-therapy-card {
    opacity: 0;
    grid-row: auto;
    grid-column: auto;
  }
  
  /* Responsive Feature Showcase */
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .feature-showcase.reverse {
    direction: ltr;
  }
  
  .feature-content {
    order: 2;
  }
  
  .feature-image {
    order: 1;
  }
  
  .feature-showcase:nth-child(even) .feature-content {
    order: 1;
  }
  
  .feature-showcase:nth-child(even) .feature-image {
    order: 2;
  }
  
  /* Pricing responsive */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
    margin-top: 1rem;
  }

  .pricing-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .comparison-feature {
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  #floating-timer {
    top: 90px;
    right: 10px;
    width: 140px;
    padding: 10px;
  }
  
  #floating-accessibility {
    top: 250px;
    left: 10px;
    width: 200px;
  }
  
  #floating-background-noise {
    top: 400px;
    right: 10px;
    width: 180px;
  }
    #floating-site-blocker {
    bottom: 60px;
    left: 10px;
    width: 220px;
  }
  
  #floating-font-controls {
    top: 180px;
    left: 10px;
    width: 200px;
  }

  #feature-control-panel {
    bottom: 10px;
    left: 10px;
    padding: 6px 10px;
  }

  .feature-chip {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .focus-arrow {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-ultra-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
.pricing-section {
      padding: 6rem 2rem;
      background: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--white) 50%, var(--primary-ultra-light) 100%);
    }

    .pricing-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .pricing-header {
      margin-bottom: 4rem;
    }

    .pricing-header h2 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 700;
      color: var(--neutral-900);
      margin-bottom: 1rem;
    }

    .pricing-header p {
      font-size: 1.2rem;
      color: var(--neutral-600);
      max-width: 600px;
      margin: 0 auto;
    }

    .pricing-toggle {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 3rem;
      gap: 1rem;
    }

    .billing-switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
    }

    .billing-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--neutral-300);
      transition: .4s;
      border-radius: 34px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background-color: var(--primary);
    }

    input:checked + .slider:before {
      transform: translateX(26px);
    }

    .billing-label {
      font-weight: 600;
      color: var(--neutral-700);
    }

    .billing-label.active {
      color: var(--primary-dark);
    }

    .pricing-badge {
      background: var(--accent);
      color: var(--white);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-left: 0.5rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .pricing-card {
      background: var(--white);
      border-radius: 20px;
      padding: 3rem 2rem;
      box-shadow: var(--shadow-lg);
      border: 3px solid transparent;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .pricing-card.featured {
      border-color: var(--primary);
      transform: scale(1.05);
    }

    .pricing-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .pricing-plan-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--neutral-900);
      margin-bottom: 0.5rem;
    }

    .pricing-description {
      color: var(--neutral-600);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .pricing-amount {
      display: flex;
      align-items: baseline;
      justify-content: center;
      margin-bottom: 0.5rem;
    }

    .pricing-currency {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--neutral-700);
    }

    .pricing-price {
      font-size: 4rem;
      font-weight: 700;
      color: var(--primary-dark);
      line-height: 1;
    }

    .pricing-period {
      font-size: 1.2rem;
      color: var(--neutral-600);
      margin-left: 0.5rem;
    }

    .pricing-note {
      color: var(--neutral-500);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    .pricing-features {
      list-style: none;
      margin: 2rem 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--neutral-100);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .feature-check {
      width: 20px;
      height: 20px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    .feature-unavailable {
      background: var(--neutral-300);
    }

    .pricing-cta {
      width: 100%;
      padding: 1rem 2rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .pricing-cta.primary {
      background: var(--primary);
      color: var(--white);
    }

    .pricing-cta.primary:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }

    .pricing-cta.secondary {
      background: var(--neutral-100);
      color: var(--neutral-700);
      border: 2px solid var(--neutral-300);
    }

    .pricing-cta.secondary:hover {
      background: var(--primary-light);
      border-color: var(--primary);
      color: var(--primary-dark);
    }

    .pricing-popular-badge {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: var(--white);
      padding: 0.5rem 2rem;
      border-radius: 0 0 20px 20px;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .pricing-faq {
      margin-top: 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-faq h3 {
      font-size: 2rem;
      color: var(--neutral-900);
      margin-bottom: 2rem;
      text-align: center;
    }

    .faq-item {
      background: var(--white);
      border-radius: 12px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .faq-question {
      padding: 1.5rem;
      background: var(--primary-ultra-light);
      border: none;
      width: 100%;
      text-align: left;
      font-weight: 600;
      color: var(--neutral-900);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question:hover {
      background: var(--primary-light);
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      color: var(--neutral-700);
      line-height: 1.6;
    }

    .faq-answer.open {
      padding: 1.5rem;
      max-height: 200px;
    }

    .faq-arrow {
      transition: transform 0.3s ease;
    }

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

    .pricing-guarantee {
      background: var(--primary-ultra-light);
      border: 2px solid var(--primary-light);
      border-radius: 16px;
      padding: 2rem;
      margin-top: 3rem;
      text-align: center;
    }

    .pricing-guarantee h4 {
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }

    .pricing-comparison {
      margin-top: 4rem;
    }

    .comparison-table {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      margin-top: 2rem;
    }

    .comparison-header {
      background: var(--primary);
      color: var(--white);
      padding: 1.5rem;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 1rem;
      font-weight: 700;
    }

    .comparison-row {
      padding: 1rem 1.5rem;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 1rem;
      border-bottom: 1px solid var(--neutral-100);
      align-items: center;
    }

    .comparison-row:nth-child(even) {
      background: var(--primary-ultra-light);
    }

    .comparison-feature {
      font-weight: 600;
      color: var(--neutral-900);
    }

    .comparison-check {
      text-align: center;
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
      }

      .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
      }

      .comparison-header,
      .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
      }

      .comparison-feature {
        border-bottom: 1px solid var(--neutral-200);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
      }
      /* Add this to your dashboard CSS */
@media (max-width: 1024px) {
    .user-card {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .user-card > div:last-child {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    #affiliateSearchInput {
        width: 150px !important;
    }
    
    .user-card > div:last-child {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.4;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--neutral-600);
    font-size: 0.85rem;
    line-height: 1.3;
}

#previewLandingUrl {
    background: var(--neutral-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
}
    }