/*
Theme Name: TrumpetBlast
Theme URI: https://trumpet-blast.com
Author: SanjSoft
Author URI: https://sanjsoft.io
Description: TrumpetBlast Mass Texting App - A modern, dark-themed WordPress theme with neon orange and electric blue accents.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trumpetblast
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --trumpet-orange: #FF6A00;
  --trumpet-orange-light: #FFA500;
  --signal-blue: #00AFFF;
  --signal-blue-light: #1E90FF;
  --deep-black: #0a0a0f;
  --dark-surface: #12121a;
  --dark-elevated: #1a1a25;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Typography */
.gradient-text-orange {
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 100%);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: var(--signal-blue);
  background: transparent;
  border: 2px solid var(--signal-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(0, 175, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 175, 255, 0.4);
  transform: scale(1.03);
}

/* Glass Card */
.glass-card {
  background: rgba(18, 18, 26, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

/* Section Padding */
.section-padding {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 8rem 0;
  }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  width: auto;
  height: 5rem;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-sub {
  font-size: 0.75rem;
  color: var(--signal-blue);
  display: block;
  margin-top: -0.25rem;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--trumpet-orange), var(--trumpet-orange-light));
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
}

.nav-login {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-login:hover {
  color: white;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: block;
  margin-top: 1rem;
}

.mobile-menu-inner {
  background: var(--dark-surface);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #0f1729 40%, #1a0f00 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 10rem);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.2);
  margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--trumpet-orange);
  animation: pulse 2s infinite;
}

.hero-eyebrow-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--trumpet-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-slogan {
  font-size: 1.125rem;
  color: var(--signal-blue);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .hero-slogan {
    font-size: 1.25rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 1.5rem;
  }
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-platforms {
    justify-content: flex-start;
  }
}

.hero-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-platform-icon {
  width: 1rem;
  height: 1rem;
}

.hero-platform-icon.orange {
  color: var(--trumpet-orange);
}

.hero-platform-icon.blue {
  color: var(--signal-blue);
}

.hero-platform-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-compliance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-compliance {
    justify-content: flex-start;
  }
}

.hero-compliance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.hero-compliance-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #3ebd6b;
}

/* Hero Phone */
.hero-phone-container {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-phone-container {
    justify-content: flex-end;
  }
}

.hero-phone-wrapper {
  position: relative;
}

.hero-phone-glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 106, 0, 0.2);
  filter: blur(60px);
  border-radius: 50%;
  transform: scale(0.75);
}

