/* Custom Styles for Digital Mala Landing Page */

:root {
  --bg-color: #FAF7F2;
  --surface-color: #FFFFFF;
  --primary-color: #2D2A29;
  --accent-color: #C99512;
  --accent-gradient: linear-gradient(135deg, #C99512 0%, #EAA81A 100%);
  --gold-glow: 0 4px 24px rgba(201, 149, 18, 0.25);
  --soft-shadow: 0 10px 30px rgba(45, 42, 41, 0.05);
  --card-shadow: 0 2px 8px rgba(45, 42, 41, 0.04), 0 8px 24px rgba(45, 42, 41, 0.06);
  --border-color: #EAE5DB;
  --text-secondary: #7D7770;
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* 8px Spacing System */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;
}

/* Base Resets & Global Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

html, body {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--bg-color);
  color: var(--primary-color);
  font-family: var(--font-body);
  overflow-x: hidden;
  box-sizing: border-box;
}

html.drawer-open,
html.drawer-open body {
  overflow: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-secondary);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

button {
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: all 0.3s ease;
}

/* Accessible focus rings */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background-color: rgba(201, 149, 18, 0.2);
  color: var(--primary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--space-12) 0;
}

/* Background Mandala Pattern Overlay */
.mandala-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 0 C63 15 57 15 60 30 C57 45 63 45 60 60 C57 75 63 75 60 90 C57 105 63 105 60 120' stroke='%23C99512' stroke-width='0.4' fill='none' opacity='0.04'/%3E%3Cpath d='M0 60 C15 63 15 57 30 60 C45 57 45 63 60 60 C75 57 75 63 90 60 C105 57 105 63 120 60' stroke='%23C99512' stroke-width='0.4' fill='none' opacity='0.04'/%3E%3Ccircle cx='60' cy='60' r='10' stroke='%23C99512' stroke-width='0.4' fill='none' opacity='0.04'/%3E%3Ccircle cx='60' cy='60' r='25' stroke='%23C99512' stroke-width='0.4' fill='none' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Sticky Navigation Glassmorphism */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.navbar-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  opacity: 0.8;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background: var(--accent-gradient);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--gold-glow);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 149, 18, 0.35);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 7s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(201, 149, 18, 0.1) 0%, rgba(201, 149, 18, 0.05) 100%);
  border: 1px solid rgba(201, 149, 18, 0.25);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.play-store-btn.hero-play-btn {
  background: var(--accent-gradient);
  border: none;
  padding: 16px 32px;
  color: white;
  box-shadow: 0 8px 30px rgba(201, 149, 18, 0.3);
  backdrop-filter: none;
  margin-bottom: 40px;
}

.play-store-btn.hero-play-btn:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(201, 149, 18, 0.45);
  transform: translateY(-3px);
}

.play-store-btn.hero-play-btn .play-btn-label {
  color: rgba(255, 255, 255, 0.75);
}

.play-store-btn.hero-play-btn .play-btn-brand {
  color: white;
}

.play-store-btn.hero-play-btn svg:first-child {
  color: white;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 520px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px 0;
  box-shadow: var(--card-shadow);
}

.trust-item {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  border-right: 1px solid var(--border-color);
  text-align: center;
  gap: 4px;
}

.trust-item:first-child {
  padding-left: 16px;
}

.trust-item:last-child {
  border-right: none;
  padding-right: 16px;
}

.trust-value {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.hero-mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Unified High-End Device Mockup (Apple/Google Style Bezel-less Display) */
.phone-mockup {
  --mockup-w: 280px;
  --mockup-h: 570px;
  position: relative;
  width: var(--mockup-w);
  height: var(--mockup-h);
  background-color: #161412;
  border-radius: 42px;
  padding: 10px 10px 11px 10px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.22),
    0 30px 65px rgba(45, 42, 41, 0.16),
    inset 0 0 2px 1px rgba(255, 255, 255, 0.15);
  border: 2px solid #2e2824;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  z-index: 2;
}



/* Crisp screen boundaries */
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FAF7F2;
  border-radius: 32px;
  overflow: hidden;
}

