/* ===========================
   SALOMO LANDING PAGE STYLES
   =========================== */

/* --- Font Loading --- */
@font-face {
  font-family: 'BalsamiqSans';
  src: url('../fonts/BalsamiqSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BalsamiqSans';
  src: url('../fonts/BalsamiqSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --color-navy: #0a024b;
  --color-navy-light: #110453;
  --color-pink: #E870C9;
  --color-purple: #AC00FF;
  --color-pink-light: #FFA1CF;
  --color-pink-soft: #F8BAC5;
  --color-white: #ffffff;
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-08: rgba(255, 255, 255, 0.08);
  --color-white-60: rgba(255, 255, 255, 0.6);

  --gradient-cta: linear-gradient(135deg, #E870C9, #FFA1CF, #F8BAC5);
  --gradient-soft: linear-gradient(135deg, #E870C9, #FFA1CF, #F8BAC5);
  --gradient-hero: linear-gradient(180deg, #0a024b 0%, #0d0356 40%, #110466 70%, #0a024b 100%);

  --font-main: 'BalsamiqSans', 'Comic Sans MS', cursive, sans-serif;
  --container-width: 1200px;
  --section-padding: 100px 0;
  --border-radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-navy);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ===========================
   LOADING OVERLAY
   =========================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.loading-overlay::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(172, 0, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.loading-overlay::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 112, 201, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.loading-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.loading-overlay.hidden {
  display: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: -80px;
}

.loading-content img {
  max-width: 600px;
  max-height: 600px;
}

.loading-text {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  min-height: 4rem;
}

.loading-text::after {
  content: '|';
  -webkit-text-fill-color: var(--color-pink);
  animation: blink-cursor 0.6s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
}

.loading-text.typing-done::after {
  display: none;
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 2, 75, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Left side: language toggle */
.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  display: flex;
  background: var(--color-white-08);
  border-radius: 20px;
  padding: 3px;
  border: 1px solid var(--color-white-10);
}

.lang-toggle a {
  padding: 4px 12px;
  border-radius: 17px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
  color: var(--color-white-60);
}

.lang-toggle a.active {
  background: var(--gradient-cta);
  color: var(--color-white);
}

.lang-toggle a:hover:not(.active) {
  color: var(--color-white);
}

/* Nav links (split left and right of center logo) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-white-60);
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

/* Center logo in navbar */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -30px;
}

.nav-center img {
  height: 40px;
  width: auto;
}

/* Right side: CTA button */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  padding: 8px 22px;
  background: var(--gradient-cta);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 112, 201, 0.4);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 2, 75, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}

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

.nav-mobile a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--color-pink);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  padding: 100px 20px 40px;
  background: var(--gradient-hero);
}

/* Starfield */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 160px 20px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 200px 60px, rgba(255,255,255,0.3), transparent);
  background-size: 220px 100px;
  animation: twinkle 4s ease-in-out infinite alternate;
}

.stars-2 {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 50px 50px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 100px 30px, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 180px 90px, rgba(255,255,255,0.5), transparent);
  background-size: 300px 150px;
  animation: twinkle 6s ease-in-out infinite alternate-reverse;
}

@keyframes twinkle {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* (Shooting stars removed) */

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(172, 0, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 112, 201, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Moon */
.hero-moon {
  position: absolute;
  top: 60px;
  right: 30px;
  width: 200px;
  height: auto;
  opacity: 0.85;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 100px;
  height: auto;
  margin: 0 auto 24px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-white-60);
  max-width: 550px;
  margin: 16px auto 6px;
  line-height: 1.7;
  text-align: center;
}

/* Hero Owl Section with Speech Bubble */
.hero-owl-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: -10px auto 0;
  max-width: 960px;
}

.hero-owl-img {
  width: 500px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 30px rgba(232, 112, 201, 0.15));
  margin-top: -80px;
  margin-bottom: -60px;
}

.speech-bubble {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px 32px;
  max-width: 440px;
  opacity: 0;
  transform: translateY(-30px) scale(0.9);
  animation: bubbleDropIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 40px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid rgba(255, 255, 255, 0.12);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 41px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 13px solid rgba(255, 255, 255, 0.06);
}

.speech-bubble p {
  font-size: 1.15rem;
  color: var(--color-white-60);
  line-height: 1.75;
  min-height: 1.75em;
}

.speech-bubble p::after {
  content: '|';
  color: var(--color-pink);
  animation: blink-cursor 0.6s step-end infinite;
  font-weight: 300;
  margin-left: 1px;
}

.speech-bubble p.typing-done::after {
  display: none;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.speech-bubble strong {
  color: var(--color-pink);
  -webkit-text-fill-color: var(--color-pink);
}

@keyframes bubbleDropIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}

.store-button {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 112, 201, 0.3);
}

.store-button img {
  height: 50px;
  width: auto;
}

/* ===========================
   SECTION SHARED STYLES
   =========================== */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-white-60);
  max-width: 500px;
  margin: 0 auto 60px;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
  background: var(--color-navy);
}

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

