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

:root {
  --primary-dark: #0a0e27;
  --primary-blue: #1a1f3a;
  --accent-green: #00ff88;
  --accent-cyan: #00d4ff;
  --text-light: #e0e7ff;
  --text-gray: #9ca3af;
  --card-bg: #151b33;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px;
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

/* Animated underline effect */
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Glow effect */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateX(-50%);
  opacity: 0;
}

.nav-links a:hover {
  color: var(--accent-green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
  width: 120%;
}

.nav-links a:hover::after {
  opacity: 1;
}

/* Active page indicator */
.nav-links a.active {
  color: var(--accent-green);
}

.nav-links a.active::before {
  width: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan), var(--accent-green));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.nav-links a.active::after {
  width: 100%;
  opacity: 0.7;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.nav-cta {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
    padding: 1.5rem 0;
    margin-bottom: 0;
    z-index: 1000;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .subheadline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.4);
}

.cta-button-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--accent-green);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--accent-green);
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.phone-mockup {
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #1a1f3a 0%, #0d1225 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-notch {
  width: 120px;
  height: 28px;
  background: #0a0e27;
  border-radius: 20px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #0a0e27;
  border-radius: 28px;
  height: calc(100% - 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: var(--card-bg);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.chat-name {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

.message {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.message.visible {
  opacity: 1;
  transform: translateY(0);
}

.message.incoming {
  background: var(--card-bg);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message.outgoing {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  color: var(--primary-dark);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.message p {
  margin: 0;
}

/* Stats Section */
.stats-section {
  padding: 3rem 0;
  background: var(--card-bg);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-left: 2px;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

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

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--primary-dark);
}

/* Pillar Groups */
.pillar-group {
  margin-bottom: 3.5rem;
}

.pillar-group:last-child {
  margin-bottom: 0;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}

.pillar-header > .material-icons {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-header h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.pillar-header p {
  font-size: 0.9rem;
  color: var(--accent-green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.15);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon .material-icons {
  font-size: 28px;
  color: var(--primary-dark);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.feature-card > p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Mini Chat Demo in Feature Cards */
.feature-demo {
  background: var(--primary-dark);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

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

.mini-msg {
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  max-width: 90%;
}

.mini-msg.out {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  color: var(--primary-dark);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.mini-msg.in {
  background: var(--card-bg);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* Feature List (for non-SMS features) */
.feature-demo:has(.feature-list) {
  background: transparent;
  border: none;
  padding: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light);
  font-size: 0.8rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.feature-list .material-icons {
  font-size: 14px;
  color: var(--accent-green);
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: var(--primary-blue);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  margin-top: 40px;
  opacity: 0.5;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.08);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent-cyan);
}

.step p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Demo Section */
.demo-section {
  padding: 5rem 0;
  background: var(--primary-dark);
}

.demo-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  border: 2px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

.demo-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--primary-blue);
}

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

.testimonial-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.15);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
}

.testimonial-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--text-light);
  font-size: 1rem;
}

.author-info span {
  color: var(--text-gray);
  font-size: 0.85rem;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-light);
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 0;
  background: var(--primary-dark);
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary-dark);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  color: var(--primary-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.15);
}

.contact-info-card h3 {
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.contact-details .material-icons {
  color: var(--accent-green);
  font-size: 20px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link .material-icons {
  font-size: 22px;
}

.social-link:hover {
  background: var(--accent-green);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Quick Facts */
.quick-facts {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.15);
}

.quick-facts h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.quick-facts ul {
  list-style: none;
  padding: 0;
}

.quick-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.quick-facts .material-icons {
  color: var(--accent-green);
  font-size: 18px;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--card-bg);
  border: 2px solid var(--accent-green);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
  z-index: 2000;
  text-align: center;
  max-width: 400px;
  opacity: 0;
  transition: all 0.3s ease;
}

.success-message.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.success-message .success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-message .material-icons {
  font-size: 40px;
  color: var(--primary-dark);
}

.success-message h3 {
  color: var(--accent-green);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.success-message p {
  color: var(--text-gray);
  line-height: 1.6;
}

.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-logo h3 {
  margin-bottom: 0;
}

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

.footer-section h3 {
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--accent-green);
}

.footer-section .material-icons {
  vertical-align: middle;
  font-size: 18px;
  color: var(--accent-green);
  margin-right: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

.company-name {
  color: var(--accent-green);
  font-weight: 600;
}

.trades-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-green);
  border-radius: 20px;
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}

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

/* Scroll animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for cards */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }
.feature-card:nth-child(7) { transition-delay: 0.6s; }

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Calendly Badge Styling */
.calendly-badge-widget,
.calendly-badge,
.calendly-badge * {
  z-index: 99999 !important;
}

.calendly-badge {
  background: var(--accent-green) !important;
  color: var(--primary-dark) !important;
  padding: 14px 22px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.15),
    0 0 20px rgba(0, 255, 136, 0.4) !important;
}

.calendly-badge:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2),
    0 0 30px rgba(0, 255, 136, 0.5) !important;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--accent-green);
}

.mobile-nav a.active {
  color: var(--accent-green);
  position: relative;
}

.mobile-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.mobile-nav .nav-cta {
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .hero-ctas {
    justify-content: center;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .step-connector {
    display: none;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .phone-mockup {
    width: 260px;
    height: 520px;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1rem;
  }

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

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

  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .calendly-badge {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .cta-button,
  .cta-button-secondary {
    width: 100%;
    text-align: center;
  }

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

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

/* Hero Outcomes Panel */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.outcomes-panel {
  background: linear-gradient(145deg, var(--card-bg) 0%, rgba(21, 27, 51, 0.8) 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 0;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 255, 136, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.outcomes-header {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  padding: 0.875rem 1.5rem;
}

.outcomes-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  transition: all 0.3s ease;
}

.outcome-item:last-child {
  border-bottom: none;
}

.outcome-item:hover {
  background: rgba(0, 255, 136, 0.03);
}

.outcome-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-icon .material-icons {
  font-size: 24px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outcome-content {
  flex: 1;
}

.outcome-metric {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.outcome-text {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Industries Section */
.industries-section {
  padding: 5rem 0;
  background: var(--primary-blue);
  position: relative;
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.industries-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.industry-item {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-item:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.industry-item:hover::before {
  opacity: 1;
}

.industry-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.industry-icon-wrap .material-icons {
  font-size: 32px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-info h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.industry-list li {
  font-size: 0.8rem;
  color: var(--text-gray);
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.industry-item:hover .industry-list li {
  border-color: rgba(0, 255, 136, 0.2);
}

.industries-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  position: relative;
  z-index: 1;
}

.industries-cta p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

/* Responsive: Outcomes & Industries */
@media (max-width: 1024px) {
  .outcomes-panel {
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .outcome-item {
    padding: 1rem 1.25rem;
  }

  .outcome-metric {
    font-size: 1.1rem;
  }

  .industry-item {
    padding: 1.5rem;
  }

  .industry-icon-wrap {
    width: 52px;
    height: 52px;
  }

  .industry-icon-wrap .material-icons {
    font-size: 26px;
  }
}
