:root {
  --bg: #09090b;
  --bg-secondary: #18181b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #632cbd;
  --accent-secondary: #8b5cf6;
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-max: 1200px;
}

@media (min-width: 1200px) {
  :root {
    --container-max: 1300px; /* Slightly increased layout width on laptops */
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Effects */
.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent);
  filter: blur(150px);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
.glow-top {
  top: -100px;
  left: -100px;
}
.glow-right {
  top: 30%;
  right: 0;
  transform: translateX(50%);
  background: var(--accent-secondary);
  opacity: 0.1;
}

#app {
  position: relative;
  overflow-x: clip;
  width: 100%;
}

/* =============================
   Navbar
   ============================= */
nav {
  padding: 1.5rem 5%;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  font-family: var(--font-main);
}

.nav-links a:hover {
  color: var(--text-main);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(99, 44, 189, 0.3);
}

.btn-primary:hover {
  background: var(--accent-secondary);
  box-shadow: 0 6px 20px rgba(99, 44, 189, 0.5);
  transform: translateY(-2px);
  color: white;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  text-decoration: none;
}
.logo img {
  width: clamp(32px, 8vw, 44px);
  height: clamp(32px, 8vw, 44px);
  border-radius: 8px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================
   Hero Section
   ============================= */
.hero {
  display: flex;
  flex-direction: column;
  padding: 2rem 5% 6rem;
  max-width: var(--container-max);
  margin: 0 auto;
  flex: 1;
  gap: 4rem;
}

@media (min-width: 992px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .stats-bar {
    max-width: var(--container-max);
  }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.highlight {
  background: linear-gradient(135deg, #c4a1ff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .description {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
}

/* Store Badges */
.hero-actions,
.hero-actions-secondary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-actions-secondary {
  margin-top: 1rem;
}

.store-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.store-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: var(--font-main);
}

.playstore-placeholder-container {
  transition: transform 0.2s ease;
  cursor: pointer;
  display: inline-flex;
}

.playstore-placeholder-container:hover {
  transform: translateY(-2px);
}

.playstore-badge {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
}

/* Custom Store Badges */
.custom-store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  padding: 0 16px;
  gap: 12px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-decoration: none;
}
.custom-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.custom-store-sub {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: -2px;
}
.custom-store-main {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}


.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Story Carousel */
.story-carousel-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 660px;
  border-radius: 36px;
  border: 10px solid #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 44, 189, 0.2);
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.story-progress-bar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
  z-index: 10;
}

