:root {
  --bg-dark: #050508;
  --bg-surface: rgba(15, 15, 25, 0.7);
  --bg-card: rgba(25, 25, 35, 0.6);
  --text-main: #f0f0f5;
  --text-muted: #a0a0b5;
  --accent-blue: #00f0ff;
  --accent-violet: #8a2be2;
  --accent-cyan: #00ffff;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glow-blue: 0 0 20px rgba(0, 240, 255, 0.5);
  --glow-violet: 0 0 20px rgba(138, 43, 226, 0.5);
  
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

/* Background Effects */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 100;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(5, 5, 8, 0.8);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.logo-accent {
  color: var(--accent-violet);
}

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-blue);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-cta {
  background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(138,43,226,0.2));
  border: 1px solid var(--accent-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--glow-blue);
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(0,240,255,0.4), rgba(138,43,226,0.4));
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  transition: var(--transition);
}

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

.section {
  padding: 6rem 0;
  position: relative;
  scroll-margin-top: 120px;
}

.section-dark {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  color: #fff;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent-blue);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s;
}

.btn:hover .btn-glow {
  left: 100%;
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  perspective: 1000px;
  transform: rotateX(60deg) scale(2);
  transform-origin: top;
  opacity: 0.3;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(138, 43, 226, 0.3);
  top: 10%;
  left: -10%;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 240, 255, 0.2);
  bottom: 20%;
  right: -5%;
}