/* Premium screen reflections */
.phone-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
  z-index: 99;
  border-radius: 32px;
}

/* Image scaling and translation to hide the baked-in OS status bars */
/* Applied only to single-image screens (hero, cta). */
.phone-screen img:not(.phone-screen-stack-img) {
  width: 100%;
  height: calc(100% + 36px);
  object-fit: cover;
  transform: translateY(-36px);
  display: block;
}

.hero-mockup-container .phone-mockup {
  --mockup-w: 280px;
  --mockup-h: 570px;
}

.hero-mockup-container .phone-mockup:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 
    0 35px 65px rgba(201, 149, 18, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    var(--gold-glow);
}

.mockup-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 149, 18, 0.15) 0%, rgba(201, 149, 18, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.lotus-decor-left, .lotus-decor-right {
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.lotus-decor-left {
  left: -100px;
  bottom: 10%;
  width: 280px;
}

.lotus-decor-right {
  right: -80px;
  top: 15%;
  width: 320px;
}

/* Feature Cards Section */
.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-title-wrap h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-title-wrap p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Gold decorative underline on section titles */
.section-title-wrap h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* Alternate section background for visual rhythm */
.section-alt-bg {
  background-color: var(--surface-color) !important;
}

.section-tinted-bg {
  background-color: rgba(201, 149, 18, 0.035) !important;
}

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

.feature-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 149, 18, 0.45);
  box-shadow: 0 4px 12px rgba(45, 42, 41, 0.04), 0 20px 48px rgba(201, 149, 18, 0.08);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(201, 149, 18, 0.1);
  color: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 149, 18, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background-color: rgba(201, 149, 18, 0.16);
  transform: scale(1.08);
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }
.feature-card:nth-child(5) { animation-delay: 0.25s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }
.feature-card:nth-child(7) { animation-delay: 0.35s; }
.feature-card:nth-child(8) { animation-delay: 0.4s; }

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* How It Works Flow */
.how-it-works-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 720px;
  margin: 0 auto;
}

.hiw-step {
  position: relative;
}

.hiw-card {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-5) var(--space-6);
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hiw-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hiw-card:hover {
  transform: translateX(8px);
  border-color: rgba(201, 149, 18, 0.4);
  box-shadow: 0 8px 24px rgba(45, 42, 41, 0.06), 0 20px 48px rgba(201, 149, 18, 0.1);
}

.hiw-card:hover::before {
  opacity: 1;
}

/* Number badge column */
.hiw-number-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  width: 56px;
  position: relative;
}

.hiw-num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: -0.01em;
}

.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.hiw-connector-line {
  width: 2px;
  height: 100%;
  min-height: 60px;
  background: linear-gradient(180deg, var(--accent-color) 0%, rgba(201, 149, 18, 0.3) 100%);
  border-radius: 1px;
}

.hiw-connector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 8px rgba(201, 149, 18, 0.5);
}

/* Icon circle */
.hiw-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(201, 149, 18, 0.08);
  border: 1px solid rgba(201, 149, 18, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-card:hover .hiw-icon-wrap {
  background: rgba(201, 149, 18, 0.14);
  border-color: rgba(201, 149, 18, 0.35);
  transform: scale(1.06) rotate(2deg);
  box-shadow: var(--gold-glow);
}

/* Content */
.hiw-content {
  flex: 1;
  min-width: 0;
}

.hiw-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}

.hiw-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== Changelog / Release Notes ===== */
.changelog-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 40px;
}

.changelog-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color) 0%, rgba(201, 149, 18, 0.15) 100%);
  border-radius: 2px;
}

.changelog-entry {
  position: relative;
  margin-bottom: 28px;
}

.changelog-entry:last-child {
  margin-bottom: 0;
}

.changelog-marker {
  position: absolute;
  left: -40px;
  top: 24px;
  width: 32px;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.changelog-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent-color), 0 2px 8px rgba(201, 149, 18, 0.25);
}

.changelog-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(45, 42, 41, 0.03);
}

