@import './theme.css';

/* LandingPage.css - Bright Blue & Colorful Child-Friendly Edition - Fully Responsive */

/* ============================================================
   PAGE BASE
   ============================================================ */
.landing-page {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --highlight-color: #fbbf24;
  --pop-yellow: #fde047;
  --pop-green: #4ade80;
  --pop-purple: #c084fc;
  --pop-pink: #f472b6;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #eef2ff 50%, #f5f3ff 75%, #fdf2f8 100%);
  min-height: 100vh;
  font-family: var(--body-font, 'Nunito'), sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Kid-friendly pattern overlay */
.landing-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#6366f1 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.landing-page::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s ease-in-out infinite;
}

.landing-page::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite reverse;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, -30px); }
}
@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.7; transform: scale(1.1) rotate(180deg); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes squish {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.96); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(99, 102, 241, 0.2); }
  50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeInFast {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }

/* ============================================================
   GLOBAL RESETS
   ============================================================ */
* { box-sizing: border-box; }
.landing-page, .section, .hero-section { max-width: 100vw; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center  { text-align: center !important; }
.text-green   { color: #10b981 !important; }
.text-blue    { color: #3b82f6 !important; }
.text-red     { color: #ef4444 !important; }
.text-orange  { color: #f97316 !important; }
.text-gray    { color: #94a3b8 !important; }
.color-light  { color: #94a3b8; }
.color-white  { color: white !important; }
.mt-3         { margin-top: 3rem; }
.mb-2         { margin-bottom: 2rem; }

/* ============================================================
   SECTION WRAPPER (JAGGED & WAVY TRANSITIONS)
   ============================================================ */
.section {
  padding: 6rem 1rem 4rem;
  position: relative;
  border-radius: 40px;
  margin-top: -30px;
  z-index: 1;
}
@media (min-width: 768px)  { .section { padding: 7rem 1.5rem 5rem; border-radius: 60px; margin-top: -40px; } }
@media (min-width: 1024px) { .section { padding: 8rem 2rem 6rem; border-radius: 80px; margin-top: -50px; } }

.section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,165.3C672,139,768,117,864,128C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  z-index: 0;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  z-index: 2;
}
.section:nth-child(odd) {
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
  z-index: 3;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
}
@media (min-width: 768px) { .section-container { padding: 0 1.5rem; } }

.section-header {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px)  { .section-header { margin-bottom: 3rem; } }
@media (min-width: 1024px) { .section-header { margin-bottom: 3.5rem; } }

.section-header .hero-subtitle-top {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #ff5722;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.section-header h2 {
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #ff007f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  width: 100%;
}

.section-header p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #475569;
  font-weight: 600;
  display: block;
  text-align: center;
  width: 100%;
  margin: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  overflow: visible;
  padding: 8rem 1rem 12rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #eef2ff 100%);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  z-index: 10;
}
@media (min-width: 768px)  { .hero-section { padding: 6rem 1.5rem 10rem; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; } }
@media (min-width: 1024px) { .hero-section { padding: 8rem 2rem 12rem; } }

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
}
@media (min-width: 768px) { .hero-container { padding: 0 1.5rem; } }

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle-top {
  color: #ff007f;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
}

.hero-section h1 {
  font-family: var(--heading-font) !important;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ff007f 0%, #8b5cf6 50%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: center;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.text-highlight { color: #ff5722; font-weight: 900; }

.hero-description {
  color: #334155;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

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

.hero-trust-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 900;
  border: 3px solid var(--highlight-color);
  color: #1e293b;
  box-shadow: 0 6px 15px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
}
.trust-badge:hover {
  transform: scale(1.1) rotate(2deg);
  background: var(--pop-yellow);
}
.trust-badge svg {
  width: 24px;
  height: 24px;
}

.hero-image-large-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 -10px 40px rgba(255,255,255,0.8);
}

/* ============================================================
   BUTTONS (Rounded, 3D/Glossy)
   ============================================================ */
.btn-join-primary {
  background: linear-gradient(135deg, var(--pop-yellow) 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 1.2rem 2.8rem;
  border-radius: 30px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 
    0 10px 0 #d97706, 
    0 20px 30px rgba(245, 158, 11, 0.4),
    inset 0 4px 0 rgba(255,255,255,0.6);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-size: 1.25rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  top: 0;
}
.btn-join-primary:hover { 
  transform: translateY(-6px) scale(1.05); 
  box-shadow: 
    0 16px 0 #d97706, 
    0 25px 40px rgba(245, 158, 11, 0.5),
    inset 0 4px 0 rgba(255,255,255,0.8);
  animation: glow 1.5s infinite;
}
.btn-join-primary:active {
  transform: translateY(8px) scale(0.95);
  box-shadow: 
    0 2px 0 #d97706, 
    0 5px 10px rgba(245, 158, 11, 0.4),
    inset 0 2px 0 rgba(255,255,255,0.2);
}

.btn-signin-secondary {
  background: linear-gradient(135deg, var(--pop-purple) 0%, #9333ea 100%);
  color: white;
  padding: 1.2rem 2.8rem;
  border-radius: 30px;
  font-weight: 900;
  text-decoration: none;
  border: none;
  box-shadow: 
    0 10px 0 #7e22ce, 
    0 20px 30px rgba(147, 51, 234, 0.3),
    inset 0 4px 0 rgba(255,255,255,0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.25rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}
.btn-signin-secondary:hover { 
  transform: translateY(-6px) scale(1.05); 
  box-shadow: 
    0 16px 0 #7e22ce, 
    0 25px 40px rgba(147, 51, 234, 0.4),
    inset 0 4px 0 rgba(255,255,255,0.6);
}
.btn-signin-secondary:active {
  transform: translateY(8px) scale(0.95);
  box-shadow: 
    0 2px 0 #7e22ce, 
    0 5px 10px rgba(147, 51, 234, 0.3),
    inset 0 2px 0 rgba(255,255,255,0.2);
}

/* ============================================================
   ACTION PREVIEW SECTION
   ============================================================ */
.action-preview-section { 
  background: transparent; 
  padding: 6rem 0; 
  position: relative;
  z-index: 15;
}
.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.preview-tab {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 0.8rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.preview-tab.active { background: #0ea5e9; color: white; border-color: #0ea5e9; }

.browser-mockup {
  background: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.browser-header { background: #e2e8f0; padding: 10px; display: flex; }
.browser-dots   { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }
.browser-content {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  line-height: 0;
}
.preview-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.fade-in-fast { animation: fadeInFast 0.3s ease-in; }

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison-section { padding: 5rem 0; background: #fafafa; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } }

.comparison-column { display: flex; flex-direction: column; }

.comparison-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   COMPARISON CARD — FIXED: removed min-height, reduced padding
   ============================================================ */
.comparison-card {
  background: white;
  padding: 1rem 1.25rem;        /* was 1.5rem — reduced to cut top/bottom space */
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;                 /* was 1rem */
  align-items: flex-start;
  flex: 1 1 0;
  min-height: unset;            /* was 110px — that was forcing blank space below content */
}
.card-problem  { border-left: 4px solid #ef4444; box-shadow: 0 4px 6px rgba(239,68,68,0.05); }
.card-solution { border-left: 4px solid #10b981; box-shadow: 0 4px 6px rgba(16,185,129,0.05); background: #f0fdf4; }

.comparison-icon-wrap {
  flex-shrink: 0;
  margin-top: 0.1rem;           /* was 0.2rem */
}

.comparison-card h4 {
  margin: 0 0 0.375rem 0;       /* was 0.5rem */
  font-size: 1.05rem;
}

.comparison-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* Mobile: tighten further */
@media (max-width: 768px) {
  .comparison-card {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
    min-height: unset;
  }
  .comparison-card h4 {
    font-size: 0.975rem;
    margin-bottom: 0.25rem;
  }
  .comparison-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .comparison-icon-wrap {
    margin-top: 0;
  }
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.feature-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(59, 130, 246, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 768px) { .feature-card { padding: 2.5rem 2rem; } }

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.18), 0 4px 12px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.centered-card {
  align-items: center !important;
  text-align: center !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  justify-content: center !important;
}

.feature-card h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1rem 0;
  text-align: center;
  width: 100%;
}
.feature-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 500;
  margin: 0;
  text-align: center;
  width: 100%;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.5rem;
  color: #fff;
  margin: 0 0 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 768px) { .feature-icon { width: 5rem; height: 5rem; } }

.centered-card .feature-icon { margin-left: auto !important; margin-right: auto !important; }

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 1.5rem;
  background: inherit;
  filter: blur(15px);
  opacity: 0.6;
  z-index: -1;
}
.feature-card:hover .feature-icon { transform: scale(1.2) rotate(-5deg); }

.feature-icon.purple   { background: linear-gradient(135deg, #8b5cf6, #a78bfa); box-shadow: 0 10px 30px rgba(139,92,246,0.5); }
.feature-icon.green    { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 10px 30px rgba(16,185,129,0.5); }
.feature-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.feature-icon.pink     { background: linear-gradient(135deg, #ec4899, #f472b6); box-shadow: 0 10px 30px rgba(236,72,153,0.5); }
.feature-icon.yellow   { background: linear-gradient(135deg, #f59e0b, #fbbf24); box-shadow: 0 10px 30px rgba(245,158,11,0.5); }
.feature-icon.blue     { background: linear-gradient(135deg, #3b82f6, #60a5fa); box-shadow: 0 10px 30px rgba(59,130,246,0.5); }
.feature-icon.indigo   { background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 10px 30px rgba(99,102,241,0.5); }
.feature-icon.red      { background: linear-gradient(135deg, #ef4444, #f87171); box-shadow: 0 10px 30px rgba(239,68,68,0.5); }

/* ============================================================
   NUMBERS SECTION
   ============================================================ */
.numbers-section { 
  background: #1e293b !important; 
  padding: 5rem 0; 
  color: white !important; 
  clip-path: none !important;
  margin: 0 !important;
  position: relative;
  z-index: 10;
}

.numbers-subtitle {
  color: #38bdf8 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.numbers-heading {
  color: white !important;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.numbers-grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) { 
  .numbers-grid-top { 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem;
  } 
}
@media (max-width: 480px) {
  .numbers-grid-top {
    grid-template-columns: 1fr;
  }
}

.number-card {
  background: #334155 !important;
  padding: 2rem 1rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .number-card {
    padding: 1.5rem 1rem;
  }
}
.number-card:hover { transform: translateY(-5px); }
.number-card h3 { font-size: 2.5rem; margin: 0 0 0.5rem 0; color: white !important; font-weight: 800; }
.number-card p  { margin: 0; color: #94a3b8 !important; font-size: 0.95rem; font-weight: 500; }
.large-number-card { 
  margin-bottom: 2.5rem; 
  background: #273549 !important; 
  border: 1px solid rgba(255,255,255,0.08) !important; 
  padding: 3rem 1.5rem; 
}
@media (max-width: 768px) {
  .large-number-card {
    padding: 2rem 1rem;
  }
  .large-number-card h3 {
    font-size: 2.5rem !important;
  }
}

.numbers-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.numbers-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #cbd5e1 !important; font-weight: 500; }

.btn-join-cyan {
  background: linear-gradient(to right, #0ea5e9, #06b6d4) !important;
  border-radius: 9999px !important;
  color: white !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4) !important;
  padding: 1rem 2.5rem !important;
  display: inline-block;
  transition: all 0.3s ease !important;
}
.btn-join-cyan:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.5) !important;
}

/* ============================================================
   TESTIMONIALS GALLERY
   ============================================================ */
.testimonials-gallery {
  width: 100%;
  position: relative;
}

.testimonials-gallery-track {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  animation: slideIn 0.3s ease-out;
}
@media (min-width: 768px) {
  .testimonials-gallery-track {
    display: grid;
  }
}

.testimonials-gallery-track-mobile {
  display: block;
  animation: slideIn 0.3s ease-out;
}
@media (min-width: 768px) {
  .testimonials-gallery-track-mobile {
    display: none;
  }
}

.testimonial-slide {
  flex-shrink: 0;
}

.testimonials-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.gallery-nav-btn:hover {
  background: #0ea5e9;
  color: white;
  border-color: #0ea5e9;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
  transform: scale(1.05);
}

.gallery-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.gallery-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.gallery-dot.active {
  background: #0ea5e9;
  width: 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}
.gallery-dot:hover:not(.active) {
  background: #94a3b8;
  transform: scale(1.2);
}

.testimonial-card {
  align-items: center !important;
  text-align: center !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  height: 100%;
}
.testimonial-card .stars-row { justify-content: center; margin-bottom: 1rem; margin-top: 0; }
.testimonial-quote  { font-style: italic; margin-bottom: 1.5rem !important; text-align: center !important; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.testimonial-author-info { text-align: left; }
.testimonial-author-name { font-weight: 600; color: #1e293b; font-size: 0.9375rem; }
.testimonial-author-role { font-size: 0.875rem; color: #64748b; }

.stars-row { display: flex; gap: 0.375rem; margin-top: 1.5rem; }
.star-icon {
  width: clamp(1.25rem, 3vw, 1.75rem);
  height: clamp(1.25rem, 3vw, 1.75rem);
  color: #facc15;
  fill: #facc15;
  filter: drop-shadow(0 2px 6px rgba(250, 204, 21, 0.4));
  animation: sparkle 3s ease-in-out infinite;
}
.star-icon:nth-child(2) { animation-delay: 0.2s; }
.star-icon:nth-child(3) { animation-delay: 0.4s; }
.star-icon:nth-child(4) { animation-delay: 0.6s; }
.star-icon:nth-child(5) { animation-delay: 0.8s; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  white-space: nowrap;
  border: 2px solid rgba(59, 130, 246, 0.15);
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
}

.hero-badge.avatar-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  font-weight: 700;
  padding: 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  border: 3px solid #fff;
  flex-shrink: 0;
}
@media (min-width: 768px) { .hero-badge.avatar-badge { width: 3.5rem; height: 3.5rem; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: stretch;
  }
}

.pricing-card {
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) { .pricing-card { padding: 3rem 2.5rem; } }

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
}

.pricing-card.free {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
  border: 3px solid rgba(59, 130, 246, 0.2);
  color: #000;
  backdrop-filter: blur(10px);
}
.pricing-card.premium {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #1d4ed8);
  background-size: 200% 200%;
  color: #fff;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35), 0 5px 15px rgba(59, 130, 246, 0.2);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #facc15, #fbbf24);
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: bounce-gentle 2s ease-in-out infinite;
}
@media (min-width: 768px) { .popular-badge { top: 1.5rem; right: 1.5rem; } }

.pricing-card h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.pricing-card.premium h3 { color: white !important; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }

.pricing-card .price {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}
.pricing-card .price span {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  opacity: 0.85;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem;
  text-align: left;
  flex-grow: 1;
}
.pricing-card ul li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 500;
}

.pricing-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-top: 0;
  padding: 1.125rem 2rem;
  border-radius: 9999px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.pricing-card.free .pricing-cta-btn {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.pricing-card.free .pricing-cta-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.pricing-card.premium .pricing-cta-btn {
  background: #fff;
  color: #2563eb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.pricing-card.premium .pricing-cta-btn:hover {
  background: #dbeafe;
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  --footer-bg: linear-gradient(135deg, #0c1844, #1e3a8a, #1e40af);
  --footer-text: #fff;
  --footer-link: #dbeafe;
  --footer-border: rgba(255,255,255,0.2);
  
  background: var(--footer-bg);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--footer-text);
  padding: 3rem 1rem 2rem;
  box-shadow: 0 -10px 40px rgba(37, 99, 235, 0.2);
}
@media (min-width: 768px) { .footer { padding: 4rem 1.5rem 2.5rem; } }

.footer-container { max-width: 1280px; margin: 0 auto; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }

.footer h4     { font-size: clamp(1rem, 2.5vw, 1.125rem); font-weight: 800; margin-bottom: 1.25rem; color: var(--footer-text); }
.footer ul     { list-style: none; padding: 0; margin: 0; }
.footer ul li  { margin-bottom: 0.75rem; }
.footer a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 500;
  display: inline-block;
}
.footer a:hover { color: var(--footer-text); transform: translateX(4px); }

.footer-bottom {
  text-align: center;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  color: var(--footer-link);
  padding-top: 2.5rem;
  border-top: 2px solid var(--footer-border);
  font-weight: 600;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 800;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
@media (min-width: 640px)  { .footer-logo-img { height: 3rem; } }
@media (min-width: 1024px) { .footer-logo-img { height: 3.5rem; } }

/* ============================================================
   NAVBAR LANDING LINKS
   ============================================================ */
.navbar-landing-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) { .navbar-landing-links { display: flex; } }

.navbar-landing-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.navbar-landing-links a:hover { background: rgba(124,58,237,0.08); color: #5b21b6; }

.navbar-mobile-landing-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0.5rem;
}
.navbar-mobile-landing-links a {
  padding: 0.625rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.navbar-mobile-landing-links a:hover { background: rgba(124,58,237,0.08); }

/* ============================================================
   SMALL SCREEN OVERRIDES
   ============================================================ */
@media (max-width: 360px) {
  .hero-badge   { padding: 0.5rem 1rem; font-size: 0.8125rem; }
  .feature-card { padding: 1.5rem 1.25rem; }
  .pricing-card { padding: 2rem 1.5rem; }
}

@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .pricing-card:hover { transform: none; }
  .feature-card:active,
  .pricing-card:active { transform: translateY(-4px) scale(1.01); }
}