.hero-glow-3 {
  width: 500px;
  height: 500px;
  background: rgba(0, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  flex: 1;
  padding: 0 2rem 0 5%;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(0,240,255,0.1);
  border: 1px solid rgba(0,240,255,0.3);
  color: var(--accent-blue);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat span { color: var(--accent-blue); }

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
  margin-left: 10px;
  max-width: 80px;
  line-height: 1.2;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.hero-visual {
  flex: 1;
  position: relative;
  height: 600px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-mockup {
  width: 100%;
  max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.dashboard-mockup:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.dash-header {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-dots {
  display: flex;
  gap: 5px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
}
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #27c93f; }

.dash-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.dash-badge {
  background: rgba(0,255,0,0.1);
  color: #27c93f;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  margin-left: auto;
}

.dash-body {
  display: flex;
  height: 350px;
}

.dash-sidebar {
  width: 120px;
  border-right: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.dash-nav-item {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.dash-nav-item:hover, .dash-nav-item.active {
  color: var(--text-main);
  background: rgba(255,255,255,0.05);
}

.dash-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-metrics {
  display: flex;
  gap: 0.5rem;
}

.metric-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem;
}

.metric-label { font-size: 0.7rem; color: var(--text-muted); }
.metric-value { font-size: 1.2rem; font-weight: 700; margin: 0.3rem 0; }
.metric-change { font-size: 0.7rem; }
.metric-change.positive { color: #27c93f; }
.metric-change.negative { color: #ff5f56; }
.metric-change.neutral { color: #ffbd2e; }

.dash-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chart-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  gap: 5px;
}

.bar {
  flex: 1;
  background: rgba(0, 240, 255, 0.2);
  border-radius: 4px 4px 0 0;
  position: relative;
  height: var(--h);
  transition: var(--transition);
}

.bar.active, .bar:hover {
  background: linear-gradient(to top, var(--accent-blue), var(--accent-violet));
}

.bar span {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.dash-ai-chat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-bubble {
  font-size: 0.7rem;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  max-width: 90%;
}

.chat-bubble.user {
  align-self: flex-end;
  background: rgba(255,255,255,0.1);
  border-bottom-right-radius: 0;
}

.chat-bubble.ai {
  align-self: flex-start;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0,240,255,0.2);
  border-bottom-left-radius: 0;
}

.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 6s ease-in-out infinite;
}

.float-card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.float-card-2 { bottom: 20%; left: -5%; animation-delay: 2s; }
.float-card-3 { bottom: 10%; right: 5%; animation-delay: 4s; }

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

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 15px;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
}

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Products Section */
.product-featured {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.product-featured::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-featured-badge {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: linear-gradient(90deg, #ffbd2e, #ff5f56);
  color: #fff;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.product-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.fi-icon {
  font-size: 1.5rem;
}

.feature-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

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

.product-ctas {
  display: flex;
  gap: 1rem;
}

.ai-buddy-screen {
  background: #0f172a;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}

.screen-header {
  background: #1e293b;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.screen-dots {
  display: flex;
  gap: 6px;
}

.screen-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #475569;
}

.screen-chat {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 400px;
  overflow-y: auto;
}

.screen-msg {
  padding: 1rem;
  border-radius: 12px;
  max-width: 85%;
  font-size: 0.9rem;
  line-height: 1.5;
}

.user-msg {
  align-self: flex-end;
  background: #334155;
  border-bottom-right-radius: 4px;
}

.ai-msg {
  align-self: flex-start;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-bottom-left-radius: 4px;
}

.ai-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-cyan);
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.mt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mt-row.header {
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mt-row .amt {
  color: #27c93f;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ── Appstech Mobile App Card ──────────────────────────────────────────────── */
.product-card-app {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.app-name-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.app-name-label {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-name-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.app-badge-new {
  margin-left: auto;
  background: var(--accent-green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-features-list {
  margin-bottom: 1.75rem !important;
}

.app-features-list li {
  font-size: 0.9rem;
}

.play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  padding: 8px 18px;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
}

.play-store-btn:hover {
  background: #f0f0f0;
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.play-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.play-btn-sub {
  font-size: 0.65rem;
  color: #555;
  letter-spacing: 0.03em;
}

.play-btn-main {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

/* Screenshots strip */
.app-screenshots-wrap {
  overflow: hidden;
}

.app-screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.phone-frame {
  border-radius: 20px;
  border: 2px solid var(--glass-border);
  overflow: hidden;
  scroll-snap-align: start;
  background: #0a0a0a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
  position: relative;
}

.phone-frame:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue), 0 16px 40px rgba(0,0,0,0.6);
}

.phone-notch {
  height: 10px;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-notch::after {
  content: '';
  width: 40px;
  height: 5px;
  background: #222;
  border-radius: 3px;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.screen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.screen-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Full-width screenshot row */
.app-screenshot-full {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.phone-frame-wide {
  width: 100%;
  border-radius: 16px;
  border: 2px solid var(--glass-border);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.phone-frame-wide:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue), 0 16px 40px rgba(0,0,0,0.6);
}

/* ── Language Pills ─────────────────────────────────────────── */
.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.lang-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(0, 240, 255, 0.07);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--accent-blue);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.lang-pill:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.phone-frame-wide img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 15px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.product-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.product-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
}

.workflow-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wf-node {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.wf-arrow {
  color: var(--accent-blue);
}

/* ── App Demo Section ─────────────────────────────────────────────────────── */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 1.75rem;
  border-radius: 15px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.demo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.demo-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.demo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.demo-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.demo-watch-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: var(--transition);
}

.demo-card:hover .demo-watch-link {
  color: #fff;
}

.product-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.product-link:hover {
  color: #fff;
  transform: translateX(5px);
}

/* How It Works */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  z-index: 2;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-blue);
  font-family: var(--font-heading);
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.step-detail {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  display: inline-block;
  color: var(--accent-cyan);
}

.step-connector {
  width: 100px;
  height: 2px;
  margin-top: 6rem;
  position: relative;
}

.connector-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--glass-border), var(--accent-blue));
}

.connector-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-blue);
  animation: travel 2s infinite linear;
}

@keyframes travel {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.connector-arrow {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--accent-blue);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feature-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(138,43,226,0.1), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 43, 226, 0.4);
}

.feature-card:hover .feature-card-glow {
  opacity: 1;
}

.fc-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact CTA */
.section-cta {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, rgba(138,43,226,0.05) 40%, transparent 70%);
  z-index: -1;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-group.full {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.field-required { color: #ff6b6b; margin-left: 2px; }

.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  opacity: 0.7;
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 0.3rem;
  min-height: 1em;
}

.form-group input.input-error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(0,240,255,0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a0a0b5%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.form-group select option {
  background-color: #1a1a2e;
  color: #ffffff;
}

#contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.contact-alts {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-alt-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-alt-btn:hover {
  color: var(--text-main);
}

/* Footer */
footer {
  background: #020203;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-blue);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-tagline {
  color: var(--accent-cyan);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--accent-blue);
  color: var(--text-main);
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: var(--glow-blue);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Animations & Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* ===== TICKER ===== */
.ticker-wrap {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(0, 240, 255, 0.04);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  overflow: hidden;
  padding: 0.45rem 0;
  backdrop-filter: blur(8px);
}

.ticker {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker:hover { animation-play-state: paused; }

.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tick-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 4px;
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--accent-blue);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(10px); opacity: 0.3; }
}

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

/* ===== NEURAL NETWORK SVG ===== */
.neural-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  z-index: 0;
  pointer-events: none;
}

.nn-node {
  animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.4; r: 5; }
  50%       { opacity: 1;   r: 8; filter: drop-shadow(0 0 6px currentColor); }
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(0, 240, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.08);
}

.testi-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testi-role {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ===== HERO VISUAL POSITION FIX ===== */
.hero-visual {
  position: relative;
}

/* ===== PLAY ICON ===== */
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.7rem;
}

/* hero needs extra top padding for ticker */
#hero { padding-top: 7rem; }

/* ===== CURSOR GLOW ===== */
#cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,240,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left 0.08s, top 0.08s;
}

/* ===== TYPEWRITER CURSOR ===== */
.cursor-blink {
  display: inline-block;
  color: var(--accent-cyan);
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ===== CHAT ANIMATION ===== */
.chat-anim {
  animation: chatSlide 0.35s ease both;
}
@keyframes chatSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== NAV ACTIVE LINK ===== */
.nav-links a.nav-active {
  color: var(--accent-blue);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/* ===== FEATURE CARD PERSPECTIVE ===== */
.feature-card,
.about-card,
.testi-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .about-grid, .product-featured-content { grid-template-columns: 1fr; gap: 2rem; }
  .steps-container { flex-direction: column; gap: 2rem; }
  .step-connector { width: 2px; height: 50px; margin: 0 auto; }
  .connector-line { background: linear-gradient(180deg, var(--glass-border), var(--accent-blue)); }
  .connector-pulse { top: 0; left: 50%; transform: translateX(-50%); animation: travel-y 2s infinite linear; }
  @keyframes travel-y { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
  .connector-arrow { bottom: -5px; top: auto; left: 50%; transform: translateX(-50%) rotate(90deg); }

  /* Stack hero vertically */
  #hero { flex-direction: column; align-items: center; }
  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
    text-align: center;
  }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-ctas { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1.2rem; }

  /* Show visual below content, flat (no 3D) */
  .hero-visual {
    display: flex;
    width: 100%;
    height: 420px;
    perspective: none;
    padding: 0 1.5rem 2rem;
  }
  .dashboard-mockup {
    transform: none;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .dashboard-mockup:hover { transform: none; }

  /* Hide floating cards — they overflow on narrow layouts */
  .float-card { display: none; }
  .neural-bg { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 1rem; }
  .nav-links {
    position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
    background: var(--bg-dark); flex-direction: column; padding: 2rem; transition: var(--transition);
  }
  .nav-links.active { left: 0; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; }
  .hero-visual { height: 360px; }
  .section { padding: 4rem 0; }
  .section-title { font-size: 2rem; }
  .form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
  .form-group { margin-bottom: 1.5rem; }
  .footer-top { flex-direction: column; }
  .product-card-app { grid-template-columns: 1fr; }
  .app-screenshots-wrap { margin-top: 1.5rem; }
  .app-screenshots { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}

/* ── Tally Partner Badge ────────────────────────── */
.tally-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 50px;
  padding: 0.5rem 1.4rem 0.5rem 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.tally-partner-badge .partner-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0,240,255,0.3);
}

/* ── Pricing Badge ──────────────────────────────── */
.pricing-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  margin: 1.2rem auto 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
}
.pricing-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  align-self: center;
}

