/* ==========================================================================
   MiniMinds - Official High-Conversion Landing Page Styles
   Built with MiniMinds Theme Design Tokens (Poppins, Indigo #6366F1, Coral #FF7A59, Navy #2B395E)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors from MiniMinds Theme Tokens */
  --color-primary: #6366F1;
  --color-primary-dark: #4F46E5;
  --color-primary-light: #818CF8;
  --color-primary-tint: #EEF2FF;
  --color-coral: #FF7A59;
  --color-coral-dark: #E0694D;
  --color-coral-light: #FF9B80;
  --color-navy: #2B395E;
  --color-navy-dark: #1E293B;
  --color-navy-light: #3A4B73;
  --color-bg: #F8F9FF;
  --color-bg-alt: #F1F4FD;
  --color-card: #FFFFFF;
  --color-text-main: #2B395E;
  --color-text-muted: #5A6987;
  --color-text-subtle: #8B98B2;
  --color-border: #E2E8F0;
  --color-border-light: #EEF2F6;
  --color-green: #34C759;
  --color-green-light: #E8F8EE;
  --color-amber: #F59E0B;
  --color-amber-light: #FEF3C7;
  --color-lavender: #E4E1FE;
  
  /* Typography */
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout & Spacing */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(43, 57, 94, 0.04);
  --shadow-md: 0 8px 20px rgba(43, 57, 94, 0.08);
  --shadow-lg: 0 16px 36px rgba(43, 57, 94, 0.12);
  --shadow-primary: 0 10px 25px rgba(99, 102, 241, 0.35);
  --shadow-coral: 0 10px 25px rgba(255, 122, 89, 0.35);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: var(--font-main);
  border: none;
  background: none;
  cursor: pointer;
}

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.badge-tag.coral {
  background: #FFF1EE;
  color: var(--color-coral);
}

.badge-tag.green {
  background: var(--color-green-light);
  color: var(--color-green);
}

.section-title {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.6;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn-play-store {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: #0F172A;
  color: #FFFFFF;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  min-height: 52px;
  text-align: left;
}

.btn-play-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.35);
  background-color: #1E293B;
}

.btn-play-store svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-play-store .btn-text-small {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  line-height: 1;
}

.btn-play-store .btn-text-large {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.45);
}

.btn-coral {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  box-shadow: 0 12px 28px rgba(255, 122, 89, 0.45);
}

/* ==========================================================================
   1. Announcement Bar & Navigation Header
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #2B395E 0%, #3A4B73 100%);
  color: #FFFFFF;
  font-size: 0.8125rem;
  padding: 0.45rem 1rem;
  text-align: center;
  font-weight: 500;
}

.announcement-bar strong {
  color: #FFD93D;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3125rem;
  font-weight: 800;
  color: var(--color-navy);
}

.brand-logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-download-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  min-height: 42px;
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 4.5rem 0;
  background: radial-gradient(circle at 80% 20%, #EEF2FF 0%, #F8F9FF 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-green);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

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

.hero-description {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-trust-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  font-weight: 500;
}

.hero-trust-notes span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hero Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  perspective: 1000px;
}

.phone-frame {
  background: #1E293B;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 25px 50px -12px rgba(43, 57, 94, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  background: #F8F9FF;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 120px;
  height: 18px;
  background: #1E293B;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.app-screen-preview {
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mockup-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
}

.mockup-greeting {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
}

.mockup-xp-badge {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #D97706;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.mockup-mood-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: 0 4px 12px rgba(43, 57, 94, 0.05);
}

.mockup-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.mockup-mood-emojis {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
}

.mockup-intervention-card {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.25);
}

.mockup-intervention-tag {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.mockup-intervention-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.mockup-tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.mockup-tool-item {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 6px rgba(43, 57, 94, 0.04);
}

/* Floating UI Badges around mockup */
.floating-pill {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  z-index: 20;
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-pill.pill-left {
  top: 15%;
  left: -20px;
  border-left: 4px solid var(--color-coral);
}

.floating-pill.pill-right {
  bottom: 18%;
  right: -20px;
  border-left: 4px solid var(--color-green);
  animation-delay: 2s;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   3. Trust & Reassurance Strip
   ========================================================================== */
.trust-strip {
  background: #FFFFFF;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1.5rem 0;
}

.trust-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-item:nth-child(2) .trust-icon {
  background: #FFF1EE;
  color: var(--color-coral);
}

.trust-item:nth-child(3) .trust-icon {
  background: var(--color-green-light);
  color: var(--color-green);
}

.trust-item:nth-child(4) .trust-icon {
  background: var(--color-amber-light);
  color: var(--color-amber);
}

.trust-text h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.trust-text p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   4. Parent Problem Section
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.problem-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--color-coral);
  opacity: 0.8;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon-wrap {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   5. MiniMinds Solution & Core 4 Pillars
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.pillar-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.pillar-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.pillar-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
  font-size: 0.875rem;
  color: var(--color-navy);
  font-weight: 500;
}

.pillar-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pillar-feature-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-green);
  flex-shrink: 0;
}

