/* ==========================
   VARIABLES & BASE
========================== */
:root {
  --pink: #e50585;
  --pink-light: #ff66b3;
  --pink-glow: rgba(229, 5, 133, 0.25);
  --accent: #00a6c2;
  --blue: #00b3d4;
  --dark: #1d0720;
  --text: #2b1b2e;
  --text-muted: #6b5570;
  --bg: #fef8fc;
  --white: #ffffff;
  --card: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.08);
  --shadow-pink: 0 8px 30px rgba(229, 5, 133, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

/* ==========================
   BLOBS DECORATIFS
========================== */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ffd6ec, #f8b4e0);
  top: -100px;
  right: -100px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #e0c3fc, #d3b0ff);
  bottom: 30%;
  left: -150px;
}
.blob-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #b8e8f0, #c9f0ff);
  bottom: -50px;
  right: 10%;
}

/* ==========================
   NAVBAR
========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s, padding 0.3s;
  border-bottom: 1px solid rgba(229, 5, 133, 0.06);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 8%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo {
  height: 34px;
  width: auto;
  transition: transform 0.3s;
}
.logo:hover {
  transform: rotate(-8deg) scale(1.05);
}
.logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.3s;
}
.nav-right a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-right a:not(.btn-nav):hover::after {
  width: 100%;
}
.nav-right a:hover {
  color: var(--pink);
}

.btn-nav {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white) !important;
  padding: 11px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-pink);
  transition: all 0.3s;
  border: none;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(229, 5, 133, 0.35);
}

/* ==========================
   HAMBURGER
========================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background: var(--pink);
  border-radius: 5px;
  transition: all 0.3s;
}
.menu-toggle.open .bar:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ==========================
   HERO
========================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 8% 100px;
  text-align: left;
  min-height: 85vh;
}

.hero-content {
  max-width: 560px;
}

.badge {
  display: inline-block;
  background: rgba(229, 5, 133, 0.08);
  border: 1px solid rgba(229, 5, 133, 0.15);
  color: var(--pink);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.text-gradient {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient.pink  { background-image: linear-gradient(135deg, #ff2c8e, #ff4dd8); }
.text-gradient.pink-soft { background-image: linear-gradient(135deg, #e50585, #ff66b3); }
.text-gradient.blue  { background-image: linear-gradient(135deg, #00b3d4, #6ff1ff); }

.hero p {
  font-size: 1.08rem;
  margin-bottom: 32px;
  color: var(--text-muted);
  line-height: 1.8;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary, .btn-secondary {
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  padding: 16px 34px;
  box-shadow: var(--shadow-pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(229, 5, 133, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  border: 2px solid rgba(229, 5, 133, 0.3);
  color: var(--pink);
  padding: 14px 30px;
  background: transparent;
}
.btn-secondary:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-2px);
}

/* RATINGS */
.ratings {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.rating-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.rating-icon {
  font-size: 1.6rem;
}
.rating-card h2 {
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 800;
  line-height: 1;
}
.rating-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* HERO IMAGE */
.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  gap: 0;
  margin-top: 20px;
}

.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(229, 5, 133, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  bottom: 20%;
  right: 10%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.mascot-hero {
  width: 260px !important;
  height: auto;
  margin-right: -70px;
  margin-bottom: 5px;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.hero-image .main-scr {
  width: 310px;
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: none;
  background: transparent !important;
}

/* ==========================
   SECTIONS COMMUNES
========================== */
section {
  text-align: center;
  padding: 100px 8%;
  position: relative;
}

.section-header {
  margin-bottom: 55px;
}

.section-tag {
  display: inline-block;
  background: rgba(229, 5, 133, 0.07);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

section h2,
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ==========================
   FEATURES
========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.feature {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px 24px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(229, 5, 133, 0.15);
  border-color: rgba(229, 5, 133, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff0f7, #fce4f3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================
   TEAM
========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  display: block;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px 24px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(229, 5, 133, 0.15);
}

.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(229, 5, 133, 0.15);
  transition: border-color 0.3s;
}
.team-member:hover .team-avatar {
  border-color: var(--pink);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--pink);
  transition: opacity 0.3s;
}
.team-member:hover h3 { opacity: 0.7; }

.team-member .role {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.team-member p:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================
   SCREENSHOTS
========================== */
.screens {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.screens img {
  width: 210px;
  height: auto;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.screens img:hover {
  transform: scale(1.06) translateY(-8px);
}
.screens img.screen-center {
  width: 240px;
  transform: translateY(-10px);
}
.screens img.screen-center:hover {
  transform: scale(1.06) translateY(-18px);
}

/* ==========================
   FAQ
========================== */
#faq {
  padding-bottom: 60px;
}

.faq-list {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: rgba(229, 5, 133, 0.15);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(229, 5, 133, 0.2);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--pink);
  font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  color: var(--pink);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: left;
  animation: faq-open 0.3s ease;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================
   FEEDBACK
========================== */
#feedback {
  padding-bottom: 40px;
}

.form-external-link {
  color: var(--pink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s;
}
.form-external-link:hover { opacity: 0.7; }
.form-external-link .lucide { width: 0.95em; height: 0.95em; }

.form-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.form-wrapper iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
}

#toggle-form {
  cursor: pointer;
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 14px;
  margin-bottom: 12px;
}

/* ==========================
   CONFIANCE
========================== */
#trust { padding-top: 70px; }

.trust-grid {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  padding: 30px 24px;
  border: 1px solid rgba(229, 5, 133, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(229, 5, 133, 0.1), rgba(0, 166, 194, 0.1));
  color: var(--pink);
}

.trust-icon .lucide { width: 24px; height: 24px; }
.trust-card h3 { margin-bottom: 8px; color: var(--dark); font-size: 1rem; }
.trust-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ==========================
   DOWNLOAD
========================== */
#download {
  padding: 80px 8% 120px;
}

.download-card {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229, 5, 133, 0.08);
  overflow: hidden;
}