/* ── TDL Tags ───────────────────────────────────── */
.tdl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.2rem;
}
.tdl-tags .tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(138, 43, 226, 0.35);
  border-radius: 20px;
  color: var(--accent-blue);
}

/* ── TDL Actions Row ────────────────────────────── */
.tdl-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.tdl-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.tdl-demo-btn:hover {
  background: rgba(0, 240, 255, 0.18);
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}
.tdl-demo-btn .play-icon {
  font-size: 0.7rem;
}

/* ── TDL CTA Bar ────────────────────────────────── */
.tdl-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}
.tdl-cta-bar p {
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 768px) {
  .tdl-cta-bar { flex-direction: column; text-align: center; }
  .pricing-badge { flex-direction: column; gap: 0.2rem; }
}

/* ── Mobile App Co-Flagship ──────────────────────────────────────────────── */
.product-featured-mobile::before {
  background: radial-gradient(circle, rgba(138,43,226,0.12) 0%, transparent 70%);
  left: -80px;
  right: auto;
}

.product-badge-mobile {
  background: linear-gradient(90deg, var(--accent-violet), #c026d3) !important;
}

/* Three-phone fan */
.mobile-phones-hero {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-hero-center {
  position: relative;
  z-index: 3;
  width: 160px;
  filter: drop-shadow(0 20px 45px rgba(138,43,226,0.45));
}

.phone-hero-left {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-44%) rotate(-13deg);
  z-index: 2;
  width: 120px;
  opacity: 0.68;
  filter: drop-shadow(0 12px 28px rgba(138,43,226,0.22));
}

.phone-hero-right {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-44%) rotate(13deg);
  z-index: 2;
  width: 120px;
  opacity: 0.68;
  filter: drop-shadow(0 12px 28px rgba(138,43,226,0.22));
}

