/* Design Tokens / Variables */
:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #131929;
  --bg-tertiary: #1b233a;
  
  --accent-primary: #2e86ab; /* Soft teal blue */
  --accent-secondary: #3b82f6; /* Electric blue */
  --accent-glow: rgba(59, 130, 246, 0.4);
  --accent-text: #38bdf8;
  
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #de350b;
  
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-width: 1200px;
  --header-height: 80px;
}

body.light-theme {
  --bg-primary: #f8fafc; /* Light slate gray */
  --bg-secondary: #ffffff; /* Pure white */
  --bg-tertiary: #f1f5f9; /* Soft light gray card border */
  
  --accent-glow: rgba(59, 130, 246, 0.06);
  --accent-text: #0284c7; /* Darker sky blue for legibility */
  
  --text-primary: #0f172a; /* Slate 900 */
  --text-secondary: #334155; /* Slate 700 */
  --text-muted: #64748b; /* Slate 500 */
}


/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  z-index: 1000;
  background-color: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.header.scrolled {
  background-color: rgba(11, 15, 25, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

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

.logo-img {
  height: 38px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

/* Premium Theme Switch */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
}

.theme-switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.theme-switch .switch-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  box-shadow: 0 2px 5px rgba(59, 130, 246, 0.4);
}

.theme-switch .switch-slider i {
  font-size: 0.8rem;
  color: #ffffff;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.theme-switch .light-icon {
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
}

.theme-switch .dark-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}



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

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

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

.nav-menu ul a:hover {
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-phone {
  background-color: var(--bg-tertiary);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-phone:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}

/* Store & Action Buttons */
.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 12px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.3s ease;
}

.store-button i {
  font-size: 1.75rem;
}

.store-button div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-button span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.store-button strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.store-button:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.web-action-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.web-action-button:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-text);
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

/* Device Mockup */
.device-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.device-phone {
  background-color: #000;
  border: 7px solid #111827; /* Ultra-thin bezel */
  outline: 1.5px solid #475569; /* Titanium shiny border */
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.15), 0 25px 50px -12px rgba(0, 0, 0, 0.9);
  aspect-ratio: 9 / 19.5;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Dynamic Island for Hero phone */
.device-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background-color: #000;
  border-radius: 8px;
  z-index: 10;
  pointer-events: none;
}


.phone-screen {
  background-color: var(--bg-primary);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  background-color: var(--bg-secondary);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.mockup-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.mockup-card {
  background-color: var(--bg-secondary);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-card-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.stat-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-text);
}

.stat-box.alert .stat-num {
  color: var(--error-color);
}

.stat-box.success .stat-num {
  color: var(--success-color);
}

.stat-lbl {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background-color: var(--bg-secondary);
  border-radius: 10px;
  font-size: 0.75rem;
}

.item-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-secondary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.item-icon.warning {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error-color);
}

.item-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.item-details strong {
  color: #fff;
  overflow: text-ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.item-details span {
  color: var(--text-secondary);
  font-size: 0.65rem;
}

.item-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
}

.item-status.done {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
}

.item-status.pending {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--warning-color);
}

.glow-effect {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 14px;
  color: var(--accent-text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Showcase Section */
.modules-section {
  padding: 100px 0;
}

.showcase-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn i {
  font-size: 1.2rem;
  width: 20px;
}

.tab-btn:hover {
  color: #fff;
  background-color: var(--bg-tertiary);
}

.tab-btn.active {
  color: #fff;
  background: linear-gradient(90deg, var(--bg-tertiary) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.coming-soon-tab {
  opacity: 0.7;
}

.coming-soon-tab small {
  margin-left: auto;
  font-size: 0.65rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* Showcase Content Panel */
.showcase-content-panel {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  min-height: 480px;
}

.showcase-detail {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  animation: fadeIn 0.4s ease forwards;
}

.showcase-detail.active {
  display: grid;
}

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

.detail-text h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: #fff;
}

.detail-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.feature-bullets i {
  color: var(--success-color);
  margin-top: 4px;
}

.detail-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* iPhone 17 Pro Mockup Frame Component */
.iphone-17-frame {
  position: relative;
  background-color: #000;
  border: 7px solid #111827; /* Bezels */
  outline: 1.5px solid #475569; /* Titanium edge */
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.05), 0 20px 45px rgba(0, 0, 0, 0.7);
  width: 250px;
  height: 520px;
  display: flex;
  flex-direction: column;
}

.iphone-17-frame .dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background-color: #000;
  border-radius: 8px;
  z-index: 10;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.3) inset;
  pointer-events: none;
}

.iphone-17-frame .status-bar {
  height: 32px;
  background-color: #151B2C;
  padding: 10px 24px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: #fff;
  z-index: 5;
}

.iphone-17-frame .status-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.iphone-17-frame .screen-content {
  flex: 1;
  background-color: #151B2C;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.iphone-17-frame .preview-svg {
  width: 100%;
  height: auto;
  display: block;
}

.iphone-17-frame .home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  z-index: 10;
  pointer-events: none;
}