/* ==========================================================================
   6. Smart Screen-Time Section (Differentiator)
   ========================================================================== */
.screentime-section {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.screentime-section .section-title {
  color: #FFFFFF;
}

.screentime-section .section-subtitle {
  color: #94A3B8;
}

.screentime-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.screentime-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.screentime-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.screentime-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary-light);
}

.screentime-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.screentime-icon {
  font-size: 1.4rem;
}

.screentime-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}

.screentime-card p {
  font-size: 0.875rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.screentime-overlay-visual {
  background: #2A364F;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.overlay-badge {
  display: inline-block;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.overlay-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.overlay-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.overlay-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.overlay-btn-active {
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
}

.overlay-btn-calm {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   7. Mind Tools & Daily Wellness Grid
   ========================================================================== */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.tool-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tool-emoji {
  font-size: 2rem;
  line-height: 1;
  background: var(--color-bg);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.tool-info h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.tool-info p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   8. Guardian & Parent Controls Section
   ========================================================================== */
.guardian-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.guardian-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.guardian-details h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.guardian-details p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.guardian-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-navy);
  font-weight: 600;
}

.guardian-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.guardian-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  flex-shrink: 0;
}

.guardian-preview-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.preview-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

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

.preview-stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.preview-stat-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* ==========================================================================
   9. App Screenshots / Visual Showcase
   ========================================================================== */
.showcase-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.showcase-item {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  text-align: center;
}

.showcase-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.showcase-item p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   10. FAQ Accordion Section
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  gap: 1rem;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   11. Final High-Impact CTA Section
   ========================================================================== */
.final-cta-section {
  padding: 5rem 0;
  background: radial-gradient(circle at center, #3A4B73 0%, #2B395E 100%);
  color: #FFFFFF;
  text-align: center;
}

.final-cta-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-wrap h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.final-cta-wrap p {
  font-size: 1.0625rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
.site-footer {
  background: #1E293B;
  color: #94A3B8;
  font-size: 0.8125rem;
  padding: 3.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-logo {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #94A3B8;
}

.footer-disclaimer-box strong {
  color: #CBD5E1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   OFFER BANNER SECTION — 24-Hour Limited Time Offer
   ========================================================================== */
.offer-banner-section {
  position: relative;
  background: linear-gradient(135deg, #1a1240 0%, #2B395E 45%, #1E293B 100%);
  overflow: hidden;
  padding: 4rem 0;
}

/* Animated radial glow background blob */
.offer-banner-bg-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(99, 102, 241, 0.35) 0%,
    rgba(255, 122, 89, 0.18) 45%,
    transparent 75%);
  animation: offerGlowPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes offerGlowPulse {
  0%   { opacity: 0.7; transform: translateX(-50%) scale(1); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.12); }
}

.offer-banner-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* ---- LEFT: Copy Side ---- */
.offer-banner-copy {
  color: #FFFFFF;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 122, 89, 0.18);
  border: 1px solid rgba(255, 122, 89, 0.45);
  color: #FF9B80;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.offer-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF7A59;
  animation: offerDotBlink 1.2s ease-in-out infinite;
}

@keyframes offerDotBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 122, 89, 0.7); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255, 122, 89, 0); }
}

/* Sub-heading above the offer title */
.offer-sub-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.offer-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

/* Inline price line directly under the headline */
.offer-inline-price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.offer-inline-original {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #64748B;
  text-decoration: line-through;
  text-decoration-color: #EF4444;
  text-decoration-thickness: 2px;
}

.offer-inline-arrow {
  font-size: 1rem;
  color: #4B5563;
}

.offer-inline-now {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFD93D;
  letter-spacing: -0.01em;
}

.offer-inline-usd {
  font-size: 0.9rem;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: 0;
}

.offer-highlight {
  background: linear-gradient(135deg, #818CF8 0%, #FF9B80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-discount {
  display: inline-block;
  background: linear-gradient(135deg, #FFD93D 0%, #FF7A59 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -0.01em;
  position: relative;
  animation: discountShimmer 3s ease-in-out infinite;
}

@keyframes discountShimmer {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.25) drop-shadow(0 0 8px rgba(255, 211, 61, 0.6)); }
}