.float-card-mobile-1 {
  top: 8%;
  left: 3%;
  animation-delay: 1s;
  border-color: rgba(138,43,226,0.45);
  box-shadow: 0 0 18px rgba(138,43,226,0.18);
}

.float-card-mobile-2 {
  bottom: 12%;
  right: 3%;
  animation-delay: 3s;
  border-color: rgba(138,43,226,0.45);
  box-shadow: 0 0 18px rgba(138,43,226,0.18);
}

/* ── Mobile Btn ──────────────────────────────────────────────────────────── */
.btn-mobile {
  background: linear-gradient(135deg, var(--accent-violet), #c026d3);
  color: #fff;
  box-shadow: 0 0 20px rgba(138,43,226,0.4);
}

.btn-mobile:hover {
  box-shadow: 0 0 35px rgba(138,43,226,0.7);
  transform: translateY(-2px);
}

/* ── How It Works Tabs ───────────────────────────────────────────────────── */
.hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hiw-tab {
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.hiw-tab.active {
  background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(138,43,226,0.15));
  border-color: var(--accent-blue);
  color: var(--text-main);
  box-shadow: 0 0 18px rgba(0,240,255,0.2);
}

.hiw-tab:hover:not(.active) {
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  border-color: rgba(255,255,255,0.2);
}

.hiw-content.hidden {
  display: none;
}

/* ── Dual CTA ────────────────────────────────────────────────────────────── */
.cta-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.cta-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  padding: 0.3rem 0.9rem;
  background: rgba(0,240,255,0.08);
  border-radius: 50px;
  border: 1px solid rgba(0,240,255,0.2);
}

.cta-card-label-mobile {
  color: #c084fc;
  background: rgba(138,43,226,0.1);
  border-color: rgba(138,43,226,0.3);
}

/* Override contact-form centering inside dual grid */
.cta-dual .contact-form {
  max-width: none;
  margin: 0;
}

.mobile-download-panel {
  background: var(--bg-card);
  border: 1px solid rgba(138,43,226,0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 30px rgba(138,43,226,0.07), var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.mobile-download-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(138,43,226,0.1), transparent 70%);
  pointer-events: none;
}

.mobile-dl-phones {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-end;
  margin: 0.5rem 0;
}

.mobile-dl-phones .phone-frame {
  width: 75px;
  box-shadow: 0 10px 30px rgba(138,43,226,0.25);
}

.mobile-dl-phones .phone-frame:nth-child(2) {
  transform: scale(1.12);
  z-index: 2;
  position: relative;
  box-shadow: 0 15px 40px rgba(138,43,226,0.38);
}

.mobile-download-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-violet), #c026d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}

.mobile-download-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.mobile-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.mobile-feature-tags .tag {
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-color: rgba(138,43,226,0.25);
  color: #c084fc;
  background: rgba(138,43,226,0.07);
}

.mobile-dl-full-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1000px) {
  .cta-dual { grid-template-columns: 1fr; gap: 2.5rem; }
  .mobile-phones-hero { height: 320px; }
  .phone-hero-center { width: 120px; }
  .phone-hero-left, .phone-hero-right { width: 90px; }
}

/* ── AI Chat + Voice Widget ───────────────────────────────────────────── */
#chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* FAB row (label + button side by side) */
.chat-fab-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FAB label */
.chat-fab-label {
  background: rgba(15, 15, 25, 0.92);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #00f0ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
  align-self: center;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}
.chat-panel-open .chat-fab-label {
  opacity: 0;
}

/* FAB button */
#chat-fab {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border: none;
  cursor: pointer;
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4), 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  flex-shrink: 0;
}
#chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.5), 0 8px 28px rgba(0, 0, 0, 0.45);
}
.chat-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.5);
  animation: fabPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.18); opacity: 0; }
}

