/* ============================================
   BRANIUMX - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --primary: #1E3A5F;
  --primary-dark: #152a45;
  --secondary: #00D4FF;
  --accent: #10B981;
  --accent-hover: #059669;
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --gray: #64748B;
  --dark-gray: #334155;
  --text: #1E293B;
  --text-light: #64748B;
  --border: #E2E8F0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1E3A5F 0%, #2D4A6F 100%);
  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
  --gradient-accent: linear-gradient(135deg, #00D4FF 0%, #10B981 100%);
  
  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

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

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

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.container-lg {
  max-width: 1400px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: #00b8e0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--light-gray);
  border-color: var(--gray);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

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

.navbar.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Logo Styling */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 800;
}

.navbar-logo-img {
  height: 90%;           /* Adjust as needed */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.navbar-logo:hover .navbar-logo-img {
  transform: scale(1.04);
  transition: transform 0.25s ease;
}

/* Optional: hide text on small screens if logo is prominent */
@media (max-width: 480px) {
  .navbar-logo-text {
    display: none;
  }
  .navbar-logo-img {
    height: 78%;
    max-width: 160px;
  }
}

/* Keep original text visible as fallback if image fails to load */
.navbar-logo-text {
  color: var(--primary-dark);
}

.navbar-logo-text span {
  color: var(--secondary);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.navbar-link:hover {
  color: var(--primary);
}

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

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--secondary);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title .highlight {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-phone {
  position: relative;
  width: 280px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.hero-phone-screen {
  background: var(--light-gray);
  border-radius: 32px;
  padding: 20px;
  min-height: 500px;
}

.hero-phone-notch {
  width: 120px;
  height: 28px;
  background: var(--white);
  border-radius: 20px;
  margin: 0 auto 20px;
}

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

.hero-phone-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-avatar i {
  font-size: 2rem;
  color: var(--white);
}

.hero-phone-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-phone-status {
  font-size: 0.875rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-phone-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-phone-wave {
  margin: 30px 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hero-phone-wave span {
  width: 4px;
  height: 20px;
  background: var(--secondary);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.hero-phone-wave span:nth-child(2) { animation-delay: 0.1s; }
.hero-phone-wave span:nth-child(3) { animation-delay: 0.2s; }
.hero-phone-wave span:nth-child(4) { animation-delay: 0.3s; }
.hero-phone-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { height: 20px; }
  50% { height: 50px; }
}

.hero-phone-message {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  text-align: left;
  box-shadow: 0 4px 12px var(--shadow);
}

.hero-phone-message p {
  font-size: 0.875rem;
  color: var(--text);
  margin: 0;
}

.hero-floating {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.hero-floating-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1s;
}

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

.hero-floating-icon {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.hero-floating-text {
  font-size: 0.875rem;
}

.hero-floating-text strong {
  display: block;
  color: var(--text);
}

.hero-floating-text span {
  color: var(--text-light);
  font-size: 0.75rem;
}

/* ---------- Section Styles ---------- */
.section {
  padding: var(--section-padding);
}

.section-gray {
  background: var(--light-gray);
}

.section-dark {
  background: var(--gradient-hero);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* ---------- Problem Section ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow);
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: #FEE2E2;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-icon i {
  font-size: 1.5rem;
  color: #DC2626;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-light);
  margin: 0;
}

.problem-stat {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: #DC2626;
  margin-bottom: 8px;
}

/* ---------- Solution Section ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-content h2 {
  margin-bottom: 24px;
}

.solution-content > p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.solution-features {
  display: grid;
  gap: 20px;
}

.solution-feature {
  display: flex;
  gap: 16px;
}

.solution-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-feature-icon i {
  font-size: 1.25rem;
  color: var(--secondary);
}

.solution-feature-text h4 {
  margin-bottom: 4px;
}

.solution-feature-text p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9375rem;
}

.solution-image {
  position: relative;
}

.solution-image-main {
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px var(--shadow-lg);
}

.solution-image-float {
  position: absolute;
  bottom: -120px;
  left: -30px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px var(--shadow-lg);
  max-width: 280px;
}

.solution-image-float-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.solution-image-float-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.solution-image-float h4 {
  font-size: 1rem;
  margin: 0;
}

.solution-image-float p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Industries Section ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow);
  border-color: var(--secondary);
}

.industry-icon {
  width: 64px;
  height: 64px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  background: rgba(0, 212, 255, 0.1);
}

.industry-icon i {
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.industry-card:hover .industry-icon i {
  color: var(--secondary);
}

.industry-card h4 {
  font-size: 1rem;
  margin: 0;
}

/* ---------- How It Works Section ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-light);
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--secondary);
  position: relative;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-description {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.pricing-feature i {
  color: var(--accent);
  font-size: 1.125rem;
  margin-top: 2px;
}

.pricing-feature span {
  font-size: 0.9375rem;
  color: var(--text);
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
}

/* ---------- Testimonials Section ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #FBBF24;
  font-size: 1.125rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- FAQ Section ---------- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

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

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 1.25rem;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

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

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 32px;
}

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

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ---------- Form Styles ---------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

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

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

.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px var(--shadow);
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.form-trust-item i {
  color: var(--accent);
}

/* ---------- Demo Page Specific ---------- */
.demo-hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-content {
  color: var(--white);
}

.demo-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.demo-content > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.demo-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.demo-benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-benefit-icon i {
  font-size: 1.25rem;
  color: var(--secondary);
}

.demo-benefit h4 {
  color: var(--white);
  margin-bottom: 4px;
}

.demo-benefit p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin: 0;
}

/* ---------- Thank You Page ---------- */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  padding: 120px 24px;
}

.thankyou-card {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 600px;
  box-shadow: 0 20px 40px var(--shadow);
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-icon i {
  font-size: 3rem;
  color: var(--white);
}

.thankyou-card h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.thankyou-card > p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.thankyou-steps {
  text-align: left;
  background: var(--light-gray);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.thankyou-steps h3 {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.thankyou-step {
  display: flex;
  gap: 16px;
  padding: 12px 0;
}

.thankyou-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.thankyou-step-number {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.thankyou-step p {
  margin: 0;
  padding-top: 4px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h1 {
  margin-bottom: 24px;
}

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

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  gap: 20px;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.contact-method h4 {
  margin-bottom: 4px;
}

.contact-method p {
  color: var(--text-light);
  margin: 0;
}

.contact-method a {
  color: var(--secondary);
  font-weight: 500;
}

/* ---------- About Page ---------- */
.about-hero {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  text-align: center;
  color: var(--white);
}

.about-hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.about-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  padding: 100px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-content h2 {
  margin-bottom: 24px;
}

.about-story-content p {
  color: var(--text-light);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about-values {
  background: var(--light-gray);
  padding: 100px 0;
}

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

.value-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-light);
  margin: 0;
}

/* ---------- Legal Pages ---------- */
.legal-page {
  padding: 160px 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-content .last-updated {
  color: var(--text-light);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}

.legal-content li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ---------- Industry Pages ---------- */
.industry-hero {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
}

.industry-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.industry-hero-content {
  color: var(--white);
}

.industry-hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.industry-hero-content > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

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

.industry-hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.industry-problems {
  padding: 100px 0;
}

.industry-problems h2 {
  text-align: center;
  margin-bottom: 48px;
}

.industry-problems-list {
  max-width: 700px;
  margin: 0 auto;
}

.industry-problem-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.industry-problem-item i {
  color: #DC2626;
  font-size: 1.5rem;
  margin-top: 4px;
}

.industry-problem-item h4 {
  margin-bottom: 8px;
}

.industry-problem-item p {
  color: var(--text-light);
  margin: 0;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
  .hero-container,
  .solution-grid,
  .demo-grid,
  .contact-grid,
  .about-story-grid,
  .industry-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-floating {
    display: none;
  }
  
  .problems-grid,
  .steps-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid::before {
    display: none;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .demo-grid {
    gap: 40px;
  }
  
  .form-card {
    padding: 24px;
  }
  
  .thankyou-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-phone {
    width: 240px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-lg {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.hidden { display: none; }
.visible { display: block; }

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 30px;
}

.lang-link {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lang-link:hover {
  opacity: 1;
}

.lang-link.current {
  opacity: 1;
  pointer-events: none;
  transform: scale(1.15);
}

.flag-icon {
  width: 28px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}