/* Locked / Coming soon state in SVG */
.locked-preview-wrapper {
  position: relative;
  width: 100%;
  max-width: 260px;
}

.locked-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 25, 41, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.locked-blur-overlay i {
  font-size: 2rem;
  color: var(--text-secondary);
}

.locked-blur-overlay span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.preview-svg.blurred {
  filter: blur(4px);
}

.coming-soon-banner {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--accent-secondary);
  padding: 16px;
  border-radius: 0 12px 12px 0;
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.coming-soon-banner i {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.coming-soon-banner h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.coming-soon-banner p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Call to Action Banner */
.cta-banner-section {
  padding: 60px 0 100px 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 60px 40px;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* SSS Accordion */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.2);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--accent-text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.channel-card i {
  font-size: 2rem;
  color: var(--accent-text);
}

.channel-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-card span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.channel-card strong {
  font-size: 1.125rem;
  color: #fff;
}

.channel-card strong a:hover {
  color: var(--accent-text);
}

.contact-form-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input, .form-group textarea {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 10px var(--accent-glow);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  justify-content: center;
}

/* Success Form Overlay */
.form-success-message {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  z-index: 5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  animation: fadeIn 0.3s ease forwards;
}

.form-success-message.active {
  display: flex;
}

.form-success-message i {
  font-size: 3rem;
  color: var(--success-color);
}

.form-success-message h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success-message p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: #fff;
}

/* Tablet Header Centering */
@media (min-width: 769px) and (max-width: 1200px) {
  .navbar {
    justify-content: center;
    gap: 16px;
  }
  
  .logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px; /* Separates logo from wrapped menu */
  }
  
  .nav-menu {
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 60px); /* Prevents fixed header overlap */
  }

  .legal-content {
    padding-top: calc(var(--header-height) + 60px); /* Spacing for legal subpages */
  }
}

/* Media Queries (Responsive) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .badge {
    align-self: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .showcase-wrapper {
    grid-template-columns: 1fr;
  }
  
  .showcase-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  
  .tab-btn {
    white-space: nowrap;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide standard menu on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .btn-navbar {
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-detail {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .feature-bullets {
    align-items: center;
  }
  
  .detail-preview {
    order: -1; /* Place SVG preview above text on mobile */
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-card {
    padding: 40px 20px;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}

