
/* ==========================================
   CSS CUSTOM PROPERTIES & MULTI-THEME ENGINE
   ========================================== */
:root {
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* DEFAULT: Sunset Gold */
  --accent-color: #FFC83D;
  --accent-rgb: 255, 200, 61;
  --accent-secondary: #FF6B00;
  --accent-secondary-rgb: 255, 107, 0;
  --bg-color: #0A0A0A;
  --bg-rgb: 10, 10, 10;
  --card-bg: rgba(20, 20, 20, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);
  --ambient-glow-1: rgba(255, 200, 61, 0.12);
  --ambient-glow-2: rgba(255, 107, 0, 0.06);
  --btn-hover: #e0ac2c;
  --badge-glow: rgba(255, 200, 61, 0.15);
}

body.theme-purple {
  --accent-color: #D946EF;
  --accent-rgb: 217, 70, 239;
  --accent-secondary: #8B5CF6;
  --accent-secondary-rgb: 139, 92, 246;
  --bg-color: #050505;
  --bg-rgb: 5, 5, 5;
  --card-bg: rgba(16, 15, 20, 0.7);
  --ambient-glow-1: rgba(217, 70, 239, 0.11);
  --ambient-glow-2: rgba(139, 92, 246, 0.08);
  --btn-hover: #be29d3;
  --badge-glow: rgba(217, 70, 239, 0.2);
}

body.theme-mint {
  --accent-color: #1DB954;
  --accent-rgb: 29, 185, 84;
  --accent-secondary: #10B981;
  --accent-secondary-rgb: 16, 185, 129;
  --bg-color: #060806;
  --bg-rgb: 6, 8, 6;
  --card-bg: rgba(15, 20, 16, 0.7);
  --ambient-glow-1: rgba(29, 185, 84, 0.1);
  --ambient-glow-2: rgba(16, 185, 129, 0.06);
  --btn-hover: #179e46;
  --badge-glow: rgba(29, 185, 84, 0.15);
}

body.theme-cyberpunk {
  --accent-color: #FF0055;
  --accent-rgb: 255, 0, 85;
  --accent-secondary: #00FFFF;
  --accent-secondary-rgb: 0, 255, 255;
  --bg-color: #08080C;
  --bg-rgb: 8, 8, 12;
  --card-bg: rgba(18, 18, 28, 0.8);
  --card-border: rgba(255, 0, 85, 0.12);
  --ambient-glow-1: rgba(255, 0, 85, 0.1);
  --ambient-glow-2: rgba(0, 255, 255, 0.08);
  --btn-hover: #e0004a;
  --badge-glow: rgba(255, 0, 85, 0.2);
}

body.theme-aurora {
  --accent-color: #06B6D4;
  --accent-rgb: 6, 182, 212;
  --accent-secondary: #6366F1;
  --accent-secondary-rgb: 99, 102, 241;
  --bg-color: #030307;
  --bg-rgb: 3, 3, 7;
  --card-bg: rgba(10, 11, 20, 0.7);
  --ambient-glow-1: rgba(6, 182, 212, 0.12);
  --ambient-glow-2: rgba(99, 102, 241, 0.12);
  --btn-hover: #0899b2;
  --badge-glow: rgba(6, 182, 212, 0.2);
}

/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

main {
  animation: entrySlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ==========================================
   💎 PREMIUM FLAT CARD SURFACES (MATERIAL ALIGNED)
   ========================================== */
.glass-panel {
  background: #141416; /* Clean flat dark Material surface */
  border: 1px solid rgba(255, 255, 255, 0.05); /* Precise, sharp alignment borders */
  border-radius: 16px;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  transform: translateY(-4px); /* Intentional geometric elevation lift */
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 
    0 20px 38px rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 40%, rgba(var(--accent-rgb), 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-header);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(var(--bg-rgb), 0.7);
  transition: var(--transition-fast);
}

.header.scrolled {
  height: 70px;
  background: rgba(var(--bg-rgb), 0.85);
  border-bottom-color: rgba(var(--accent-rgb), 0.08);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #FFF;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: var(--transition-fast);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--accent-color);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  color: #000;
  font-family: var(--font-header);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.3);
  background: linear-gradient(135deg, var(--btn-hover) 0%, var(--accent-secondary) 100%);
}