.changelog-card:hover {
  border-color: rgba(201, 149, 18, 0.25);
  box-shadow: 0 4px 16px rgba(201, 149, 18, 0.08);
  transform: translateX(4px);
}

.changelog-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.changelog-version-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

.changelog-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.changelog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  background: rgba(201, 149, 18, 0.1);
  padding: 2px 10px;
  border-radius: 12px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.changelog-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.changelog-list li:last-child {
  margin-bottom: 0;
}

.changelog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.5;
}

.changelog-entry.initial .changelog-dot {
  width: 18px;
  height: 18px;
  background: var(--accent-gradient);
  box-shadow: 0 0 0 3px white, 0 0 0 5px var(--accent-color), 0 2px 12px rgba(201, 149, 18, 0.35);
}

.changelog-entry.initial .changelog-card {
  border-color: rgba(201, 149, 18, 0.3);
  background: linear-gradient(135deg, rgba(201, 149, 18, 0.03) 0%, var(--surface-color) 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .hiw-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
  }
  
  .hiw-number-badge {
    flex-direction: row;
    width: auto;
    gap: var(--space-4);
    padding-right: var(--space-2);
  }
  
  .hiw-connector {
    display: none;
  }
  
  .hiw-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  
  .hiw-title {
    font-size: 1.1rem;
  }
}

/* Why Digital Mala Table & Comparison */
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.comparison-box {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.comparison-box-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.comparison-marker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(201, 149, 18, 0.08);
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.comparison-item p {
  font-size: 0.9rem;
}

/* ─── Screenshots Section ─── */
#screenshots {
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 20% 0%, rgba(201, 149, 18, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(201, 149, 18, 0.05) 0%, transparent 55%),
    var(--bg-color);
  overflow: hidden;
}

.screenshots-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 280px) auto minmax(220px, 300px);
  gap: 40px 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* Left tab list */
.screenshots-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.screenshots-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.screenshots-tab:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--border-color);
  color: var(--primary-color);
}

.screenshots-tab.active {
  background: var(--surface-color);
  border-color: rgba(201, 149, 18, 0.35);
  color: var(--primary-color);
  box-shadow: var(--card-shadow);
}

.screenshots-tab-num {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.55;
  min-width: 22px;
  transition: opacity 0.25s ease;
}

.screenshots-tab.active .screenshots-tab-num {
  opacity: 1;
}

.screenshots-tab-label {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Center stage */
.screenshots-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.screenshots-stage-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 149, 18, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Premium Phone Mockup - matches hero quality */
.screenshots-frame {
  --mockup-w: 270px;
  --mockup-h: 550px;
  position: relative;
  width: var(--mockup-w);
  height: var(--mockup-h);
  background-color: #161412;
  border-radius: 44px;
  padding: 10px 10px 11px 10px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.25),
    0 35px 70px rgba(45, 42, 41, 0.18),
    inset 0 0 2px 1px rgba(255, 255, 255, 0.12);
  border: 2px solid #2e2824;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.screenshots-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 149, 18, 0.5);
  box-shadow:
    0 28px 55px rgba(201, 149, 18, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Crisp screen boundaries - clean, no notch/camera cutout */
.screenshots-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FAF7F2;
  border-radius: 34px;
  overflow: hidden;
}

/* Premium screen reflections */
.screenshots-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
  z-index: 99;
  border-radius: 34px;
}

/* Image scales to fill screen, translating up to hide OS status bars baked into screenshots */
.screenshots-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: top center;
  transform: translateY(-40px);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.screenshots-img.active {
  opacity: 1;
  z-index: 2;
}

.screenshots-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--soft-shadow);
  z-index: 3;
  transition: all 0.2s ease;
}

.screenshots-arrow:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: var(--gold-glow);
}

.screenshots-arrow-prev {
  left: -20px;
}

.screenshots-arrow-next {
  right: -20px;
}

.screenshots-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 260px;
}

.screenshots-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 149, 18, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screenshots-dot.active {
  width: 20px;
  border-radius: 8px;
  background: var(--accent-color);
  box-shadow: 0 0 8px rgba(201, 149, 18, 0.4);
}