/* Scroll Reveal Animations */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-hidden.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Light Theme Styling Overrides */
body.light-theme .header {
  background-color: rgba(248, 250, 252, 0.7);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .header.scrolled {
  background-color: rgba(248, 250, 252, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .logo-text {
  color: #0f172a;
}

body.light-theme .nav-menu ul a {
  color: #334155;
}

body.light-theme .nav-menu ul a:hover {
  color: #000;
}

body.light-theme .theme-switch {
  background-color: #e2e8f0;
  border-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .theme-switch .switch-slider {
  transform: translateX(26px);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 2px 5px rgba(245, 158, 11, 0.4);
}

body.light-theme .theme-switch .light-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

body.light-theme .theme-switch .dark-icon {
  opacity: 0;
  transform: scale(0.5) rotate(45deg);
}



body.light-theme .store-button {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

body.light-theme .store-button:hover {
  background-color: #f1f5f9;
}

body.light-theme .store-button span {
  color: #64748b;
}

body.light-theme .web-action-button {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  color: #1e3a8a;
}

body.light-theme .web-action-button:hover {
  background: var(--accent-secondary);
  color: #fff;
}

body.light-theme .benefit-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

body.light-theme .benefit-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

body.light-theme .benefit-icon {
  background: rgba(59, 130, 246, 0.05);
}

body.light-theme .tab-btn {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.04);
  color: #475569;
}

body.light-theme .tab-btn:hover {
  background-color: #f1f5f9;
  color: #000;
}

body.light-theme .tab-btn.active {
  background: linear-gradient(90deg, #f1f5f9 0%, rgba(59, 130, 246, 0.04) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

body.light-theme .showcase-content-panel {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

body.light-theme .detail-text h3 {
  color: #0f172a;
}

body.light-theme .feature-bullets li {
  color: #334155;
}

body.light-theme .coming-soon-banner {
  background: rgba(0, 0, 0, 0.02);
}

body.light-theme .cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

body.light-theme .btn-phone {
  background-color: #ffffff;
  color: #0f172a;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .btn-phone:hover {
  background-color: #f1f5f9;
}

body.light-theme .faq-section {
  background-color: #ffffff;
}

body.light-theme .faq-item {
  background-color: #f8fafc;
  border-color: rgba(0, 0, 0, 0.04);
}

body.light-theme .faq-item:hover {
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .faq-question {
  color: #0f172a;
}

body.light-theme .faq-item.active {
  border-color: rgba(59, 130, 246, 0.2);
  background-color: #ffffff;
}

body.light-theme .channel-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

body.light-theme .channel-card strong {
  color: #0f172a;
}

body.light-theme .contact-form-wrapper {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

body.light-theme .form-group input, body.light-theme .form-group textarea {
  background-color: #f8fafc;
  border-color: rgba(0, 0, 0, 0.08);
  color: #0f172a;
}

body.light-theme .form-group input:focus, body.light-theme .form-group textarea:focus {
  background-color: #ffffff;
}

body.light-theme .form-success-message {
  background-color: #ffffff;
}

body.light-theme .form-success-message h4 {
  color: #0f172a;
}

body.light-theme .footer {
  border-top-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .nav-menu {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  body.light-theme .nav-menu {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
}


body.light-theme .mockup-header {
  background-color: #ffffff;
  border-bottom-color: rgba(0, 0, 0, 0.05);
  color: #000;
}

body.light-theme .mockup-body {
  background-color: #f8fafc;
}

body.light-theme .mockup-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .mockup-list-item {
  background-color: #ffffff;
}

body.light-theme .mockup-list-item strong {
  color: #0f172a;
}

/* iPhone 17 Showcase Light Theme */
body.light-theme .iphone-17-frame {
  outline-color: #cbd5e1;
  border-color: #e2e8f0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

body.light-theme .iphone-17-frame .status-bar {
  background-color: #ffffff;
  color: #000;
}

body.light-theme .iphone-17-frame .home-indicator {
  background-color: rgba(0, 0, 0, 0.3);
}

body.light-theme .iphone-17-frame .screen-content {
  background-color: #ffffff;
}

/* SVG Colors Dark-Inversion for Light Mode */
body.light-theme .preview-svg rect[fill="#151B2C"] {
  fill: #ffffff !important;
}

body.light-theme .preview-svg rect[fill="#0B0F19"] {
  fill: #f8fafc !important;
}

body.light-theme .preview-svg rect[fill="#0b0f19"] {
  fill: #f8fafc !important;
}

body.light-theme .preview-svg text[fill="#FFF"] {
  fill: #0f172a !important;
}

body.light-theme .preview-svg text[fill="#FFF"] {
  fill: #0f172a !important;
}

body.light-theme .preview-svg text[fill="#9CA3AF"] {
  fill: #475569 !important;
}

body.light-theme .preview-svg text[fill="#9ca3af"] {
  fill: #475569 !important;
}

body.light-theme .preview-svg text[fill="#9CA3AF"] {
  fill: #475569 !important;
}