.download-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(229, 5, 133, 0.12), transparent 70%);
  pointer-events: none;
}

.download-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin: 12px 0 8px;
}

.download-subtitle {
  max-width: 410px;
  margin: 0 auto 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.download-btn-wrapper {
  display: flex;
  justify-content: center;
}

.btn-playstore {
  display: inline-block;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.14));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
}
.btn-playstore:hover {
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.2));
}
.btn-playstore:active {
  transform: translateY(-1px) scale(1);
}

.btn-playstore img {
  display: block;
  width: 200px;
  max-width: 78vw;
  height: auto;
}

/* Mode sombre : léger halo clair pour détacher le badge noir du fond sombre */
[data-theme="dark"] .btn-playstore {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3)) drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5));
}
[data-theme="dark"] .btn-playstore:hover {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.4)) drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
}

.download-version {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ==========================
   FOOTER
========================== */
footer {
  background: linear-gradient(135deg, var(--pink), #ff6ab5);
  color: var(--white);
  padding: 50px 8% 35px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand img {
  height: 30px;
  width: auto;
}
.footer-brand span {
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.3s;
  margin-bottom: 18px;
}
.footer-social:hover { opacity: 1; }
.footer-social img {
  width: 22px;
  height: 22px;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-legal {
  margin-bottom: 20px;
}
.footer-legal a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer-legal a:hover { opacity: 1; text-decoration: underline; }
.footer-dot {
  margin: 0 8px;
  opacity: 0.4;
  font-size: 0.8rem;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ==========================
   POPUPS
========================== */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s;
}
.popup.popup-visible {
  background: rgba(0, 0, 0, 0.5);
}

.popup-content {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.popup.popup-visible .popup-content {
  transform: scale(1);
  opacity: 1;
}

.popup-content h2 {
  color: var(--pink);
  margin-bottom: 18px;
  text-align: center;
  font-size: 1.4rem;
}
.popup-content h3 {
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.popup-content p {
  line-height: 1.7;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.popup-content a {
  color: var(--pink);
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.6rem;
  color: var(--pink);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  transition: background 0.3s;
}
.close-btn:hover {
  background: rgba(229, 5, 133, 0.08);
}

/* ==========================
   ANIMATIONS
========================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.15); opacity: 0.5; }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
.anim-fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
}
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .nav-right {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    padding: 20px 0 30px;
    transform: translateY(-250%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }
  .nav-right.active { transform: translateY(0); }
  .nav-right a {
    font-size: 1.05rem;
    padding: 12px 20px;
    text-align: center;
  }
  .nav-right a:not(.btn-nav)::after { display: none; }
  .btn-nav {
    margin: 10px 20px 0;
    padding: 14px 24px;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 6% 70px;
    min-height: auto;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .buttons { justify-content: center; }
  .ratings { justify-content: center; }

  .hero-image {
    flex-direction: row;
    align-items: flex-end;
  }
  .mascot-hero {
    width: 120px !important;
    margin-right: -30px;
  }
  .hero-image .main-scr { width: 220px; }

  .phone-glow { width: 200px; height: 200px; }

  section { padding: 70px 6%; }
  section h2,
  .section-header h2 { font-size: 1.7rem; }

  .screens img { width: 170px; }
  .screens img.screen-center { width: 190px; }

  .blob-1 { width: 300px; height: 300px; }
  .blob-2 { width: 250px; height: 250px; }
  .blob-3 { width: 200px; height: 200px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.7rem; }
  .ratings { flex-direction: column; gap: 12px; align-items: center; }
  .rating-card { width: 100%; max-width: 260px; }
  .features-grid { grid-template-columns: 1fr; }
  .screens img { width: 140px; }
  .screens img.screen-center { width: 160px; }
  .download-card { padding: 40px 24px; }
  .form-wrapper iframe { height: 700px; }
  .faq-item summary { font-size: 0.9rem; padding: 16px 18px; }
  .faq-item p { padding: 0 18px 16px; font-size: 0.88rem; }
}