/* Right caption panel */
.screenshots-caption {
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

.screenshots-caption-num {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.screenshots-caption-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.screenshots-caption-desc {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.screenshots-caption-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* Reviews Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.review-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px 2px 0 0;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 149, 18, 0.3);
  box-shadow: 
    0 4px 12px rgba(45, 42, 41, 0.04),
    0 24px 48px rgba(201, 149, 18, 0.1);
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-stars {
  color: var(--accent-color);
  margin-bottom: 16px;
  font-size: 1rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.review-text::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.35;
  font-style: normal;
  font-family: var(--font-title);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-gradient {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, #EAA81A 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(201, 149, 18, 0.15);
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-role {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 2px;
}

/* FAQ Accordion */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(201, 149, 18, 0.4);
}

.faq-question-btn {
  width: 100%;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  text-align: left;
  gap: 16px;
}

.faq-question-btn .faq-question-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: rgba(201, 149, 18, 0.08);
  border: 1px solid rgba(201, 149, 18, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background-color: rgba(201, 149, 18, 0.15);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  overflow: hidden;
  padding: 0 28px;
}

.faq-answer-content {
  overflow: hidden;
  min-height: 0;
  transition: visibility 0.4s;
  visibility: hidden;
}

.faq-answer p {
  font-size: 0.97rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 28px;
}

.faq-item.open .faq-answer-content {
  visibility: visible;
}

/* Download CTA Banner - Premium */
.cta-banner {
  background: linear-gradient(135deg, #F5F0E8 0%, #FAF7F2 100%);
  color: var(--primary-color);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid var(--border-color);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 149, 18, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 149, 18, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .mandala-bg {
  opacity: 0.04;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.cta-content {
  max-width: 520px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(201, 149, 18, 0.25);
  animation: ctaBadgeFloat 3s ease-in-out infinite;
}

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

.cta-content h2 {
  color: var(--primary-color);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cta-content h2 span {
  color: var(--accent-color);
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Trust indicators */
.cta-trust-row {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-trust-value {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.1;
}

.cta-trust-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Play Store Button - Premium Light */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px 24px;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
}

.play-store-btn:hover {
  border-color: rgba(201, 149, 18, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), var(--gold-glow);
}

.play-store-btn svg:first-child {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.play-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.play-btn-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.play-btn-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.play-store-btn svg:last-child {
  margin-left: 8px;
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.play-store-btn:hover svg:last-child {
  color: var(--accent-color);
  transform: translateX(4px);
}

/* Right: Phone Mockup */
.cta-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-phone-mockup {
  position: relative;
  --mockup-w: 280px;
  --mockup-h: 570px;
  width: var(--mockup-w);
  height: var(--mockup-h);
  background: linear-gradient(180deg, #161412 0%, #0f0d0c 100%);
  border-radius: 44px;
  padding: 10px 10px 11px 10px;
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border: 2px solid #2e2824;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: ctaPhoneFloat 6s ease-in-out infinite;
}

@keyframes ctaPhoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

.cta-phone-mockup:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(201, 149, 18, 0.5);
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201, 149, 18, 0.2),
    0 0 60px rgba(201, 149, 18, 0.15);
}

/* Side button */
.cta-phone-mockup::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 64px;
  background: linear-gradient(180deg, #2e2824 0%, #3d3630 50%, #2e2824 100%);
  border-radius: 0 4px 4px 0;
  z-index: 10;
  pointer-events: none;
}

.cta-phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #FAF7F2;
}

.cta-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
}

.cta-phone-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 30%, transparent 55%);
  pointer-events: none;
  z-index: 99;
  border-radius: 34px;
}

.cta-phone-screen img {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: top center;
  transform: translateY(-40px);
  display: block;
}

/* Glow behind phone */
.cta-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 149, 18, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: ctaGlowPulse 4s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .cta-banner {
    padding: 50px 30px;
    border-radius: 24px;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .cta-content {
    max-width: 100%;
  }
  
  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-trust-row {
    justify-content: center;
    gap: 24px;
  }
  
  .play-store-btn {
    margin: 0 auto;
  }
  
  .cta-phone-mockup {
    --mockup-w: 240px;
    --mockup-h: 490px;
  }
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 40px 20px;
  }
  
  .cta-trust-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .cta-phone-mockup {
    --mockup-w: 220px;
    --mockup-h: 450px;
  }
}

/* Footer styling */
.footer {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links-col h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Hamburger mobile menu button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  z-index: 1001;
  border-radius: 8px;
}

/* Mobile overlay backdrop */
.mobile-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 42, 41, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  animation: overlayFadeIn 0.25s ease;
  border: none;
  padding: 0;
  cursor: pointer;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-color);
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  z-index: 999;
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-color);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-link {
  font-size: 1.15rem;
  font-weight: 600;
}

.mobile-drawer .nav-link::after {
  display: none;
}

.mobile-drawer .nav-btn {
  margin-top: auto;
  text-align: center;
}

/* Footer logo link */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--primary-color);
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.4rem;
}