.hero-phone {
  position: relative;
  width: 100%;
  max-width: 28rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-notification {
  position: absolute;
  padding: 0.75rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.hero-notification.left {
  left: -2rem;
  top: 35%;
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid rgba(255, 106, 0, 0.3);
}

.hero-notification.right {
  right: -1rem;
  bottom: 33%;
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid rgba(0, 175, 255, 0.3);
  animation-delay: 1s;
}

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

.hero-notification-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-notification-icon.orange {
  background: rgba(255, 106, 0, 0.2);
}

.hero-notification-icon.blue {
  background: rgba(0, 175, 255, 0.2);
}

.hero-notification-content p:first-child {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-notification-content p:last-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

/* Trust Bar */
.trust-bar {
  padding: 3rem 0;
  background: var(--deep-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.marquee-container {
  position: relative;
  overflow: hidden;
}

.marquee-mask-left,
.marquee-mask-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-mask-left {
  left: 0;
  background: linear-gradient(to right, var(--deep-black), transparent);
}

.marquee-mask-right {
  right: 0;
  background: linear-gradient(to left, var(--deep-black), transparent);
}

.marquee {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.marquee-item:hover {
  background: rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.3);
}

.marquee-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.marquee-item:hover .marquee-item-icon {
  color: var(--trumpet-orange);
}

.marquee-item-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: color 0.3s ease;
}

.marquee-item:hover .marquee-item-text {
  color: white;
}

/* Features Section */
.features {
  background: var(--deep-black);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
}

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

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(255, 106, 0, 0.2);
}

.feature-card.highlight {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(0, 175, 255, 0.05) 100%);
  border-color: rgba(255, 106, 0, 0.2);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--trumpet-orange);
}

.feature-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  background: linear-gradient(180deg, var(--deep-black) 0%, #0f1118 50%, var(--deep-black) 100%);
  position: relative;
}

.how-it-works-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background: rgba(255, 106, 0, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.steps-container {
  position: relative;
}

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

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.step-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  animation: float 4s ease-in-out infinite;
}

.step-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-video-btn:hover {
  color: white;
  background: rgba(255, 106, 0, 0.2);
  border-color: rgba(255, 106, 0, 0.3);
}

.step-video-btn svg {
  width: 1rem;
  height: 1rem;
  transition: color 0.3s ease;
}

.step-video-btn:hover svg {
  color: var(--trumpet-orange);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 2.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Demo Section */
.demo {
  background: var(--deep-black);
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .demo-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-tab {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.demo-tab.active {
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.2) 0%, rgba(0, 175, 255, 0.1) 100%);
  border-color: rgba(255, 106, 0, 0.3);
}

.demo-tab-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.demo-tab-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-tab-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.demo-tab-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.demo-tab.active .demo-tab-title {
  color: var(--trumpet-orange);
}

.demo-tab-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.demo-phone-container {
  display: flex;
  justify-content: center;
}

.demo-phone-wrapper {
  position: relative;
  width: 100%;
  max-width: 22rem;
}

.demo-phone-frame {
  position: relative;
  background: #1a1a25;
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 1.75rem;
  background: #1a1a25;
  border-radius: 0 0 1rem 1rem;
  z-index: 10;
}

.demo-phone-screen {
  background: #0a0a0f;
  border-radius: 2.5rem;
  overflow: hidden;
  min-height: 31rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-phone-header {
  padding: 1rem;
  padding-top: 2rem;
  color: white;
}

.demo-phone-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-phone-title {
  font-weight: 600;
}

.demo-phone-recipients {
  font-size: 0.875rem;
  opacity: 0.8;
}

.demo-phone-content {
  padding: 1rem;
}

.demo-message-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.demo-message-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.demo-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.demo-stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.demo-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--trumpet-orange);
}

.demo-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: capitalize;
}

.demo-messages-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-message-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
}

.demo-message-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trumpet-orange), var(--trumpet-orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.demo-message-content {
  flex: 1;
  min-width: 0;
}

.demo-message-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.demo-message-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
}

.demo-message-unread {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--trumpet-orange);
}

.demo-message-preview {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-message-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.demo-charts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-chart-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.demo-chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.demo-chart-label {
  color: rgba(255, 255, 255, 0.7);
}

.demo-chart-value {
  font-weight: 700;
  color: white;
}

.demo-chart-bar {
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.demo-chart-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1s ease;
}

.demo-phone-glow-orange,
.demo-phone-glow-blue {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.demo-phone-glow-orange {
  right: -2rem;
  bottom: -2rem;
  background: rgba(255, 106, 0, 0.2);
}

.demo-phone-glow-blue {
  left: -2rem;
  top: -2rem;
  background: rgba(0, 175, 255, 0.2);
}

/* Demo Image Display */
.demo-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.demo-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.3) 0%, rgba(0, 175, 255, 0.3) 100%);
  border-radius: 2.5rem;
  filter: blur(30px);
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.demo-image-wrapper:hover .demo-image-glow {
  opacity: 1;
}

.demo-image-frame {
  position: relative;
  background: #1a1a25;
  border-radius: 2rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  aspect-ratio: 9/16;
}

.demo-image {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  object-fit: cover;
  border-radius: 1.5rem;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.demo-image.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--deep-black) 0%, #0f1118 100%);
}

.testimonials-carousel {
  position: relative;
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonials-nav:hover {
  background: rgba(255, 106, 0, 0.2);
  border-color: rgba(255, 106, 0, 0.3);
}

.testimonials-nav svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.testimonials-nav.prev {
  left: -1rem;
}

.testimonials-nav.next {
  right: -1rem;
}

@media (max-width: 1023px) {
  .testimonials-nav {
    display: none;
  }
}

.testimonials-container {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(18, 18, 26, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.testimonial-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(255, 106, 0, 0.2);
}

.testimonial-quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 106, 0, 0.3);
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--trumpet-orange);
  color: var(--trumpet-orange);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 106, 0, 0.3);
}