.cta-button.outline {
  background: transparent;
  color: #FFF;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: none;
}

.cta-button.outline:hover {
  border-color: var(--accent-color);
  background: rgba(var(--accent-rgb), 0.03);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.08);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  cursor: pointer;
  font-size: 1.5rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

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

/* ==========================================
   📸 PREMIUM PHONE FRAME MOCKUP (MATERIAL ALIGNED)
   ========================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.phone-frame-mockup {
  position: relative;
  width: 100%;
  max-width: 290px;
  background: #18181b;
  border-radius: 42px;
  border: 10px solid #1c1c21; /* Solid dark premium metal bezel */
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

/* Inner chassis highlight border */
.phone-frame-mockup::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 31px;
  pointer-events: none;
}

/* Pristine front-facing vertical lift on hover */
.phone-frame-mockup:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 75px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Hardware Side Buttons */
.phone-frame-button {
  position: absolute;
  background: linear-gradient(to bottom, #3E3E45, #16161B);
  width: 3px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-frame-button-volume-up {
  left: -3px;
  top: 110px;
  height: 40px;
  border-radius: 3px 0 0 3px;
}

.phone-frame-button-volume-down {
  left: -3px;
  top: 165px;
  height: 40px;
  border-radius: 3px 0 0 3px;
}

.phone-frame-button-power {
  right: -3px;
  top: 135px;
  height: 55px;
  border-radius: 0 3px 3px 0;
}

/* Speaker & Camera Notch (Dynamic Island look) */
.phone-frame-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 18px;
  background: #000;
  border-radius: 10px;
  z-index: 30;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tiny lens dot */
.phone-frame-notch::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #0B0E14;
  border-radius: 50%;
  margin-right: 5px;
  box-shadow: inset 0 1px 2px rgba(59, 130, 246, 0.4);
}

/* Secondary sensor lens dot */
.phone-frame-notch::after {
  content: '';
  width: 3px;
  height: 3px;
  background: #030304;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Dynamic screen container inside chassis */
.phone-frame-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.9);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.9);
}

/* Screen Image */
.phone-frame-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 32px;
  transform: scale(1.002); /* prevent tiny border subpixel gaps */
}

/* Realistic diagonal screen glass glare reflection */
.phone-frame-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.03) 22%, 
    transparent 22.1%, 
    transparent 100%
  );
  transform: translate(-30%, -30%);
  pointer-events: none;
  z-index: 25;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame-mockup:hover .phone-frame-reflection {
  transform: translate(-22%, -22%);
}



/* ==========================================
   FEATURES GRID SECTION
   ========================================== */
.features {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 600px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
}

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

.feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.05);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.2);
}

.feature-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #FFF;
}

.feature-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================
   📸 PLAYSTORE SHOWCASE GALLERY SECTION
   ========================================== */
.showcase-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(var(--bg-rgb), 0) 0%, rgba(var(--accent-rgb), 0.015) 50%, rgba(var(--bg-rgb), 0) 100%);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2rem 0;
}

.showcase-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-family: var(--font-header);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.showcase-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
}

.showcase-tab-btn.active {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.2);
}

.showcase-panel {
  display: flex;
  justify-content: center;
  position: relative;
}

.showcase-device {
  width: 100%;
  max-width: 300px;
}

/* ==========================================
   🔒 PRIVACY POLICY & TERMS PAGES CORE
   ========================================== */
.legal-main {
  padding: 160px 0 80px;
}

.legal-header {
  margin-bottom: 50px;
  max-width: 800px;
}

.legal-header h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.legal-header .meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.legal-content-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-link {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding-left: 12px;
  border-left: 2px solid rgba(255,255,255,0.05);
}

.sidebar-link:hover, .sidebar-link.active {
  color: var(--accent-color);
  border-left-color: var(--accent-color);
}

.legal-body {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 3.5rem;
}

.legal-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1.2rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.legal-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFF;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.legal-section ul, .legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
}