.feature-card {
  background: var(--color-white-08);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius);
  padding: 36px 26px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--color-white-60);
  line-height: 1.6;
}

/* Feature Showcase (image + text side by side) */
.feature-showcase {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

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

.feature-showcase.reverse {
  flex-direction: row-reverse;
}

.feature-showcase-text {
  flex: 1;
}

.feature-showcase-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-showcase-text p {
  font-size: 1.05rem;
  color: var(--color-white-60);
  line-height: 1.8;
}

.feature-showcase-image {
  flex-shrink: 0;
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-navy) 100%);
}

.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--color-navy);
  border: 1px solid rgba(232, 112, 201, 0.3);
  border-radius: var(--border-radius);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-soft);
}

.pricing-badge {
  display: inline-block;
  background: #D4A047;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-plan {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-old {
  font-size: 1rem;
  color: var(--color-white-60);
  text-decoration: line-through;
}

.pricing-current {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--color-white-60);
}

.pricing-trial {
  font-size: 0.95rem;
  color: var(--color-pink);
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--color-white-10);
  margin: 24px 0;
}

.pricing-features-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-white);
  padding: 10px 0;
}

.pricing-features .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-pink);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient-cta);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 47, 190, 0.4);
}

/* ===========================
   SCREENSHOTS SECTION
   =========================== */
.screenshots {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-navy) 100%);
}

.screenshots-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 20px 0;
  flex: 1;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
}

/* Feature images — clean, no phone frame */
.feature-img {
  width: 260px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Slide-in animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.screenshot-label {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--color-white-60);
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-white-10);
  background: var(--color-white-08);
  color: var(--color-white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gradient-cta);
  transform: scale(1.1);
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials {
  background: var(--color-navy);
}

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

.testimonial-card {
  background: var(--color-white-08);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius);
  padding: 32px 26px;
  text-align: center;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-white-60);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-pink);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-white-10);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1.05rem;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-pink);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-pink);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-white-60);
  line-height: 1.7;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  padding: 80px 0;
  background: var(--color-navy-light);
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 36px;
}

.cta-banner .store-button:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #060130;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 50px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--color-white-60);
  font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-white-60);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-pink);
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white-08);
  border: 1px solid var(--color-white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-cta);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-white-10);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-white-60);
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid items */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* ===========================
   RESPONSIVE — TABLET (1024px)
   =========================== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-moon {
    width: 150px;
    top: 80px;
  }
}

/* ===========================
   RESPONSIVE — TABLET SMALL (768px)
   =========================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links,
  .nav-cta,
  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-center {
    position: static;
    transform: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-owl-img {
    width: 340px;
    margin-top: -60px;
    margin-bottom: -50px;
  }

  .hero-owl-section {
    flex-direction: column;
    gap: 0px;
    margin: -20px auto 0;
  }

  .speech-bubble {
    margin-top: -20px;
  }

  .hero-buttons {
    margin-top: 16px;
  }

  .speech-bubble::before,
  .speech-bubble::after {
    display: none;
  }

  .hero-moon {
    width: 120px;
    top: 70px;
    right: 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-showcase {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .feature-showcase.reverse {
    flex-direction: column;
  }

  .feature-img {
    width: 220px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .feature-img {
    width: 200px;
  }
}

/* ===========================
   RESPONSIVE — MOBILE (480px)
   =========================== */
@media (max-width: 480px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero {
    padding: 70px 16px 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin: 10px auto 4px;
  }

  .hero-owl-section {
    gap: 0px;
    margin: -16px auto 0;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 8px;
    margin: 20px 0 0;
  }

  .hero-buttons .store-button svg {
    width: 145px;
    height: 44px;
  }

  .hero-moon {
    width: 90px;
    top: 70px;
    right: 5px;
    opacity: 0.6;
  }

  .hero-owl-img {
    width: 300px;
    margin-top: -100px;
    margin-bottom: -70px;
  }

  .speech-bubble {
    padding: 16px 18px;
    max-width: 320px;
    margin-top: -30px;
  }

  .speech-bubble p {
    font-size: 0.95rem;
  }

  .loading-content img {
    max-width: 350px;
    max-height: 350px;
  }

  .loading-text {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .feature-img {
    width: 180px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .legal-page {
    padding: 100px 16px 40px;
  }

  .legal-page h1 {
    font-size: 1.6rem;
  }
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  color: var(--color-white-60);
  line-height: 1.8;
}

.legal-page h1 {
  color: var(--color-white);
  margin-bottom: 8px;
  font-size: 2.2rem;
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page h2 {
  color: var(--color-white);
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.legal-page h3 {
  color: var(--color-white);
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.legal-page h4 {
  color: var(--color-pink);
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-page p {
  margin: 10px 0;
}

.legal-page ul {
  margin: 10px 0 10px 24px;
  list-style: disc;
}

.legal-page li {
  margin: 6px 0;
}

.legal-page a {
  color: var(--color-pink);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--color-pink-light);
}

.legal-page .legal-date {
  color: var(--color-white-60);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
