/* ===============================
   ChildMinder Pro – FAMLY-INSPIRED
   Clean, modern, playful yet professional
================================ */

:root {
  /* Premium Brand Colors */
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-deeper: #4338CA;
  --primary-light: #EEF2FF;
  --primary-glow: #818CF8;
  
  /* Accent Colors */
  --coral: #FF6B6B;
  --coral-soft: #FCA5A5;
  --mint: #10B981;
  --gold: #F59E0B;
  
  /* Premium Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --cream: #F8FAFC;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Text Colors - Standardized */
  --text: #1e293b;
  --text-soft: #64748b;
  --text-muted: #94a3b8;
  
  /* Premium Gradients */
  --gradient-hero: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
  --gradient-footer: linear-gradient(180deg, #4338CA 0%, #312E81 100%);
  --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-section: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.topbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  backdrop-filter: blur(10px);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}

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

.nav-login {
  color: var(--white) !important;
}

.nav-cta {
  background: var(--white) !important;
  color: var(--primary) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  animation: nav-pulse 2.5s ease-in-out infinite;
}

.nav-cta:hover {
  background: var(--gray-100) !important;
  transform: translateY(-1px);
  animation: none;
}

@keyframes nav-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
  }
}

.btn-pulse,
.hero-actions .btn-primary,
.pricing-card .btn-primary {
  animation: btn-pulse-glow 2s ease-in-out infinite !important;
}

.btn-pulse:hover,
.hero-actions .btn-primary:hover,
.pricing-card .btn-primary:hover {
  animation: none !important;
}

@keyframes btn-pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
    transform: scale(1) !important;
  }
  50% {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6) !important;
    transform: scale(1.03) !important;
  }
}

.brand {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 2px;
}