/* Chat panel */
#chat-panel {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 370px;
  max-height: min(560px, calc(100vh - 130px));
  display: flex;
  flex-direction: column;
  background: rgba(12, 12, 22, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 32px rgba(0, 240, 255, 0.08);
  overflow: hidden;
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chat-panel-hidden {
  opacity: 0 !important;
  transform: scale(0.88) translateY(12px) !important;
  pointer-events: none !important;
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(0,240,255,0.12), rgba(138,43,226,0.12));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,240,255,0.35);
}
.chat-title { font-weight: 700; font-size: 0.95rem; color: var(--text-main); }
.chat-subtitle { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.chat-online-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.7);
}
#chat-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ccc;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  transition: var(--transition);
  line-height: 1;
}
#chat-close:hover { color: #fff; background: rgba(255,80,80,0.25); border-color: rgba(255,80,80,0.4); }

/* Messages area */
#chat-msg-area {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
#chat-msg-area::-webkit-scrollbar { width: 4px; }
#chat-msg-area::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.chat-msg { display: flex; align-items: flex-end; gap: 6px; max-width: 100%; }
.chat-msg.user { flex-direction: row-reverse; }

.chat-msg-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-main);
  animation: bubbleIn 0.2s ease;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg.ai .chat-msg-bubble {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-msg-bubble {
  background: linear-gradient(135deg, rgba(0,240,255,0.18), rgba(138,43,226,0.18));
  border: 1px solid rgba(138,43,226,0.25);
  border-bottom-right-radius: 4px;
  text-align: right;
}

/* Typing indicator */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 13px;
  background: rgba(0,240,255,0.06);
  border: 1px solid rgba(0,240,255,0.12);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0.6;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(1); opacity: 0.4; }
  40%           { transform: scale(1.3); opacity: 1; }
}

/* Suggestion chips */
#chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 10px;
  flex-shrink: 0;
}
.chat-interest-label {
  width: 100%;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 2px 0 4px;
  font-style: italic;
}
.chat-suggest {
  background: rgba(0,240,255,0.06);
  border: 1px solid rgba(0,240,255,0.2);
  color: var(--accent-blue);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
  width: 100%;
  text-align: left;
}
.chat-suggest:hover {
  background: rgba(0,240,255,0.14);
  border-color: var(--accent-blue);
}

/* Input row */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}
#chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 9px 16px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
#chat-input::placeholder { color: var(--text-muted); }
#chat-input:focus { border-color: rgba(0,240,255,0.4); }

#chat-mic, #chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
#chat-mic {
  background: rgba(138,43,226,0.15);
  border: 1px solid rgba(138,43,226,0.3);
  font-size: 1rem;
  color: #c084fc;
}
#chat-mic:hover { background: rgba(138,43,226,0.28); }
#chat-mic.recording {
  background: rgba(239,68,68,0.2);
  border-color: rgba(239,68,68,0.5);
  animation: micPulse 0.8s ease-in-out infinite alternate;
}
@keyframes micPulse {
  from { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  to   { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}
#chat-send {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  color: #fff;
}
#chat-send:hover { box-shadow: 0 0 14px rgba(0,240,255,0.4); transform: scale(1.06); }
#chat-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.chat-detail-row {
  display: flex;
  justify-content: flex-start;
  padding-left: 8px;
  margin-top: -4px;
  margin-bottom: 2px;
}
.chat-detail-btn {
  background: none;
  border: 1px solid rgba(0,240,255,0.35);
  color: var(--accent-cyan);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.chat-detail-btn:hover {
  background: rgba(0,240,255,0.12);
  color: #fff;
}

@media (max-width: 420px) {
  #chat-panel { width: calc(100vw - 20px); }
  #chat-widget { right: 10px; bottom: 16px; }
}

/* ── GSTP Tools Section ─────────────────────────────── */
.gstp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1.8rem 0 0;
}

.gstp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.gstp-badge-desktop {
  background: rgba(138, 43, 226, 0.12);
  border: 1px solid rgba(138, 43, 226, 0.35);
  color: #c084fc;
}

.gstp-badge-free {
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  color: #4ade80;
}

.gstp-badge-tally {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--accent-blue);
}

.gstp-features {
  margin: 2.5rem 0 0;
}

/* ── Responsive: hide GSTP nav link and section on ≤1024px ── */
@media (max-width: 1024px) {
  #gstp-tools { display: none; }
  .footer-gstp-link { display: none; }
}

/* ── Products nav dropdown ─────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-chevron {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown-wrap:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  list-style: none;
  z-index: 200;
  background: rgba(15, 15, 25, 0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 6px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

/* invisible bridge fills the gap so hover doesn't break */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown-wrap:hover .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  border-radius: 8px;
}

.nav-dropdown li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}


/* ── Simple Contact Form ─────────────────────────────── */
.contact-simple-wrap {
  max-width: 520px;
  margin: 2.5rem auto 0;
}
.contact-simple-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.contact-simple-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
