@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #0b0f19;
  --bg-gradient: radial-gradient(circle at 50% 0%, #17223b 0%, #0b0f19 80%);
  --panel-bg: rgba(18, 28, 48, 0.45);
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-border-glow: rgba(249, 168, 37, 0.15);

  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  --color-accent-amber: #F9A825;
  --color-accent-amber-glow: rgba(249, 168, 37, 0.4);
  --color-accent-blue: #2563EB;
  --color-accent-blue-glow: rgba(37, 99, 235, 0.4);
  --color-accent-green: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --font-family: 'Outfit', sans-serif;
  --transition-speed: 0.3s;
  --border-radius: 16px;

  --glow-shadow-amber: 0 0 15px var(--color-accent-amber-glow);
  --glow-shadow-blue: 0 0 15px var(--color-accent-blue-glow);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbars */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ─── Glass Panel ─── */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  background: linear-gradient(135deg, var(--color-accent-amber), #e8900c);
  color: #0b0f19;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: var(--glow-shadow-amber);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #ffffff, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-speed) ease;
}

.nav-item a:hover { color: #ffffff; }

.btn-download-nav {
  background: linear-gradient(135deg, var(--color-accent-amber), #e8900c);
  color: #0b0f19;
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 0 16px rgba(249, 168, 37, 0.25);
}

.btn-download-nav:hover {
  box-shadow: 0 0 30px rgba(249, 168, 37, 0.45);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 10rem 0 5rem;
  min-height: 90vh;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.badge-glowing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  background: rgba(249, 168, 37, 0.08);
  border: 1px solid rgba(249, 168, 37, 0.25);
  color: var(--color-accent-amber);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(249, 168, 37, 0.1); }
  50% { box-shadow: 0 0 20px rgba(249, 168, 37, 0.3); }
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* CTA Download Buttons */
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-speed) ease;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-icon { font-size: 1.5rem; }
.btn-details { display: flex; flex-direction: column; }
.small-txt { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }
.bold-txt { font-size: 1rem; font-weight: 600; }

/* ─── Hero Phone Mockup ─── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 340px;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  border-radius: 38px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  background: #111827;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(249, 168, 37, 0.08);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 28px;
  background: #111827;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mockup-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.mockup-img.active { opacity: 1; }

/* Floating Stat Pills */
.floating-stats-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  background: rgba(18, 28, 48, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 168, 37, 0.2);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-stats-pill.right {
  top: 15%;
  right: -30px;
  animation: float-right 4s ease-in-out infinite;
}

.floating-stats-pill.left {
  bottom: 25%;
  left: -40px;
  animation: float-left 5s ease-in-out infinite 1s;
}

.pill-glow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-amber);
  box-shadow: 0 0 8px var(--color-accent-amber-glow);
  animation: dot-blink 2s ease-in-out infinite;
}

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

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

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

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.py-section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card { padding: 2rem; }

.feature-card:hover {
  border-color: var(--panel-border-glow);
  transform: translateY(-4px);
}

.feature-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 168, 37, 0.1);
  color: var(--color-accent-amber);
  margin-bottom: 1.25rem;
}

.feature-icon-box i { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

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

/* ═══════════════════════════════════════════
   SHOWCASE GALLERY
   ═══════════════════════════════════════════ */
.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  padding: 0;
  overflow: hidden;
}

.gallery-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}

.gallery-details {
  padding: 1.5rem;
}

.gallery-details h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.gallery-details p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Landscape Preview Card */
.landscape-preview-card {
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.landscape-img-wrapper {
  flex: 1.5;
  min-height: 280px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.landscape-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.landscape-preview-card:hover .landscape-img-wrapper img {
  transform: scale(1.03);
}

.landscape-details {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
}

.landscape-details h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.landscape-details p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CALCULATOR
   ═══════════════════════════════════════════ */
.calculator-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.calc-val {
  font-weight: 700;
  color: var(--color-accent-amber);
  font-size: 1.05rem;
}

/* Range Slider Styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: background var(--transition-speed) ease;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent-amber);
  cursor: pointer;
  box-shadow: 0 0 10px var(--color-accent-amber-glow);
  transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent-amber);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px var(--color-accent-amber-glow);
}

/* Calculator Results */
.calculator-results {
  text-align: center;
  padding: 2.5rem;
  border-color: rgba(249, 168, 37, 0.15);
  background: rgba(249, 168, 37, 0.04);
}

.results-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.results-big-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent-amber);
  margin: 0.5rem 0;
  text-shadow: 0 0 30px var(--color-accent-amber-glow);
}

.results-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.results-stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.results-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.results-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.results-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.results-tree-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--color-accent-green);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card { padding: 2rem; }

.testimonial-card:hover {
  border-color: rgba(249, 168, 37, 0.2);
}