.brand span,
.logo-pro {
  background: linear-gradient(135deg, #FF6B6B 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand sup {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin-left: 2px;
}

/* Inline Brand Styling - matches logo */
.brand-inline {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-inline .brand-pro {
  background: linear-gradient(135deg, #FF6B6B 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-inline sup {
  font-size: 0.5em;
  color: var(--gray-400);
  margin-left: 1px;
  -webkit-text-fill-color: var(--gray-400);
}

.admin-dot {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-left: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-dot:hover {
  color: var(--coral);
  transform: rotate(90deg);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.top-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.top-links a:hover {
  color: var(--text);
}

.top-links a:last-child {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.top-links a:last-child:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Hero */
.hero {
  padding: 100px 0 120px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 22px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-badge {
  background: var(--white);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.hero-badge::before {
  content: '✓';
  color: var(--mint);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.btn {
  border-radius: 100px;
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
}

.btn-ghost {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-ghost:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  transform: translateY(-2px);
}

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

/* Hero Bullets Bar */
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
  margin: 32px 0 40px;
  max-width: 520px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(99, 102, 241, 0.1);
  justify-content: center;
}

.hero-bullet svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  flex-shrink: 0;
}

/* Trust Bar */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
}

.trust-item-mini svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-items {
    gap: 24px;
  }
  
  .trust-item-mini {
    font-size: 13px;
  }
  
  .trust-item-mini svg {
    width: 20px;
    height: 20px;
  }
}

/* Problem/Solution Section */
.problem-solution {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F5FF 50%, #EDE9FE 100%);
  position: relative;
}

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

.ps-card {
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.ps-problem {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFEFEF 100%);
  border: 2px solid rgba(255, 107, 107, 0.25);
}

.ps-solution {
  background: linear-gradient(135deg, #F5F3FF 0%, #EEF2FF 100%);
  border: 2px solid rgba(99, 102, 241, 0.25);
}

.ps-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ps-problem .ps-icon {
  background: rgba(255, 107, 107, 0.15);
}

.ps-problem .ps-icon svg {
  stroke: #FF6B6B;
}

.ps-solution .ps-icon {
  background: rgba(99, 102, 241, 0.15);
}

.ps-solution .ps-icon svg {
  stroke: #6366F1;
}

.ps-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.ps-card p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Hero Image */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.15;
}

/* Hero Visual */
.hero-visual {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 0 0 1px rgba(0,0,0,0.03),
    0 8px 16px rgba(0,0,0,0.04),
    0 24px 48px rgba(0,0,0,0.08);
  max-width: 440px;
  width: 100%;
  text-align: left;
}

.hero-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.hero-mock-list {
  display: grid;
  gap: 12px;
}

.hero-mock-row {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  border: 1px solid var(--gray-100);
}

.hero-mock-row span:first-child {
  font-weight: 600;
  color: var(--text);
}

.hero-chip {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  background: #D1FAE5;
  color: #065F46;
  font-weight: 600;
}

.hero-chip.absent {
  background: #FEE2E2;
  color: #991B1B;
}

.hero-tagline {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 20px;
  text-align: center;
}

/* Trust Section */
.trust-section {
  background: var(--gray-50);
  padding: 60px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  stroke: var(--primary);
}

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

.trust-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

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

/* Premium Features Section */
.features-premium {
  padding: 120px 0;
  background: linear-gradient(180deg, #EDE9FE 0%, #F8F5FF 50%, #FFFFFF 100%);
}

.features-header-premium {
  text-align: center;
  margin-bottom: 80px;
}

.features-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.features-heading-premium {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.features-subheading {
  font-size: 20px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-premium {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.feature-premium:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
  transform: translateY(-4px);
}

.feature-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.feature-content-premium h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-content-premium p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

.features-cta {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .features-premium {
    padding: 80px 0;
  }
  
  .features-heading-premium {
    font-size: 32px;
  }
  
  .features-subheading {
    font-size: 17px;
  }
  
  .features-grid-premium {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-premium {
    padding: 24px;
    gap: 16px;
  }
  
  .feature-number {
    font-size: 36px;
  }
  
  .feature-content-premium h3 {
    font-size: 18px;
  }
  
  .feature-content-premium p {
    font-size: 15px;
  }
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-soft);
  margin-bottom: 60px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--coral) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* New Feature Cards */
.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card-new {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card-new:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
  transform: translateY(-4px);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-benefit {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

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

.feature-icon-new {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, #E0E7FF 100%);
  flex-shrink: 0;
}

.feature-icon-new svg {
  stroke: var(--primary);
}

.feature-icon-journals {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
}
.feature-icon-journals svg {
  stroke: #059669;
}

.feature-icon-wellbeing {
  background: linear-gradient(135deg, #FEF2F2 0%, #FECACA 100%);
}
.feature-icon-wellbeing svg {
  stroke: #DC2626;
}

.feature-icon-inspection {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}
.feature-icon-inspection svg {
  stroke: #D97706;
}

.feature-icon-business {
  background: linear-gradient(135deg, #F0FDF4 0%, #BBF7D0 100%);
}
.feature-icon-business svg {
  stroke: #16A34A;
}

.feature-icon-frameworks {
  background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 100%);
}
.feature-icon-frameworks svg {
  stroke: #7C3AED;
}

.feature-title-new {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.feature-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-benefit {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}

/* Screenshot Section */
.screenshot-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #FDF4FF 100%);
  border-radius: 32px;
  padding: 60px;
  margin: 40px 0 100px;
  align-items: center;
}

.screenshot-box {
  background: var(--white);
  border-radius: 20px;
  height: 360px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.screenshot-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-text h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.screenshot-text p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}

.screenshot-bullets {
  font-size: 16px;
  color: var(--gray-700);
  list-style: none;
  padding: 0;
}

.screenshot-bullets li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
}

.screenshot-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

/* Pricing - Luxury Edition */
.pricing-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F5FF 50%, #EDE9FE 100%);
}

.pricing-wrap {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.pricing-wrap.pricing-two-col {
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-card {
  background: var(--white);
  border-radius: 32px;
  border: 2px solid var(--gray-200);
  padding: 56px 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-luxury {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFF 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.pricing-card-luxury::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), #818CF8, var(--coral), #FBBF24, var(--primary));
  background-size: 300% 300%;
  border-radius: 34px;
  z-index: -1;
  animation: gradientShift 8s ease infinite;
}

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

.pricing-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 32px 80px rgba(99, 102, 241, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

.pricing-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.pricing-popular svg {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.pricing-header {
  padding-top: 20px;
}

.pricing-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.price-main {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text) 0%, #4B5563 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-main span {
  font-size: 20px;
  font-weight: 500;
  background: none;
  -webkit-text-fill-color: var(--text-soft);
}

.price-note {
  font-size: 15px;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 0;
}

.yearly-deal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 16px 24px;
  margin: 24px 0 32px;
  position: relative;
  overflow: hidden;
}

.yearly-deal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.yearly-badge {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.yearly-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.check-icon svg {
  stroke: white;
  width: 14px;
  height: 14px;
}

.pricing-list {
  font-size: 16px;
  text-align: left;
  margin: 0 auto 36px;
  color: var(--gray-700);
  list-style: none;
  padding: 0;
}

.pricing-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s ease;
}

.pricing-list li:hover {
  padding-left: 8px;
  color: var(--text);
}

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

.btn-pricing {
  width: 100%;
  padding: 20px 32px;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
  border: none;
  box-shadow: 
    0 8px 24px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.btn-pricing::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-pricing:hover::before {
  left: 100%;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 32px rgba(99, 102, 241, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  color: var(--text-soft);
  font-size: 14px;
}

.pricing-guarantee svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

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

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  border-radius: 100px;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  padding: 36px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.faq-q {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.faq-a {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, #EDE9FE 0%, #6366F1 30%, #4338CA 100%);
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content > p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.btn-large {
  padding: 22px 48px;
  font-size: 18px;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cta-note {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* Footer - Premium Design */
.footer {
  background: var(--gradient-footer);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.footer-logo span {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8585 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo sup {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.footer-tagline {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-company {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-company a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-company a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-columns {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom p {
  font-size: 13px;
}

.footer-bottom sup {
  font-size: 8px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-badges span {
  font-size: 11px;
  font-weight: 500;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}

.footer-badges span:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.15);
}

/* Value Section */
.value-section {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
}

.value-heading {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.value-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--mint) 0%, #3BB5A8 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 20px;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-subtitle sup {
  font-size: 10px;
}

/* Updated Trust Section */
.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: left;
}

.trust-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge svg {
  stroke: var(--white);
  width: 40px;
  height: 40px;
}

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

.trust-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.trust-subline {
  font-size: 17px;
  color: var(--text-soft);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 48px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-heading {
    font-size: 40px;
  }
  
  .footer-columns {
    gap: 40px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
  }
  
  .trust-content {
    gap: 24px;
  }
  
  .trust-headline {
    font-size: 20px;
  }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  order: 99;
  margin-left: auto;
}

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  gap: 16px;
}

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

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 32px;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo img {
  display: block;
  max-width: 150px !important;
  height: auto;
}

.mobile-nav .close-btn {
  position: static;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  border-radius: 8px;
}

/* LUXURY MOBILE EXPERIENCE */
@media (max-width: 768px) {
  /* Smooth scrolling momentum */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .topbar-inner {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .topbar-inner .brand img {
    max-width: 180px !important;
    height: auto;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  
  .nav-links {
    gap: 8px;
    flex: 0;
  }
  
  .nav-links a:not(.nav-cta) {
    display: none !important;
  }
  
  .nav-links .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
  }
  
  /* Hero with luxury breathing room */
  .hero {
    padding: 48px 0 56px;
    min-height: auto;
  }
  
  .hero-text {
    padding: 0 8px;
  }
  
  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .hero-subtitle {
    font-size: 16px !important;
    padding: 0 8px;
    margin-bottom: 32px !important;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
  }
  
  /* Generous section spacing */
  .section {
    padding: 64px 0;
  }
  
  .trust-section {
    padding: 48px 0;
  }
  
  .trust-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .trust-item {
    padding: 24px;
  }
  
  .section-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .section-subtitle {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 28px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  /* Pricing with better mobile spacing */
  .pricing-card {
    padding: 40px 24px;
    margin: 0 8px;
  }
  
  .price-main {
    font-size: 44px;
  }
  
  .yearly-deal {
    flex-direction: column;
    gap: 10px;
  }
  
  /* CTA section */
  .cta-section {
    padding: 64px 0;
  }
  
  .cta-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .cta-content > p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .btn-large {
    padding: 18px 32px;
    font-size: 16px;
  }
  
  /* FOOTER - Clean mobile layout */
  .footer {
    padding-top: 48px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 36px;
    padding: 0 0 32px;
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
  }
  
  /* Smaller, elegant logo in footer on mobile */
  .footer-brand .footer-logo img {
    max-width: 160px !important;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .footer-tagline {
    text-align: center;
  }
  
  .footer-company {
    text-align: center;
  }
  
  .footer-brand > div {
    justify-content: center;
  }
  
  .footer-columns {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }
  
  .footer-col {
    text-align: center;
    min-width: 120px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px 0 32px;
  }
  
  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .footer-badges span {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .value-section {
    padding: 36px 0;
  }
  
  .value-heading {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 320px;
  }
  
  .value-item {
    font-size: 15px;
  }
  
  .trust-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .trust-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
  
  .trust-badge svg {
    width: 32px;
    height: 32px;
  }
  
  .trust-headline {
    font-size: 18px;
  }
  
  .trust-subline {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 20px;
  }
  
  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .section-heading {
    font-size: 26px;
  }
  
  .price-main {
    font-size: 40px;
  }
  
}

/* Responsive: Problem/Solution */
@media (max-width: 768px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ps-card {
    padding: 32px 24px;
  }
  
  .problem-solution {
    padding: 60px 0;
  }
}

/* Responsive: New Feature Cards */
@media (max-width: 1024px) {
  .features-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid-new {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card-new {
    padding: 24px;
  }
  
  .feature-header {
    gap: 12px;
  }
  
  .feature-icon-new {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  
  .feature-icon-new svg {
    width: 24px;
    height: 24px;
  }
  
  .feature-title-new {
    font-size: 18px;
  }
  
  .hero-bullets {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 280px;
    margin: 32px auto 40px;
  }
  
  .hero-bullet {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    padding: 10px 16px;
  }
  
  .features-grid-new {
    gap: 20px;
  }
  
  .feature-card-new {
    text-align: left;
  }
  
  .feature-list li {
    font-size: 14px;
    padding-left: 20px;
  }
  
  .feature-list li::before {
    width: 6px;
    height: 6px;
    top: 6px;
  }
  
  .feature-benefit {
    font-size: 13px;
    padding-top: 12px;
  }
}

/* ===============================
   NEW FEATURES HIGHLIGHT SECTION
================================ */
.new-features-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.new-features-section .page-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.new-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.new-features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B6B, #F59E0B);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.new-features-heading {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.new-features-subheading {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 56px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.new-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.new-feature-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFF 100%);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.new-feature-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), #818CF8, var(--coral), #FBBF24, var(--primary));
  background-size: 300% 300%;
  border-radius: 26px;
  z-index: -1;
  animation: gradientShift 8s ease infinite;
}

.new-feature-card::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.new-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(99, 102, 241, 0.25);
}

.new-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.new-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.new-feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.migration-logos,
.parent-portal-features,
.incident-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.migration-logos span,
.parent-portal-features span,
.incident-features span {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-light), #EDE9FE);
  color: var(--primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.postcode-demo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
}

.postcode-example {
  font-family: 'Monaco', 'Consolas', monospace;
  font-weight: 600;
  color: var(--primary);
  background: white;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
}

.postcode-arrow {
  color: #10B981;
  font-weight: 700;
}

.postcode-result {
  color: var(--gray-700);
  font-weight: 500;
}

/* Responsive for new features */
@media (max-width: 900px) {
  .new-features-grid {
    grid-template-columns: 1fr !important;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .new-features-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-inner {
    padding: 0 16px !important;
  }
  
  .new-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 16px;
  }
  
  .new-feature-card {
    padding: 24px 20px;
  }
  
  .new-feature-card h3 {
    font-size: 18px;
  }
  
  .new-feature-card p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .new-features-section {
    padding: 60px 0;
  }
  
  .new-features-heading {
    font-size: 26px;
    padding: 0 16px;
  }
  
  .new-features-subheading {
    font-size: 15px;
    margin-bottom: 32px;
    padding: 0 16px;
  }
  
  .new-features-grid {
    gap: 16px;
  }
  
  .new-feature-card {
    padding: 24px 20px;
  }
  
  .new-feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
}

/* START FREE TRIAL PULSE - Must be at end of file to override all other styles */
.start-trial-pulse {
  animation: start-trial-glow 2s ease-in-out infinite !important;
  animation-fill-mode: both !important;
}

.start-trial-pulse:hover {
  animation: none !important;
}

@keyframes start-trial-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 35px rgba(99, 102, 241, 0.7);
    transform: scale(1.03);
  }
}