.story-progress-segment {
  height: 4px;
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress-fill {
  height: 100%;
  background: #ffffff;
  width: 0%;
  border-radius: 2px;
}

.app-image {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.story-nav-btn {
  position: absolute;
  bottom: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.story-carousel-container:hover .story-nav-btn {
  opacity: 1;
}

.story-nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.story-nav-prev {
  left: 12px;
}

.story-nav-next {
  right: 12px;
}

.story-pause-btn {
  left: 50%;
  transform: translateX(-50%);
}

.story-nav-btn svg {
  width: 18px;
  height: 18px;
}

.story-pause-btn svg {
  width: 16px;
  height: 16px;
}

/* =============================
   Stats Bar
   ============================= */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 3rem clamp(1.5rem, 4vw, 5%);
  max-width: 1000px;
  margin: 0 auto;
  width: calc(100% - 10%);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
}

.stat-value {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.stat-number {
  font-size: inherit;
  font-weight: inherit;
  color: var(--text-main);
  line-height: inherit;
}

.stat-suffix {
  font-size: inherit;
  font-weight: inherit;
  color: var(--accent);
  line-height: inherit;
  text-shadow: 0 0 20px rgba(99, 44, 189, 0.5);
}

.stat-label {
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
  flex-shrink: 0;
}

/* =============================
   Shared Section Styles
   ============================= */
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* =============================
   Features Section
   ============================= */
.features-section {
  padding: 6rem 5%;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.features-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 44, 189, 0.3);
  box-shadow: 0 12px 40px rgba(99, 44, 189, 0.1);
}

.feature-screenshot-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #000;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-screenshot {
  transform: scale(1.04);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* =============================
   Reviews Section
   ============================= */
.reviews-section {
  padding: 6rem 5%;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.reviews-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.review-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.05rem;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-stars {
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
}

/* =============================
   FAQ Section
   ============================= */
.faq-section {
  padding: 6rem 5%;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  text-align: left;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.open {
  border-color: rgba(99, 44, 189, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* =============================
   About / Creator Section
   ============================= */
.about-section {
  padding: 6rem 5%;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.about-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.about-simple {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-profile-simple {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.about-avatar-large {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(99, 44, 189, 0.2);
}

.about-profile-info {
  display: flex;
  flex-direction: column;
}

.about-profile-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.about-role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-bio {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-bio-container {
  position: relative;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

.about-bio-container.expanded {
  max-height: 2000px;
}

.about-bio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, 1) 90%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.about-bio-container.expanded .about-bio-overlay {
  opacity: 0;
}

.about-read-more-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: -0.5rem auto 1.5rem 0;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0.5rem 0;
}

.about-read-more-btn:hover {
  opacity: 0.8;
  transform: translateY(2px);
}

.about-bio strong {
  color: var(--text-main);
  font-weight: 600;
}

.about-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.65rem 1.25rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-main);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(99, 44, 189, 0.3);
}

.about-link-btn:hover {
  background: var(--accent-secondary);
  box-shadow: 0 6px 20px rgba(99, 44, 189, 0.5);
  transform: translateY(-2px);
  color: white;
}

.about-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  transition: all 0.25s ease;
  text-decoration: none;
}

.about-link:hover {
  background: rgba(99, 44, 189, 0.15);
  border-color: rgba(99, 44, 189, 0.4);
  color: var(--accent);
  transform: translateY(-3px);
}

/* =============================
   Footer
   ============================= */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5%;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 5%;
  text-align: center;
}

.footer-bottom p {
  color: rgba(148, 163, 184, 0.5);
  font-size: 0.85rem;
}

/* =============================
   Scroll Fade-in Animations
   ============================= */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   Hero Animations
   ============================= */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .description {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-actions,
.hero-actions-secondary {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-actions-secondary {
  animation-delay: 0.25s;
}

.hero-image {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* =============================
   Responsive — Tablet
   ============================= */
@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 2rem 5% 4rem;
  }
  .hero-content .description {
    margin: 0 auto;
  }
  .hero-actions,
  .hero-actions-secondary {
    justify-content: center;
  }
  .app-image {
    transform: none;
  }
  .app-image:hover {
    transform: none;
  }
  .glow {
    width: 300px;
    height: 300px;
  }
  .story-carousel-container {
    max-width: min(85vw, 340px);
    height: auto;
    aspect-ratio: 9 / 17.5;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }



  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 9, 11, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 99;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-links.mobile-open a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
  }
}

/* =============================
   Responsive — Mobile
   ============================= */
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

}



/* Review Limits and View More Button */
.reviews-grid .review-card {
  display: none;
}
.reviews-grid .review-card:nth-child(-n+6) {
  display: flex;
}
@media (max-width: 768px) {
  .reviews-grid .review-card:nth-child(-n+6) {
    display: none;
  }
  .reviews-grid .review-card:nth-child(-n+4) {
    display: flex;
  }
}

.reviews-grid.expanded .review-card {
  display: flex !important;
}

.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-view-more {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0.5rem 0;
}

.btn-view-more:hover {
  opacity: 0.8;
  transform: translateY(2px);
}

.btn-view-more svg {
  transition: transform 0.2s ease;
}

.btn-view-more.expanded svg {
  transform: rotate(180deg);
}