.stars-row {
  color: var(--color-accent-amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #0b0f19;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-details .name {
  font-weight: 600;
  font-size: 0.9rem;
}

.user-details .location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, rgba(249, 168, 37, 0.08), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(249, 168, 37, 0.2);
  border-radius: var(--border-radius);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-banner-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-banner-content p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer-bar {
  border-top: 1px solid var(--panel-border);
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-column { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

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

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

/* ═══════════════════════════════════════════
   POLICY PAGES (Privacy / Terms)
   ═══════════════════════════════════════════ */
.policy-page-header {
  padding: 8rem 0 3rem;
  text-align: center;
}

.policy-page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.policy-page-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.policy-content-box {
  max-width: 780px;
  margin: 0 auto 4rem;
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  padding: 3rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child { margin-bottom: 0; }

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent-amber);
  margin-bottom: 0.75rem;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  list-style: none;
  padding: 0;
}

.policy-section ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.policy-section ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-accent-amber);
  font-weight: 700;
}

.policy-section a {
  color: var(--color-accent-amber);
  text-decoration: none;
}

.policy-section a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    gap: 3rem;
  }

  .hero-content { max-width: 100%; }

  .cta-group { justify-content: center; }

  .hero-visual { max-width: 280px; }

  .floating-stats-pill.right { right: -10px; }
  .floating-stats-pill.left { left: -10px; }

  .landscape-preview-card {
    flex-direction: column;
  }

  .landscape-details { padding: 1.5rem; }

  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner-actions { width: 100%; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 1rem 4%;
  }

  .nav-links { display: none; }

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

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

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

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

  .calculator-results {
    padding: 1.5rem;
  }

  .results-stats-row {
    gap: 1rem;
  }

  .policy-content-box {
    padding: 1.5rem;
  }
}

/* ═══════════════════════════════════════════
   HERO MOCKUP CONTROLS
   ═══════════════════════════════════════════ */
.hero-mockup-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  z-index: 10;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
  width: 26px;
  border-radius: 12px;
  background: var(--color-accent-amber);
  box-shadow: 0 0 10px var(--color-accent-amber-glow);
}

.hero-screen-caption {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SHOWCASE TABBED WALKTHROUGH
   ═══════════════════════════════════════════ */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.showcase-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  background: rgba(18, 28, 48, 0.5);
  border: 1px solid var(--panel-border);
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.showcase-tab i { width: 18px; height: 18px; }

.showcase-tab:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.showcase-tab.active {
  background: linear-gradient(135deg, rgba(249, 168, 37, 0.2), rgba(249, 168, 37, 0.05));
  border-color: var(--color-accent-amber);
  color: var(--color-accent-amber);
  box-shadow: 0 0 20px var(--color-accent-amber-glow);
}

.tab-panels { width: 100%; }

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.tab-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.tab-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(249, 168, 37, 0.15);
  color: var(--color-accent-amber);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.tab-panel-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tab-panel-text p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.feature-list li i {
  color: var(--color-accent-amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
}

.tab-panel-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.preview-mini-carousel {
  position: relative;
  width: 260px;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  background: #000;
}

.tab-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.tab-img.active { opacity: 1; }

.tab-img:hover {
  filter: brightness(1.08);
}

.mini-thumb-nav {
  display: flex;
  gap: 0.5rem;
}

.mini-thumb {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--panel-border);
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-thumb:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.mini-thumb.active {
  background: var(--color-accent-amber);
  color: #0b0f19;
  border-color: var(--color-accent-amber);
}

/* ═══════════════════════════════════════════
   18 SCREENSHOTS GALLERY
   ═══════════════════════════════════════════ */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--panel-border);
  color: var(--text-secondary);
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--color-accent-amber);
  color: #0b0f19;
  border-color: var(--color-accent-amber);
  font-weight: 700;
  box-shadow: var(--glow-shadow-amber);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.screen-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.screen-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-amber-glow);
}

.screen-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.screen-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.screen-card:hover .screen-card-img-wrapper img {
  transform: scale(1.04);
}

.screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.screen-overlay i { width: 24px; height: 24px; color: var(--color-accent-amber); }

.screen-card-img-wrapper:hover .screen-overlay {
  opacity: 1;
}

.screen-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;

  background: rgba(18, 28, 48, 0.6);
  flex-grow: 1;
}

.screen-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.screen-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.screen-card-body p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════
   LIGHTBOX MODAL
   ═══════════════════════════════════════════ */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 15, 0.88);
  backdrop-filter: blur(16px);
}

.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  width: 90%;
  max-height: 90vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 20;
}

.lightbox-close:hover {
  background: rgba(239, 68, 68, 0.8);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--panel-border);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
}

.lightbox-nav:hover {
  background: var(--color-accent-amber);
  color: #0b0f19;
  border-color: var(--color-accent-amber);
}

.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }

.lightbox-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  max-height: 75vh;
  overflow-y: auto;
}

.lightbox-img-frame {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lightbox-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lightbox-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.lightbox-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.lightbox-counter {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 16px;
  background: rgba(249, 168, 37, 0.15);
  color: var(--color-accent-amber);
  font-weight: 700;
  font-size: 0.82rem;
}

@media (max-width: 800px) {
  .tab-panel-grid {
    grid-template-columns: 1fr;
  }
  .preview-mini-carousel {
    width: 220px;
    height: 440px;
  }
  .lightbox-body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .lightbox-img-frame {
    width: 220px;
    height: 440px;
  }
  .lightbox-nav.prev { left: 0.2rem; }
  .lightbox-nav.next { right: 0.2rem; }
}

