/* LittleLeaps Website Styles - Playful & Vibrant */
:root {
  --primary: #4A9E7F;
  --primary-dark: #3B8A6D;
  --primary-light: #7CC5A8;
  --primary-pale: #E0F5EC;
  --accent: #F4845F;
  --accent-dark: #E06B45;
  --accent-light: #FDBBA3;
  --accent-pale: #FFF0E8;
  --lavender: #B8A9E8;
  --lavender-light: #DDD4F5;
  --lavender-pale: #F3F0FF;
  --sky: #6CC3D5;
  --sky-light: #A8DFE8;
  --sky-pale: #E4F7FA;
  --sunshine: #FFD166;
  --sunshine-light: #FFE4A0;
  --sunshine-pale: #FFF8E6;
  --rose: #F2889B;
  --rose-light: #FACBD4;
  --rose-pale: #FFF0F3;
  --background: #FFFBF7;
  --text-dark: #2A2D35;
  --text-light: #6B7280;
  --card-bg: #FFFFFF;
  --border: #EDE9E4;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(237, 233, 228, 0.6);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(74, 158, 127, 0.25);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  padding: 140px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--accent-pale) 35%, var(--lavender-pale) 65%, var(--background) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.3) 0%, rgba(255, 209, 102, 0.05) 100%);
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(184, 169, 232, 0.3) 0%, rgba(184, 169, 232, 0.05) 100%);
  top: 15%;
  right: 12%;
  animation-delay: 1s;
}

.hero-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(244, 132, 95, 0.25) 0%, rgba(244, 132, 95, 0.05) 100%);
  top: 55%;
  left: 5%;
  animation-delay: 2s;
}

.hero-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(108, 195, 213, 0.25) 0%, rgba(108, 195, 213, 0.05) 100%);
  top: 50%;
  right: 6%;
  animation-delay: 3s;
}

.hero-shape:nth-child(5) {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(242, 136, 155, 0.3) 0%, rgba(242, 136, 155, 0.05) 100%);
  top: 35%;
  left: 3%;
  animation-delay: 1.5s;
}

.hero-shape:nth-child(6) {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 158, 127, 0.25) 0%, rgba(74, 158, 127, 0.05) 100%);
  top: 30%;
  right: 4%;
  animation-delay: 4s;
}

.hero-star {
  position: absolute;
  pointer-events: none;
  animation: twinkle 3s ease-in-out infinite;
}

.hero-star::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--sunshine);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-star:nth-child(7) { top: 12%; left: 20%; animation-delay: 0.5s; }
.hero-star:nth-child(8) { top: 20%; right: 22%; animation-delay: 1.8s; }
.hero-star:nth-child(9) { top: 60%; left: 15%; animation-delay: 2.5s; }
.hero-star:nth-child(10) { top: 18%; right: 35%; animation-delay: 0.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--rose) 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(244, 132, 95, 0.35);
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}

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