.legal-section li {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.data-table th {
  background-color: rgba(255, 255, 255, 0.02);
  color: #FFF;
  font-family: var(--font-header);
  font-weight: 600;
}

.data-table td {
  color: var(--text-secondary);
}

/* ==========================================
   📥 DOWNLOAD / CALL TO ACTION
   ========================================== */
.download-section {
  padding: 80px 0;
  position: relative;
}

.download-panel {
  padding: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.download-panel h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.download-panel p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
}

.store-badge-btn {
  height: 54px;
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0 20px;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.store-badge-btn:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.store-btn-icon {
  font-size: 1.6rem;
  color: #FFF;
}

.store-btn-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.store-btn-pre {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.store-btn-main {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
  font-family: var(--font-header);
  line-height: 1.2;
}

/* ==========================================
   📥 PROFESSIONAL FOOTER
   ========================================== */
.footer {
  background: #040404;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 60px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-title {
  font-family: var(--font-header);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.social-icon:hover {
  color: var(--accent-color);
}

/* Legal Footer Disclaimer */
.legal-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
}

.legal-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.legal-footer strong {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================
   📶 RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .showcase-content {
    align-items: center;
  }
  
  .showcase-tabs {
    justify-content: center;
  }
  
  .legal-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .legal-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .download-panel {
    padding: 3rem 1.5rem;
  }
  
  .download-panel h2 {
    font-size: 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
}

/* ==========================================
   🌾 ELEGANT AMBIENT FLOATING DANDELIONS (HERO BACKGROUND)
   ========================================== */
.ambient-dandelions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.dandelion-seed {
  position: absolute;
  width: 28px;
  height: 28px;
  color: rgba(var(--accent-rgb), 0.25); /* Delicate brand Accent color glow */
  animation: floatDandelion 16s infinite ease-in-out;
  bottom: -100px;
}

.dandelion-seed svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dandelion-seed:nth-child(1) { left: 15%; width: 22px; height: 22px; animation-duration: 28s; animation-delay: 0s; }
.dandelion-seed:nth-child(2) { left: 45%; width: 28px; height: 28px; animation-duration: 38s; animation-delay: 8s; }
.dandelion-seed:nth-child(3) { left: 75%; width: 24px; height: 24px; animation-duration: 33s; animation-delay: 16s; }

@keyframes floatDandelion {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 0.45;
  }
  85% {
    opacity: 0.45;
  }
  100% {
    transform: translateY(-120vh) rotate(320deg) translateX(80px);
    opacity: 0;
  }
}

/* ==========================================
   📸 HIGH-FIDELITY APP SCREENSHOTS CAROUSEL
   ========================================== */
.showcase-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(var(--bg-rgb), 0) 0%, rgba(var(--accent-rgb), 0.015) 50%, rgba(var(--bg-rgb), 0) 100%);
  position: relative;
  overflow: hidden;
}

.carousel-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 2.5rem;
}

.carousel-slide {
  flex: 0 0 calc((100% - 5rem) / 3); /* Exactly 3 slides visible on desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.carousel-slide .phone-frame-mockup.mini {
  width: 100%;
  max-width: 220px;
  border-radius: 32px;
  border: 8px solid #1c1c21;
  background: #18181b;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide:hover .phone-frame-mockup.mini {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 
    0 20px 45px rgba(var(--accent-rgb), 0.15),
    0 0 0 1px rgba(var(--accent-rgb), 0.1);
}

.carousel-slide .phone-frame-mockup.mini .phone-frame-screen {
  border-radius: 24px;
  aspect-ratio: 9 / 19.5;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide .phone-frame-mockup.mini .phone-frame-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Carousel Control Navigation Buttons */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition-fast);
  z-index: 10;
}

.carousel-control:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.25);
}

.carousel-control.prev {
  left: -10px;
}

.carousel-control.next {
  right: -10px;
}

/* Carousel Indicators/Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--accent-color);
  width: 24px;
  border-radius: 4px;
}

/* Responsive carousel layout */
@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 2.5rem) / 2); /* 2 slides visible */
  }
  .carousel-container {
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%; /* 1 slide visible */
  }
  .carousel-container {
    max-width: 320px;
    padding: 0 20px;
  }
  .carousel-control.prev { left: -15px; }
  .carousel-control.next { right: -15px; }
}