.footer-logo:hover h3 {
  color: var(--accent-color);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-title-wrap h2 {
    font-size: 2.5rem;
  }
  .cta-content h2 {
    font-size: 2.5rem;
  }
  /* Removed carousel nav styles */
}

@media (max-width: 1100px) {
  .screenshots-showcase {
    grid-template-columns: 220px auto 240px;
    gap: 28px 32px;
  }

  .screenshots-frame {
    width: 230px;
  }

  .screenshots-caption {
    padding: 24px;
  }

  .screenshots-caption-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 900px) {
  .screenshots-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
  }

  .screenshots-stage {
    order: -2;
  }

  .screenshots-caption {
    order: -1;
  }

  .screenshots-frame {
    width: min(240px, 62vw);
  }

  .screenshots-arrow-prev {
    left: -8px;
  }

  .screenshots-arrow-next {
    right: -8px;
  }

  .screenshots-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .screenshots-tabs::-webkit-scrollbar {
    display: none;
  }

  .screenshots-tab {
    flex-shrink: 0;
    width: auto;
    padding: 10px 16px;
    gap: 8px;
  }

  .screenshots-tab-num {
    min-width: auto;
  }

  .screenshots-caption {
    padding: 24px;
    text-align: center;
  }

  .screenshots-caption-hint {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-mockup-container {
    order: -1;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .play-store-btn.hero-play-btn {
    margin-bottom: 30px;
  }
  .trust-indicators {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
    justify-items: center;
  }
  .trust-item {
    border-right: none;
    padding: 0 8px;
    text-align: center;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .timeline::after {
    display: none;
  }
  .timeline-step:hover {
    transform: translateY(-4px);
  }
  .comparison-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .cta-phone-mockup {
    --mockup-w: 230px;
    --mockup-h: 470px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  .hero-title {
    font-size: 2.4rem;
  }
  .section-title-wrap h2 {
    font-size: 2rem;
  }
  .section-title-wrap {
    margin-bottom: 48px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .cta-banner {
    padding: 36px 24px;
    border-radius: 20px;
  }
  .comparison-box {
    padding: 28px 24px;
  }
  .why-title {
    font-size: 2rem;
    text-align: center;
  }
  .why-intro {
    text-align: center;
  }
  .why-left-content {
    text-align: center;
  }
}

/* Why Us - Premium Card Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  animation: whyCardFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.why-card:nth-child(1) { animation-delay: 0.05s; }
.why-card:nth-child(2) { animation-delay: 0.15s; }
.why-card:nth-child(3) { animation-delay: 0.25s; }
.why-card:nth-child(4) { animation-delay: 0.35s; }

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

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 149, 18, 0.4);
  box-shadow: 0 4px 12px rgba(45, 42, 41, 0.04), 0 24px 56px rgba(201, 149, 18, 0.1);
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* Icon */
.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(201, 149, 18, 0.08);
  border: 1px solid rgba(201, 149, 18, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover .why-card-icon {
  background: rgba(201, 149, 18, 0.14);
  border-color: rgba(201, 149, 18, 0.35);
  transform: scale(1.08) rotate(3deg);
}

/* Content */
.why-card-content {
  position: relative;
  z-index: 1;
}

.why-card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Bottom accent bar */
.why-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 24px 24px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card-specific accent colors */
.why-card:nth-child(1) .why-card-accent,
.why-card:nth-child(1) .why-card-icon {
  background: #C99512;
}
.why-card:nth-child(1) .why-card-icon {
  background: rgba(201, 149, 18, 0.08);
  border-color: rgba(201, 149, 18, 0.15);
}

.why-card:nth-child(2) .why-card-accent,
.why-card:nth-child(2) .why-card-icon {
  background: #B8860B;
}
.why-card:nth-child(2) .why-card-icon {
  background: rgba(184, 134, 11, 0.08);
  border-color: rgba(184, 134, 11, 0.15);
}

.why-card:nth-child(3) .why-card-accent,
.why-card:nth-child(3) .why-card-icon {
  background: #A67C00;
}
.why-card:nth-child(3) .why-card-icon {
  background: rgba(166, 124, 0, 0.08);
  border-color: rgba(166, 124, 0, 0.15);
}

.why-card:nth-child(4) .why-card-accent,
.why-card:nth-child(4) .why-card-icon {
  background: #946B00;
}
.why-card:nth-child(4) .why-card-icon {
  background: rgba(148, 107, 0, 0.08);
  border-color: rgba(148, 107, 0, 0.15);
}

.why-card:hover .why-card-accent {
  opacity: 1;
  transform: scaleX(1);
}

/* Mobile */
@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
  }
  
  .why-card {
    padding: 28px 24px;
  }
  
  .why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
  }
  
  .why-card-title {
    font-size: 1.05rem;
  }
  
  .why-card-desc {
    font-size: 0.9rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #E5DFC9;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Decorative Background Blobs */
.decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.blob-gold-1 {
  top: 15%;
  left: -150px;
  width: 350px;
  height: 350px;
  background-color: rgba(201, 149, 18, 0.12);
}

.blob-gold-2 {
  bottom: 25%;
  right: -150px;
  width: 450px;
  height: 450px;
  background-color: rgba(201, 149, 18, 0.1);
}

/* Standalone Legal Subpages (Privacy Policy & Terms of Service) */
.page-subpage {
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.subpage-content {
  flex: 1;
  padding-top: 80px; /* offset sticky navbar height */
  position: relative;
}

.subpage-hero {
  padding: var(--space-10) 0 var(--space-5) 0;
  background: linear-gradient(180deg, rgba(201, 149, 18, 0.06) 0%, rgba(255, 255, 255, 0.4) 100%);
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.subpage-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

.breadcrumbs .separator {
  color: var(--border-color);
}

.breadcrumbs .current {
  color: var(--primary-color);
  font-weight: 600;
}

.subpage-hero h1 {
  font-size: 2.75rem;
  margin-bottom: var(--space-2);
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

.subpage-body {
  padding: var(--space-12) 0;
}

.container-narrow {
  max-width: 800px !important;
}

.legal-content {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: var(--space-8) var(--space-10);
  box-shadow: var(--card-shadow);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--primary-color);
  padding-left: var(--space-3);
  border-left: 3px solid var(--accent-color);
  line-height: 1.3;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
  line-height: 1.7;
  color: var(--primary-color);
  opacity: 0.85;
}

.legal-content ul, .legal-content ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-4);
}

.legal-content li {
  font-size: 1rem;
  margin-bottom: var(--space-2);
  line-height: 1.6;
  color: var(--text-secondary);
  list-style-type: disc;
}

.legal-content li::marker {
  color: var(--accent-color);
}

.legal-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

.legal-content a {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--accent-color);
}

.back-home-wrap {
  margin-top: var(--space-10);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 28px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(201, 149, 18, 0.08);
}

.btn-back-home:hover {
  border-color: var(--accent-color);
  transform: translateX(-4px);
  box-shadow: 0 4px 16px rgba(201, 149, 18, 0.18);
}