.testimonial-name {
  font-weight: 600;
  color: white;
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonials-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.testimonials-dot.active {
  width: 2rem;
  background: linear-gradient(90deg, var(--trumpet-orange), var(--trumpet-orange-light));
}

/* Pricing */
.pricing {
  background: var(--deep-black);
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-toggle-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle-btn.active {
  color: white;
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 100%);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.pricing-toggle-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  background: #3ebd6b;
  color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.pricing-card:not(.popular) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:not(.popular):hover {
  border-color: rgba(255, 106, 0, 0.2);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.2) 0%, rgba(0, 175, 255, 0.1) 100%);
  border: 1px solid rgba(255, 106, 0, 0.3);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--trumpet-orange), var(--trumpet-orange-light));
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.pricing-period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-credits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-credits svg {
  width: 1rem;
  height: 1rem;
  color: var(--trumpet-orange);
}

.pricing-credits-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-billing {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

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

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.pricing-feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-feature-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--trumpet-orange);
}

.pricing-feature-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cta {
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  padding: 0.75rem 1.5rem;     /* adjust if needed */
  line-height: 1;
  font-size: 1rem;
}

.pricing-cta:hover,
.pricing-cta:focus {
  text-decoration: none;
}

.pricing-card.popular .pricing-cta {
  background: white;
  color: var(--trumpet-orange);
}

.pricing-card.popular .pricing-cta:hover {
  background: #f5f5f5;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.pricing-card:not(.popular) .pricing-cta {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:not(.popular) .pricing-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2rem;
}

/* FAQ */
.faq {
  background: linear-gradient(180deg, #0f1118 0%, var(--deep-black) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.faq-header {
  position: sticky;
  top: 8rem;
}

.faq-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--trumpet-orange), var(--trumpet-orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.faq-icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.faq-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .faq-title {
    font-size: 2.5rem;
  }
}

.faq-description {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-weight: 600;
  color: white;
  padding-right: 1rem;
}

.faq-question-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--trumpet-orange);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question-icon {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  padding: 0 1.25rem 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 25%, var(--signal-blue) 75%, var(--signal-blue-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.cta-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.cta-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--trumpet-orange);
  background: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-primary:hover {
  background: #f5f5f5;
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: white;
  background: transparent;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  background: var(--deep-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-sub {
  font-size: 0.75rem;
  color: var(--signal-blue);
  display: block;
  margin-top: -0.25rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
}

.footer-contact-item svg.orange {
  color: var(--trumpet-orange);
}

.footer-contact-item svg.blue {
  color: var(--signal-blue);
}

.footer-newsletter-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-input:focus {
  border-color: var(--trumpet-orange);
}

.footer-newsletter-btn {
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--trumpet-orange) 0%, var(--trumpet-orange-light) 100%);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.footer-newsletter-btn svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.footer-newsletter-success {
  font-size: 0.75rem;
  color: #3ebd6b;
  margin-top: 0.5rem;
}

.footer-column-title {
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

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

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-link svg {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: all 0.3s ease;
}

.footer-link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(255, 106, 0, 0.2);
  border-color: rgba(255, 106, 0, 0.3);
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 64rem;
  aspect-ratio: 16/9;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.video-modal-close:hover {
  color: white;
}

.video-modal-close svg {
  width: 2rem;
  height: 2rem;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: none;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

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

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
  background: var(--trumpet-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--trumpet-orange-light);
}

/* Selection */
::selection {
  background: var(--trumpet-orange);
  color: white;
}
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
/* ========================================
   DEMO TAB CARDS (GRID LAYOUT)
   ======================================== */

.demo-tabs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .demo-tabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .demo-tabs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.demo-tab-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.demo-tab-card:hover {
  transform: translateY(-0.5rem);
  background: rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.15);
}

.demo-tab-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--trumpet-orange), var(--trumpet-orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.demo-tab-card:hover .demo-tab-card-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
}

.demo-tab-card-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.demo-tab-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.demo-tab-card-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.demo-tab-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--trumpet-orange), var(--trumpet-orange-light));
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-tab-card:hover .demo-tab-card-btn {
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}

/* ========================================
   IMAGE MODAL POPUP
   ======================================== */

.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.image-modal.active {
  display: flex !important;
}

.image-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 1;
}

.image-modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.image-modal-close:hover {
  background: rgba(255, 106, 0, 0.3);
  border-color: rgba(255, 106, 0, 0.5);
  transform: scale(1.1);
}

.image-modal-close svg {
  width: 24px;
  height: 24px;
}

.image-modal-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: modalImageIn 0.3s ease;
}

@keyframes modalImageIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}