/* ===============================
   ChildMinderPro – Premium Playful Design
   Baby Blue, Pink, Purple - Seamless Flow
================================ */

:root {
  --baby-blue: #93C5FD;
  --soft-pink: #F9A8D4;
  --soft-purple: #C4B5FD;
  --deep-purple: #7C3AED;
  --white: #FFFFFF;
  --text-dark: #1E1B4B;
  --text-soft: #4C4580;
}

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

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

::-webkit-scrollbar-track {
  background: rgba(124, 58, 237, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7C3AED, #9333EA);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9333EA, #A855F7);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #7C3AED rgba(124, 58, 237, 0.1);
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* FULL PAGE ANIMATED GRADIENT BACKGROUND */
.page {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, 
    #E0F2FE 0%, 
    #FCE7F3 25%, 
    #EDE9FE 50%, 
    #DBEAFE 75%, 
    #FDF2F8 100%);
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
}

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

/* Floating decorative shapes */
.page::before,
.page::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.page::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.3) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatBubble 15s ease-in-out infinite;
}

.page::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.25) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation: floatBubble 18s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* USP BANNER */
.usp-banner {
  background: linear-gradient(135deg, var(--deep-purple), #9333EA);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

.usp-banner span {
  font-weight: 800;
}

/* GLASSMORPHISM HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--deep-purple), #9333EA);
  border-bottom: none;
}

.topbar-inner {
  max-width: 100%;
  margin: 0;
  padding: 6px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.brand-text span {
  background: linear-gradient(135deg, var(--deep-purple), var(--soft-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: auto;
  width: 440px;
}

@media (max-width: 900px) {
  .brand-logo img {
    width: 200px;
  }
  .topbar-inner {
    padding: 8px 16px;
  }
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #A855F7 100%) !important;
  color: white !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 
    0 4px 15px rgba(124, 58, 237, 0.4),
    0 8px 25px rgba(147, 51, 234, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

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

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

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(124, 58, 237, 0.5),
    0 16px 40px rgba(147, 51, 234, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  color: white;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, #1F1F2E 0%, #2D2D44 100%);
}

.mobile-nav-header .brand-logo img {
  width: 160px;
  height: auto;
}

.mobile-nav .close-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-nav .close-btn::before,
.mobile-nav .close-btn::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.mobile-nav .close-btn::before {
  transform: rotate(45deg);
}

.mobile-nav .close-btn::after {
  transform: rotate(-45deg);
}

.mobile-nav .close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-links {
  flex: 1;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  font-size: 28px;
  font-weight: 800;
  color: #1F2937;
  padding: 16px 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.mobile-nav-links a .nav-number {
  font-size: 14px;
  font-weight: 400;
  color: #9CA3AF;
}

.mobile-nav-links a:hover {
  color: #7C3AED;
}

.mobile-nav-cta {
  padding: 24px;
  border-top: 1px solid #F3F4F6;
}

.mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1F1F2E 0%, #2D2D44 100%);
  color: white;
  text-align: center;
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.mobile-nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav-cta a svg {
  width: 16px;
  height: 16px;
}

/* HERO SECTION */
.hero-simple {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.hero-simple-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-simple {
    padding: 40px 0 60px;
  }
  .hero-simple-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }
  .hero-simple-text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.hero-simple-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-simple-title span {
  background: linear-gradient(135deg, var(--deep-purple), var(--soft-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 600px) {
  .hero-simple-title { font-size: 36px; }
}

.hero-simple-text {
  font-size: 20px;
  color: var(--text-soft);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-simple-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-simple-buttons { justify-content: center; }
}

.btn-primary-new {
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #A855F7 100%);
  color: white;
  padding: 20px 44px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  box-shadow: 
    0 4px 15px rgba(124, 58, 237, 0.4),
    0 8px 30px rgba(147, 51, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.btn-primary-new:hover::before {
  left: 100%;
}

.btn-primary-new:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(124, 58, 237, 0.5),
    0 16px 50px rgba(147, 51, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary-new {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  color: var(--deep-purple);
  padding: 20px 44px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  border: 2px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-new:hover {
  background: white;
  border-color: var(--deep-purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.hero-simple-image {
  position: relative;
}

.hero-simple-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30, 27, 75, 0.15);
}

/* FEATURES SECTION - No background change, seamless */
.features-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.features-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px;
}

.features-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.features-header p {
  font-size: 18px;
  color: var(--text-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--baby-blue), var(--soft-purple));
}

.feature-icon.pink {
  background: linear-gradient(135deg, var(--soft-pink), var(--soft-purple));
}

.feature-icon.purple {
  background: linear-gradient(135deg, var(--soft-purple), var(--deep-purple));
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* WORKS ANYWHERE SECTION - Seamless */
.works-anywhere-section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  text-align: center;
}

.works-anywhere-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.platform-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12);
}

.platform-pill svg {
  width: 24px;
  height: 24px;
}

/* PRICING SECTION - Seamless */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

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

.pricing-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 18px;
  color: var(--text-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-grid.single-card {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.yearly-discount {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin: 8px auto 16px;
  display: inline-block;
}

.features-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-top: 16px;
}

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .features-columns { 
    grid-template-columns: 1fr 1fr; 
    gap: 16px;
  }
  .pricing-card {
    padding: 28px 24px;
  }
  .pricing-card.featured .price {
    font-size: 48px;
  }
  .yearly-discount {
    margin: 8px auto 16px;
    font-size: 14px;
  }
  .features-section h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .pricing-card li,
  .features-section li {
    font-size: 14px;
    padding: 4px 0;
    gap: 8px;
  }
  .pricing-btn {
    margin-top: 20px;
    padding: 16px 28px;
    font-size: 16px;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #A855F7 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 25px 80px rgba(124, 58, 237, 0.4),
    0 10px 40px rgba(147, 51, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: pricing-shimmer 3s ease-in-out infinite;
}

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

.pricing-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 35px 100px rgba(124, 58, 237, 0.5),
    0 15px 50px rgba(147, 51, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured .price,
.pricing-card.featured .price-period,
.pricing-card.featured li,
.pricing-card.featured h4 {
  color: white;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.price {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-dark);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .price {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-period {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 8px;
  opacity: 0.9;
}

.features-section {
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.features-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.pricing-card.featured .features-section {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.features-section h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card.featured .features-section h4 {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.pricing-card ul,
.features-section ul {
  list-style: none;
  margin: 0;
  text-align: left;
}

.pricing-card li,
.features-section li {
  padding: 3px 0;
  color: var(--text-soft);
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.3;
}

.pricing-card li::before,
.features-section li::before {
  content: '✓';
  color: var(--deep-purple);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured li::before,
.pricing-card.featured .features-section li::before {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured li,
.pricing-card.featured .features-section li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--deep-purple), #9333EA);
  color: white;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8ff 100%);
  color: var(--deep-purple);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.pricing-card.featured .pricing-btn:hover {
  box-shadow: 
    0 15px 45px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* TESTIMONIALS SECTION - Premium Quote Style */
.testimonials-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 8px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 32px;
}

.testimonials-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
}

.testimonials-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #7C3AED, #F9A8D4);
  margin-top: 16px;
  border-radius: 2px;
}

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

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { text-align: center; }
  .testimonials-header::after { margin: 16px auto 0; }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-quote-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.testimonial-quote-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  fill: white;
}

.testimonial-card p {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-source {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--baby-blue), var(--soft-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-soft);
}

/* CTA SECTION - Seamless with accent */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 32px;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--deep-purple), #9333EA, var(--soft-pink));
  border-radius: 32px;
  padding: 60px 40px;
  color: white;
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.3);
}

.cta-box h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #7C3AED;
  padding: 20px 48px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    0 8px 30px rgba(0, 0, 0, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 16px 50px rgba(124, 58, 237, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

/* FOOTER - Sleek & Compact */
.footer {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #A855F7 100%);
  color: white;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

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

.footer-logo {
  height: 96px;
  width: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav {
    justify-content: center;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* Legacy footer support */
.footer-links {
  display: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(20px);
  color: white;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1000;
}

.cookie-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner a {
  color: var(--soft-pink);
}

.cookie-btn {
  background: linear-gradient(135deg, var(--deep-purple), #9333EA);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* HIDE SCROLL FOR FEATURES ON DESKTOP */
.features-scroll {
  overflow: visible;
}

@media (max-width: 600px) {
  .features-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .features-grid {
    display: flex;
    width: max-content;
    gap: 16px;
  }
  .feature-card {
    width: 280px;
    flex-shrink: 0;
  }
}

/* PREMIUM TICKER - Hide on this design */
.premium-ticker { display: none; }
.works-anywhere-section .page-inner { display: none; }

/* PAGE INNER UTILITY */
.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Screen reader only - accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .page {
    animation: none;
    background-size: 100% 100%;
  }
  
  .page::before,
  .page::after {
    animation: none;
  }
  
  .feature-card,
  .pricing-card,
  .platform-pill,
  .btn-primary-new,
  .btn-secondary-new,
  .nav-cta,
  .pricing-btn,
  .cta-btn {
    transition: none;
  }
}

.trust-bar {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(30, 10, 60, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 12px 28px;
}

.trust-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

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

.trust-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.trust-stars {
  display: flex;
  gap: 2px;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 20px;
  }

  .trust-label,
  .trust-text {
    font-size: 13px;
  }

  .trust-avatar-img {
    width: 30px;
    height: 30px;
  }

  .trust-stars svg {
    width: 14px;
    height: 14px;
  }
}