.offer-desc {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.offer-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.offer-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #E2E8F0;
}

/* ---- Price Block ---- */
.offer-price-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 211, 61, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}

.offer-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.offer-price-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.offer-price-original {
  font-size: 1rem;
  font-weight: 600;
  color: #64748B;
  text-decoration: line-through;
  text-decoration-color: #EF4444;
  text-decoration-thickness: 2px;
}

.offer-price-original-usd {
  font-size: 0.8125rem;
  font-weight: 500;
}

.offer-price-now {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.offer-price-now-usd {
  font-size: 1rem;
  font-weight: 500;
  color: #94A3B8;
}

.offer-price-badge {
  background: linear-gradient(135deg, #FFD93D 0%, #FF9B80 100%);
  color: #1E293B;
  font-size: 1.125rem;
  font-weight: 900;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(255, 211, 61, 0.45);
  animation: discountShimmer 3s ease-in-out infinite;
}

.offer-price-note {
  font-size: 0.8125rem;
  color: #94A3B8;
}

.offer-price-note strong {
  color: #FFD93D;
}

.perk-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34C759 0%, #22A44C 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.offer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #FF7A59 0%, #E0694D 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 28px rgba(255, 122, 89, 0.45), 0 0 0 0 rgba(255, 122, 89, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: offerCtaPulse 2.5s ease-in-out infinite;
}

.offer-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 122, 89, 0.55);
  animation: none;
}

@keyframes offerCtaPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(255, 122, 89, 0.45), 0 0 0 0 rgba(255, 122, 89, 0.4); }
  50%       { box-shadow: 0 10px 28px rgba(255, 122, 89, 0.45), 0 0 0 10px rgba(255, 122, 89, 0); }
}

/* Apple App Store variant — dark glass style */
.offer-cta-btn-apple {
  background: linear-gradient(135deg, #1C1C1E 0%, #3A3A3C 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(255,255,255, 0.1);
  animation: none;
}

.offer-cta-btn-apple:hover {
  background: linear-gradient(135deg, #2C2C2E 0%, #4A4A4C 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* Offer banner — side-by-side store buttons */
.offer-store-btns {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

@media (min-width: 480px) {
  .offer-store-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Final CTA — side-by-side store buttons */
.final-cta-store-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .final-cta-store-btns {
    flex-direction: row;
    justify-content: center;
  }
}

/* ---- RIGHT: Timer Side ---- */
.offer-timer-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  text-align: center;
}

.offer-timer-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.offer-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  min-width: 76px;
  position: relative;
  overflow: hidden;
}

.countdown-unit::before {
  content: '';
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.countdown-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  transition: transform 0.15s ease;
}

.countdown-unit-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: #818CF8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(129, 140, 248, 0.7);
  line-height: 1;
  margin-bottom: 1.25rem;
  animation: sepBlink 1s step-end infinite;
}

@keyframes sepBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.offer-timer-sub {
  font-size: 0.8125rem;
  color: #64748B;
  margin-bottom: 1.25rem;
}

/* Urgency bar */
.offer-urgency-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1rem;
}

.offer-urgency-fill {
  height: 100%;
  width: 100%; /* JS will shrink this from 100% → 0% over 24h */
  background: linear-gradient(90deg, #6366F1 0%, #FF7A59 100%);
  border-radius: var(--radius-full);
  transition: width 1s linear;
}

.offer-spots {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF9B80;
}

.offer-spots strong {
  color: #FFFFFF;
}

/* ==========================================================================
   13. Sticky Mobile Download CTA Bar
   ========================================================================== */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(43, 57, 94, 0.15);
  padding: 0.75rem 1rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-bar.visible {
  transform: translateY(0);
}

.sticky-app-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sticky-app-info img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
}

.sticky-app-text h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.sticky-app-text p {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

.sticky-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
  min-height: 42px;
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive Breakpoints (Desktop & Tablet)
   ========================================================================== */
@media (min-width: 640px) {
  .trust-items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-slider {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .screentime-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .guardian-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Offer banner: 2-column layout on tablet+ */
  .offer-banner-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .offer-title {
    font-size: 2.5rem;
  }

  .countdown-val {
    font-size: 3rem;
  }

  .countdown-unit {
    min-width: 90px;
    padding: 1rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-cta-group {
    justify-content: flex-start;
  }
  
  .hero-trust-notes {
    justify-content: flex-start;
  }
  
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .sticky-mobile-bar {
    display: none !important;
  }
}