.hero p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(74, 158, 127, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(74, 158, 127, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Hero Screenshots */
.hero-screenshots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 50px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-screenshot {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-screenshot-center {
  width: 260px;
  z-index: 2;
}

.hero-screenshot-side {
  width: 210px;
  opacity: 0.85;
  transform: scale(0.9);
}

.hero-screenshot-side:first-child {
  transform: scale(0.9) rotate(-3deg);
}

.hero-screenshot-side:last-child {
  transform: scale(0.9) rotate(3deg);
}

.hero-screenshot:hover {
  transform: scale(1.02) translateY(-8px);
  opacity: 1;
}

.hero-screenshot-side:first-child:hover {
  transform: scale(0.95) rotate(-1deg) translateY(-8px);
}

.hero-screenshot-side:last-child:hover {
  transform: scale(0.95) rotate(1deg) translateY(-8px);
}

/* Trust Strip */
.trust-strip {
  padding: 50px 24px;
  text-align: center;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Showcase Sections */
.showcase {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.showcase-alt {
  background: linear-gradient(180deg, var(--background) 0%, var(--rose-pale) 30%, var(--accent-pale) 70%, var(--background) 100%);
}

.showcase:nth-of-type(odd):not(.showcase-alt) {
  background: linear-gradient(180deg, var(--background) 0%, var(--primary-pale) 30%, var(--sky-pale) 70%, var(--background) 100%);
}

.showcase-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-reverse {
  direction: rtl;
}

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

.showcase-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.showcase-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.text-accent {
  color: var(--accent);
}

.text-primary {
  color: var(--primary);
}

.showcase-text p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-features {
  list-style: none;
}

.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.showcase-features li svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.showcase-features li span {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Showcase Phones */
.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.showcase-phone {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  max-width: 300px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-phone:hover {
  transform: translateY(-8px) scale(1.02);
}

.showcase-phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* Double phone layout */
.showcase-visual-double {
  position: relative;
  min-height: 500px;
}

.showcase-visual-double .showcase-phone-back {
  position: absolute;
  right: 5%;
  top: 10%;
  max-width: 240px;
  transform: rotate(3deg);
  z-index: 1;
  opacity: 0.9;
}

.showcase-visual-double .showcase-phone-front {
  position: relative;
  left: 5%;
  max-width: 270px;
  z-index: 2;
  transform: rotate(-2deg);
}

.showcase-visual-double .showcase-phone-back:hover {
  transform: rotate(1deg) translateY(-8px) scale(1.02);
  opacity: 1;
  z-index: 3;
}

.showcase-visual-double .showcase-phone-front:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.05);
}

/* Pricing Section */
.pricing {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, white 0%, var(--primary-pale) 100%);
  box-shadow: 0 16px 50px rgba(74, 158, 127, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(74, 158, 127, 0.35);
  white-space: nowrap;
}

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

.pricing-price {
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

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

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* About Section */
.about {
  padding: 100px 24px;
  background: linear-gradient(180deg, white 0%, var(--sunshine-pale) 50%, var(--accent-pale) 100%);
  position: relative;
  overflow: hidden;
}

.about-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.about-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(244, 132, 95, 0.15) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.about-shape:nth-child(2) {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(184, 169, 232, 0.15) 0%, transparent 70%);
  bottom: 30%;
  left: 8%;
  animation-delay: 3s;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.about-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2A2D35 0%, #1a1d22 100%);
  color: white;
  padding: 70px 24px 30px;
  position: relative;
  overflow: hidden;
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--primary-light);
}

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

/* Legal Pages */
.legal-page {
  padding-top: 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content .highlight {
  background: var(--accent-pale);
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
  margin: 24px 0;
}

.legal-content .contact-box {
  background: var(--primary-pale);
  padding: 24px;
  border-radius: 16px;
  margin-top: 40px;
}

.legal-content .contact-box a {
  color: var(--primary);
}

/* FAQ Section */
.faq-section {
  margin: 24px 0 40px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 6px 20px rgba(74, 158, 127, 0.1);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
}

.faq-item a {
  color: var(--primary);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 24px 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-screenshots {
    gap: 10px;
    margin-top: 36px;
  }

  .hero-screenshot-center {
    width: 180px;
  }

  .hero-screenshot-side {
    width: 140px;
  }

  .showcase {
    padding: 60px 24px;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-reverse {
    direction: ltr;
  }

  .showcase-text h2 {
    font-size: 28px;
  }

  .showcase-visual {
    order: -1;
  }

  .showcase-phone {
    max-width: 240px;
  }

  .showcase-visual-double {
    min-height: 400px;
  }

  .showcase-visual-double .showcase-phone-back {
    max-width: 180px;
  }

  .showcase-visual-double .showcase-phone-front {
    max-width: 210px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .trust-items {
    gap: 24px;
  }

  .trust-number {
    font-size: 28px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-column ul li {
    margin-bottom: 0;
  }

  .hero-shape:nth-child(1) { width: 70px; height: 70px; }
  .hero-shape:nth-child(2) { width: 50px; height: 50px; }
  .hero-shape:nth-child(4) { width: 60px; height: 60px; }
}
